Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
83 views

I am unable to understand below points about unbounded type parameters. Type parameters that have no constraints, such as T in public class SampleClass{}, are called unbounded type parameters. ...
YaSecu's user avatar
  • 95
0 votes
1 answer
250 views

I am trying to get data from another sheet using the content of a cell where I have the formula but I need to avoid blank or 0s in that cell. Here is my formula: =query(dataset!$D$3:$T$5004 , "...
marianovelamazan's user avatar
2 votes
1 answer
113 views

I have such an example code: static void Main() { dynamic dynamicObject = null; object simpleObject = dynamicObject + new AnyClass(); Console.WriteLine(simpleObject); } class AnyClass { ...
IT demon's user avatar
0 votes
0 answers
32 views

This one has me and Gemini both stumped. The property of Drawing.sceneRootNode evaluates to null or the instance I set depending on whether it's being seen from paint operation or from swing timer ...
user avatar
0 votes
1 answer
66 views

I don't know why, but the vector is NULL after running the function. I have checked manually that the if-condition is true for at least some rows of my data frame. If I rund the if statement for i=84, ...
Student_1899's user avatar
0 votes
3 answers
164 views

Looking for a way (OK with using Apache libs as well), to compare two String in Java with possible null/empty values, where the main requirement is when if one is null and another is empty ("&...
Johnny's user avatar
  • 15.6k
0 votes
1 answer
123 views

I'm trying to impute the missing values in the column A with the most frequent value of the same column, but depending on how it is grouped with the column B. Let em explain better: This is part of my ...
Toni's user avatar
  • 3
0 votes
1 answer
49 views

I am working with Access version MS 365 Apps for enterprise (desktop version). When I try to get a specific field value out of my table, I instead get the equivalent to an empty or null result. I'm in ...
kdlsmith's user avatar
3 votes
1 answer
181 views

I can't understand why in this code I get a warning (CS8604) on the statement value.ToString() at the last line. It's often that i check for null value and still get a warning. foreach (Cell c in ...
Belight's user avatar
  • 354
0 votes
1 answer
139 views

im getting the following error when I try to signup for a new user for my RestAPI using postman: { "title": "Validation error", "message": "notNull Violation: User....
gigaBoy's user avatar
0 votes
1 answer
110 views

Body: I am working on a C codebase, and I need to write a test case to handle the scenario where malloc returns NULL in the s21_create_matrix function. Below is the relevant portion of the code: int ...
house's user avatar
  • 1
0 votes
1 answer
139 views

I have a CSV of 74 fields of mix types including dates and 10 rows with data in some columns but not most. The CSV non-data cells are empty (no nan, NULL, or coded values for missing). I'm trying to ...
kgs_doc's user avatar
  • 11
0 votes
1 answer
80 views

I'm pulling values into a new dataframe. The values come from an object with columns that contain lists and I need to pull specific values from specific columns/lists for each row. I've created a for ...
JRock's user avatar
  • 13
0 votes
2 answers
1k views

I am pulling down JSON data from a website and some of the fields are optional, meaning they do not always exist. When I try to query them, my program breaks. I believe I am checking for nulls ...
eek's user avatar
  • 724
2 votes
1 answer
178 views

function turtlesong { param( [string]$time, [string]$link, [string]$number ) # create exception for when variables are not passed if ($time -eq $null -or $link -...
Lume's user avatar
  • 23
0 votes
0 answers
96 views

I was implementing LRU Cache in C++. Here is what the class looks like, class LRUCache { private: int capacity; list<pair<int,int>> memory; // key,value ...
Atik's user avatar
  • 1
-1 votes
1 answer
129 views

I'm trying to find non null value from 3 strings using a single line code with some null checks in place.I'm getting NULL reference errors here as the c# is checking both sides of the "if" ...
VPP's user avatar
  • 799
-2 votes
1 answer
75 views

Scanning linux images... Running kernel seems to be up-to-date. No services need to be restarted. No containers need to be restarted. No user sessions are running outdated binaries. No VM guests are ...
Lavanya Venu's user avatar
0 votes
2 answers
176 views

I have this piece of C++ code: int main() { int* ptr = nullptr; int& ref = reinterpret_cast<int&>(ptr); return ref; } While compiling with -Wall -Wextra -pedantic on both ...
Michael Morris's user avatar
-3 votes
1 answer
70 views

class ToDoList { public static void toDO() { List<string[]> addEntry = []; bool toDoLoop = true; while (toDoLoop) { Clear(); WriteLine(&...
user avatar
0 votes
1 answer
137 views

I want to change the color of the background of my text field using a color picker. (I used flutter_colorpicker) create_journal.dart late Color _selectedBackgroundColor; void initState() { super....
Ariel Arevalo's user avatar
3 votes
4 answers
221 views

I have a table CREATE TABLE IF NOT EXISTS club.climbers ( climber_id SERIAL PRIMARY KEY, climber_first_name VARCHAR(20) NOT NULL, climber_last_name VARCHAR(30) NOT NULL, ...
Юра Ковалeв's user avatar
0 votes
2 answers
724 views

I have multiple excel files. I import the data into 1 DataFrame in Python. Then I sort the information by an Index field, and afterwards I want to export the Dataframe into an excel file. All goes ...
Arkasz's user avatar
  • 3
0 votes
1 answer
44 views

I have a dataframe named df that has null values for Bandwidth_GB_Year. I am trying to fill the null values based on the means that are grouped by another column, InternetService. When I use fillna, ...
Andrew Grofe's user avatar
0 votes
2 answers
107 views

$curl = curl_init(); curl_setopt_array($curl , [ CURLOPT_RETURNTRANSFER =>TRUE, CURLOPT_URL => 'https://ortam.etu.edu.tr/Services/get_user_card_information/?apikey=XXXXXXXXX&...
user avatar

1
3 4
5
6 7
328