Newest Questions
24,179,966 questions
0
votes
0
answers
3
views
nested classes with json_serializable: The method 'fromJson' isn't defined for the type 'type'
Flutter on windows latest version.
Create the following nested classes:
import 'package:json_annotation/json_annotation.dart';
part 'test.g.dart';
@JsonSerializable(explicitToJson: true)
class Test {
...
0
votes
0
answers
13
views
Path.GetFullPath() is returning input with \r
Why does Path.GetInvalidPathChars() not detect \r, but Path.GetFullPath() does? (.NET Framework 4.7.2)
I’m working with a .NET Framework 4.7.2 application and validating file paths.
I noticed ...
0
votes
0
answers
5
views
How to place push pins when creating an Issue with Autodesk Issues API
Im using Autodesk Issues API to create new issues in ACC, specifically POST endpoint.
Problem
I cannot place a push pin in the 3d model that will represent the issue.
In the documentation I don't see ...
0
votes
0
answers
6
views
What to set the "Who can trigger the flow?" as when sending Snowflake webhook notifications to teams channel?
I've setup a Snowflake webhook notification to send a message to a teams channel workflow. When editing the workflow there is an option to select "Who can trigger the flow?" (see below) and ...
0
votes
0
answers
7
views
nonisolated Execution Differences Before and After Xcode 26.2
I have an older project that was created before Xcode 26.2.
In Xcode versions prior to 26.2, there was no Swift Compiler – Concurrency build setting.
With those older versions, the following behavior ...
-1
votes
0
answers
25
views
How does an online compiler work under the hood? [closed]
I have used Python for a very long time and one thing I always liked about it that I can write the Python code in cmd and run it there. But same is not possible with compiled languages.
On the other ...
Advice
0
votes
0
replies
5
views
How would I add a catalog to a SQL Server in SSMS
I have seen a number of articles on this but none seem to answer the question.
How would I add a catalog to a linked server in SSMS?
0
votes
0
answers
18
views
What are the most similar GCC compiler option(s) to mimic MSVC /W4?
I'm thinking of switching the MSVC builds (default setting /W1) to use the recommended /W4 to catch hard-to-find code defects. But, what are the most similar GCC options that mimic the /W4 warnings? ...
0
votes
1
answer
17
views
How to update all pip packages that were installed in editable mode to latest main branch?
I have a few dependencies for my python project that I installed in editable mode:
pip install -e ~/libs/some-pkg/
That way I can easily make changes and test out branches. For example, if my project ...
Best practices
0
votes
0
replies
3
views
Can a transactional consistency boundary in DDD change depending on the method?
For example, there is:
Group
– questions: Question[]
And there is also a standalone Question that is not associated with a Group.
Group has a method group.addQuestion(...), which is used when ...
0
votes
0
answers
10
views
Yocto fails to expand FILESPATH
I have a base recipe with the following lines:
SRC_URI += " \
git://[email protected]/someUrl \
file://someLocalFile;subdir=files \
"
When I try to build the project, it stops during ...
0
votes
0
answers
9
views
image_readf with and without a sampler - what's the behavior for subnormals?
The OpenCL spec defines several image_read functions - with a suffix for the element data type; with variants for 2D and 3D images; and variants taking a sampler, or not taking one.
The spec says that ...
0
votes
0
answers
12
views
External: Unknown exception code 8 when clicking TImage after loading BLOB
I’m getting a runtime crash in a Lazarus (Free Pascal) application when clicking a TImage that saves/loads an image BLOB from a database.
Project Album raised exception class External: Unknown ...
0
votes
0
answers
15
views
Azure API Management delegation signature fails for ChangeProfile operation
I am using Azure API Management with delegation, and I can successfully validate the signature for all operations except ChangeProfile.
I am following this documentation:
https://learn.microsoft.com/...
-1
votes
0
answers
13
views
snakemake : RuntimeError: can't start new thread
I'm using a snakemake workflow that :
1 download studies from a database. One study contains data of multiple individuals.
2 split each studies to get one file per individuals.
3 filter each ...