Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
43 views

With the upgrade of Keycloak from version 25.0.0 to 26.0.0 (26.4.2), the login theme doesn't work and produces the following error: FTL stack trace ("~" means nesting-related): Failed at: #...
McSim's user avatar
  • 1
-2 votes
1 answer
137 views

I've just learnt Dijkstra's in school but i wanted to try and code it. I'm having a problem with an iterator and changing a specific point in a vector, but most likely my implementation is wrong. The ...
Luke's user avatar
  • 41
1 vote
1 answer
87 views

I need this working query as a stored procedure where I can give two databases (one masterdb one testdb), start chainage, end chainage and UniqueRun as input DECLARE @StartChainage FLOAT = 17.00; ...
anonymous123's user avatar
1 vote
0 answers
181 views

I'm encountering a Spring Boot startup failure during Maven build tests in my recommendation microservice. The error indicates an invalid mapping pattern /recommendation}, but I've verified all my ...
Rahman Karimli's user avatar
5 votes
1 answer
2k views

How do I write something like this? At the moment using a colon seems to break everything. Is there an equivalent? run-name: Something Running ${{ (inputs.cache-retain == 'true') ? '(with forced ...
dankoiDev's user avatar
  • 183
-2 votes
1 answer
640 views

i used claude to help me developeda trading strategy in Pine Script version 5, but I'm encountering two critical errors that are preventing it from working correctly. 'Could not find function or ...
Stanley Lu's user avatar
0 votes
0 answers
111 views

const BN = window.BN || solanaWeb3.BN; if (typeof window !== "undefined" && typeof window.Buffer === "undefined") { window.Buffer = { from: (data) => new ...
goog gagga's user avatar
1 vote
2 answers
65 views

I've started working on a project with Flutter and Dart. The app should display a spectrometer based on the signal received by the microphone. I used flutter_fft to handle the signals and syncfusion ...
KF_2677's user avatar
  • 21
0 votes
0 answers
158 views

I have this new calculator (HP Prime Pro G2) and I am trying to program some script, but I am having some trouble with it. I have two problems: I am trying to define some LOCAL variables. However, ...
user22603186's user avatar
0 votes
0 answers
292 views

I am trying to develop an Expert Advisor (EA) for MetaTrader 5 using MQL5, but I keep encountering the error '(<) - open parenthesis expected' for the following: if (Bars < 3) Here is a snippet ...
user24479233's user avatar
1 vote
2 answers
59 views

I have set a variable x="hii!!" in another file called ImporterFile.py. I thought pre-defining the variable x and then re-importing it would work, but it didn't. from ImporterFile import x ...
rhhen122's user avatar
3 votes
2 answers
62 views

PostgreSQL syntax error when using CONCAT in user defined function. Using DbVisualizer as SQL client. CREATE FUNCTION t() RETURNS TEXT AS ' SELECT CONCAT('some', '_text') ; ' LANGUAGE plpgsql; [Code:...
ziu fas's user avatar
  • 31
0 votes
1 answer
58 views

Using the following data: Distance <- data.frame( DAY = c("1", "2","3") ,TEMP = c(25, 27, 26.5) ,C1Dist01 = c(1, 1, 1) ,C2Dist01 = c(1, 1, 0) ,C3Dist01 =...
shrimp's user avatar
  • 101
-1 votes
1 answer
86 views

I'm working on a simple Pascal-like interpreter using PLY, but I'm encountering a Syntax error at ',' during parsing. The issue arises when trying to parse a source file that includes commas. Below is ...
Juju's user avatar
  • 1
0 votes
0 answers
37 views

During my linting test in Github Actions I've met an issue that looks like this: Config loaded: /action/lib/.automation/.htmlhintrc /github/workspace/consoleLogQuiz.html L45 | <...
No Tools No Craft's user avatar
0 votes
0 answers
21 views

I'm using Spyder IDE 5.51, Python 3.12.4 64-bit. I have installed virtualenv 20.28.0 on my Windows computer. I tried to create a virtual environment using the following code on Sypder Console by ...
tkj80's user avatar
  • 211
0 votes
0 answers
94 views

I have the following query which is returning an error: My code: SELECT LOCATION, DEPARTMENT, MANAGER, SUPERVISOR, ASSOCIATE, FISCAL_DATE, AUX_NAME, ACTUAL, ...
Esty's user avatar
  • 1
0 votes
0 answers
56 views

I'm trying to do my homework on object-oriented programming but I get a weird error. tried restarting VSCode or changing names. Objective: To develop an employee management system that demonstrates ...
user28576550's user avatar
-1 votes
1 answer
81 views

I am learning AMPL for a university project and i don't understand why i'm getting a syntax error, my code: model: set FOODS; param calories; param proteins; param calcium; param vitaminA; param cost; ...
Badro Dono's user avatar
1 vote
1 answer
79 views

I am not able to find the exact reason for the error here. Can anyone help me? `include "uvm_macros.svh" import uvm_pkg::*; class my_driver extends uvm_driver; `uvm_component_utils(...
Harsha Vardhan Kaki's user avatar
-1 votes
1 answer
115 views

sql = "Update tblUserAccount set username = '" & txtUsername.Text & "', password = '" & txtPassword.Text & "', AccessLevel = '" & cmbAccessLevel.Text &...
Fritz Baider's user avatar
-1 votes
1 answer
55 views

I'm working on an optimization problem using IBM's OPL (Optimization Programming Language). I have defined a set called ExtGraphNodes in my model file, but when I try to use it in my data file, I ...
abolfazl AKHONDZADE's user avatar
0 votes
1 answer
2k views

HFValidationError: Repo id must be in the form 'repo_name' or 'namespace/repo_name': 'meta-llama/llama3.1/8b-instruct-fp16'. Use repo_type argument if needed. tokenizer = AutoTokenizer....
James Brittain's user avatar
0 votes
1 answer
66 views

I'm having trouble with these lines of code: class MainActivity : ComponentActivity() { var item = "None" var price: Double = 16.99 var Quantity: Int = 2 println(Calculate(...
fahim's user avatar
  • 39
0 votes
0 answers
129 views

I keep getting the error in the title with the line extern int inp_arr[SIZE];. This is the full header file, queue.h #ifndef SIZE #define SIZE 4 #endif #ifndef QUEUE_H #define QUEUE_H extern ...
nathan-blackburn's user avatar

1
2 3 4 5
191