Newest Questions
24,180,238 questions
0
votes
0
answers
20
views
made some unintended released on gitlab to the pypi registry and deleted them, now I can't upload a new release
I made some released last week on our private gitlab instance, and deleted them afterwards. now I can't release the next minor version because it says the name is already taken (400 error). how do I ...
0
votes
0
answers
8
views
Where is the error "SessionNotFound: invalid_request" generated?
I am bringing up my oidc server slowly working through issues. Right now, I am trying to get my interactions to work, and I am seeing the following error:
SessionNotFound: invalid_request
at ...
0
votes
0
answers
14
views
VNC Viewer cannot connect to Raspberry Pi 5 running Debian "Trixie" with WayVNC
I am trying to connect VNC Viewer on my PC to my Raspberry Pi 5 running Debian "Trixie".
Here is my situation so far:
VNC mode is enabled on the Pi via raspi-config.
I can access the Pi ...
0
votes
0
answers
10
views
Android. StateFlow which get data from Room database Dao, injected into viewmodel, is not updated ater dao.insertAll()
In my Android Jetpack Compose project with Room database the ViewModel is hilt-injected Dao and has property of type StateFlow, whose value is the result of calling dao.getAll(). I tried to ...
-1
votes
0
answers
22
views
Mockito.verify not behaving properly when using a capture
I recently upgraded to jdk21 and a test started failing on this line:
verify(this.myService, times(2)).myMethod(myCaptor.capture());
The issue seems to be the use of a capture. If I remove it (...
Advice
1
vote
2
replies
10
views
Getting an ID based on earliest occurrence in a broken sequence
require(data.table)
dat <- data.table(id = c(1,2,3,4,5,6,7,8),letter=c('a','a','b','a','b','a','b','b'))
Hello, I am trying to assign a new field of ids to my data table based on a staggered ...
0
votes
0
answers
16
views
How to mock setTimeOut in a Jest unit test?
In my application I need to ensure that an array of Promises will be executed in the order as given in the array. Addtionally, the application shall "wait" a certain time after each Promise ...
-1
votes
0
answers
9
views
IpP Initiated SAML SSO to Cognito with Dynamic Content
We have an application we want to initiate a IdP SAML SSO session to Cognito and include in the payload dynamic content that can be passed onto the SP. Ideally, we could send a dynamic redirect_uri ...
-1
votes
0
answers
12
views
How to get WSDL files for SilverLake
How do I get the WSDL files for the SilverLake methods I am needing to call? My goal is to create a python SDK of sorts and use that in my application. Unless you already know of one.
Docs: https://...
0
votes
0
answers
6
views
How to read data between xml file tags in datastage using sequential stage
I have a multi schema xml file from which i have to read data from only one schema, i tried using hierarchical stage which didn't work, so i am trying to read xml file using sequential stage and in ...
1
vote
0
answers
10
views
SAS prxmatch how to deal with searching for a " within the middle of the expression?
%if %sysfunc(prxmatch(/^\("([A-Za-z])"\)$/, %str(&names))) = 0 and %upcase(&stringC) = N %then %do;
%put ERROR: Please format as such ("obesity","diabetes&...
0
votes
0
answers
20
views
Using Local LLM with LM studio to build agents
I'm using phi-3-mini-4k-instruct model from LM studio and start http server in my machine. Then I've a agents script that use that model. But the problem is the when I run my agents script instead of ...
-1
votes
0
answers
6
views
Azure Data Factory + Synapse Serverless SQL Pool — Which Linked Service to Use for Dataset creation?
I’m working on a project where Azure Data Factory (ADF) is used to create datasets for tables in Azure Synapse Analytics using the serverless (built-in) SQL pool.In some tutorials, a Synapse linked ...
-1
votes
0
answers
17
views
Preferred TypeScript type for TypeORM Entity with a Postgres timestamptz field
Question
What are the consequences of using string for a timestamptz column instead of the recommended Date typing?
Context
We are using TypeScript + Nest.js + TypeORM + PostgreSQL and want to be ...
-1
votes
0
answers
23
views
I don't understand Swift closures and scoping rules
I'm trying to develop a "simple" program to remind me to get up and walk around at least once an hour. I'm linking it to the Screen Lock, because either I Lock the screen when I get up, or ...