1,746 questions
Best practices
0
votes
1
replies
46
views
Terraform Plugin Framework: Can terraform-plugin-docs automatically include defaults, ForceNew, or sensitive?
I’m developing a Terraform provider using the Terraform Plugin Framework and generating docs with terraform-plugin-docs.
The documents generate correctly, but I’m trying to avoid manually duplicating ...
Score of 3
0 answers
110 views
Using OpenSSL provider to delegate TLS_PSK_WITH_NULL_SHA256 key operations to TZ or TPM
I am developing software that uses OpenSSL for implementing a TLS client. I am developing it in the C++ language, to run in Linux for ARM 64-bit.
I intend to use the cipher TLS_PSK_WITH_NULL_SHA256.
...
Score of -1
1 answer
81 views
Why does adding a provider crash android app? [duplicate]
Here is the problem in its minimal version. I have an android app that does nothing except print the sdk version in its onCreate method. I am using the AndroidManifest
<?xml version="1.0" ...
Score of 0
0 answers
68 views
In flutter, how to do a partial refresh list?
for example: I have a list, when I modify an item in the list, only the modified item is rebuilt, when I append an item, the list rebuilds the newly added item, not all items in the entire list are ...
Score of 0
0 answers
69 views
Is there a solution to not being able to call provider method with notifyListeners within builder?
In Flutter’s provider package, using Consumer widget, within its builder when we call any provider method which makes a call to notifyListeners() we get an exception because we can't request a rebuild ...
Score of 0
0 answers
38 views
RuntimeException: Can't create handler inside thread when using Messenger-based Service in ContentProvider
I'm developing an Android app that uses a background Service with Messenger for inter-process communication. This service performs a background test on the device. I packaged it as an .aar and use it ...
Score of 0
1 answer
50 views
How to fixing The "--provider" option does not exist. nwidart provider
php artisan vendor:publish --provider="Nwidart\Modules\LaravelModulesServiceProvider"
The "--provider" option does not exist.
Score of 2
1 answer
139 views
flutter_bloc persistent errors
I have been working on an a Flutter app using Flutter_bloc, testing it multiple times per day no problem,
tonight and after performing 'flutter pub upgrade' I got this errors; no matter what I do, the ...
Score of 0
1 answer
54 views
Provider notifyListeners() is not update Consumers
I am using Provider in my application. I have designed a simple question-answering mechanism. My code suddenly stopped working even though I didn’t change anything. Could it be that I have reached the ...
Score of 1
0 answers
109 views
flutter callback function gives empty list despite passing non empty list in custom widget
In the following codes, I have presented a minimal code (however I could not reproduce the issue in the minimal code). The MyCustomInputWidget provides two callback functions: one for the retrieval of ...
Score of -1
1 answer
61 views
options.providers is not iterable
I have recently started working on my next project and am adding google authentication but receiving error at GET /api/auth/providers .
api/auth/[...nextauth]/route.js
import NextAuth from "next-...
Score of 0
0 answers
60 views
Widget with different appearances but same memory
In Flutter/Dart I would like to create a stateful widget that has two different layouts.
That means that the widget can save the current state (e.g. the variables) but that
different return functions ...
Score of 0
1 answer
60 views
Flutter ListView not updating despite data list has been updated unless I scrolled all the way to the end
I'm trying to implement this posts-filter functions using Provider in Flutter, the posts has title, timestamp, pfp, and number of likes/comments, my problem is let's say if the user sorted to Oldest ...
Score of 0
2 answers
62 views
Widget is not refreshed when provider value changes
I have a users Firestore collection where the ids are my users uid.
When a user logs in (with Firebase auth), i'd like to wrap the whole application by the corresponding firestore document.
My code is ...
Score of 1
1 answer
69 views
PactVerificationContext is in unnamed module of loader 'app' - Pact Contract in Quarkus Application
I have a Quarkus application with gradle. I am able to generate the contract but getting the below code while running the verification test.
class au.com.dius.pact.provider.junit5....