B Search Erros

Latest news erros

Last 20
Newest questions tagged android - Stack Overflow

Robolectric on Windows does not run

When trying to run a robolectric test on a Windows machine, I get the following issue: ava.lang.AssertionError: Unable to load Robolectric native runtime library at org.robolectric.nativeruntime.DefaultNativeRuntimeL

Newest questions tagged c++ - Stack Overflow

Output file after consteval and reflection

I know that I can get the preprocessed file. I also know that I can get the assembly file. Is there a way to get an intermediate file that is after consteval, reflection, and the like have been processed? It would be n

Newest questions tagged c# - Stack Overflow

Struggling to understand the foundations of programming

After much research, im still confused as to actual foundation of oop programming. Tutorials teach me how to program, how to do things, but when i create a blank project, im extremely lost on how to actually build withou

Newest questions tagged php - Stack Overflow

ajax array insert into database without page reload [closed]

I'm trying to insert product_name, product_quantity and price into a database via ajax and php. This is my code so far. It does work with product name but I can't get it working including product price and quantity for e

Newest questions tagged swift - Stack Overflow

SwiftUI: Handling Heterogenous Data that resolves to an View

In my project (an Package), I have created an Manager (can be classified as an ViewModel) that will handle state updates throughout the Package Component view: Note: The code is simplified for better understanding and to

Newest questions tagged c++ - Stack Overflow

Is it possible to make a string array using malloc/calloc?

I have this assignment that requires me to make dynamic arrays. The thing is that one of those arrays needs to be an array of structs, and the struct that it needs has strings. Also, I cannot use new or delete, meaning I

Newest questions tagged java - Stack Overflow

Database query counting method for Spring Boot Unit Tests

How to implement a database requests counting method in a Spring Boot application and implement it in unit tests. I saw the assertSelectCount method in the examples on Baeldung, but I don't know how to configure it. With

Newest questions tagged c++ - Stack Overflow

How do formatters for custom types work in C++ [closed]

I'm trying to learn how to write custom formatters for user defined types in C++ with the format library. Unfortunately, I can't find a good reference for how they work. The best that I could find was a link to cpprefere

Newest questions tagged java - Stack Overflow

Red line showing under basics why? [closed]

package basics; public class FirstProgram { public static void main(String [] args) { System.out.println ("Hello Java"); } } Cursor shows a red line under basics in package basics;.