Skip to main content
0 votes
0 answers
47 views

I'm confused about NULL handling in Apache IoTDB 2.0.6 Tree Model. When using wildcard queries across multiple devices, missing timeseries show as NULL - but this looks identical to intentionally ...
ごまめとにまめ's user avatar
-4 votes
4 answers
278 views

In C++, pointers and optional's can both be used as the condition expression in an if statement: auto *ptr = get_ptr(); if (ptr) { std::cout << "Yay, can use ptr!\n"; } else { ...
einpoklum's user avatar
  • 140k
3 votes
2 answers
163 views

I have a PowerShell script to change local Admin Password and output it in csv. I am getting the error message: Export-Csv : Cannot bind argument to parameter 'InputObject' because it is null. At G:\...
Keywan's user avatar
  • 29
2 votes
2 answers
171 views

I wrote a method that returns a reference to a variable (ref return), and sometimes the returned reference can be null. After calling this method I have to check if the reference is null, and I am ...
Theodor Zoulias's user avatar
8 votes
3 answers
1k views

I have a bug in one of my packages that I do not understand. I have an if() statement that checks for NA. In one case, the vector returned is NULL. Why is is.na(NULL) returning an empty logical vector ...
brunj7's user avatar
  • 336
0 votes
4 answers
109 views

I have a table TB and a column fd, in which can be NULL or a string. Now I want to pull out the rows from TB on the condition of fd with the largest value. If only NULL in fd, then those rows with fd ...
xymzh's user avatar
  • 219
0 votes
0 answers
18 views

I'm processing stock tick-by-tick quote data in DolphinDB and encountering numerous NULL values (caused by imbalanced bid/ask quotes). I've tried several methods to fill these NULL values, but none ...
Jane's user avatar
  • 59
-2 votes
1 answer
190 views

In this example I wanted to replace every NULL value in the Quantity column with the mean of the column. I'm using CASE here to achieve that but what ends up happening is instead of replacing NULL ...
Carl Mark Sibal's user avatar
15 votes
2 answers
854 views

I have a struct that I allow implicit conversion from string or StringBuilder. public ref struct StringParam { private string s; private StringBuilder sb; public static implicit operator ...
Bryce Wagner's user avatar
  • 1,813
3 votes
1 answer
145 views

I saw in a script this kind of command: Write-Verbose -Message ($var=$null="foo=$(<some computation>)") <do something more with $var> What is the point of assigning the string ...
Peyre's user avatar
  • 753
1 vote
2 answers
158 views

I have a class for lists called UniqueListWithActions<T> with the constructor method public UniqueListWithActions(List<T> _list) { list = _list; } list is declared as ...
Isaac Bargamian's user avatar
Best practices
1 vote
4 replies
122 views

Imagine I have a field with signature static string[]? foodItems that is initialized to null. During the course if the program I will assign a value to that field, and sometime later I will ...
OOPS Studio's user avatar
3 votes
5 answers
293 views

I'm trying to reimplement the standard strlen function in C, and I'm closely replicating its behavior. I defined my function based on standard C declaration for strlen: size_t ft_strlen(const char *s);...
user31651582's user avatar
0 votes
0 answers
45 views

Consider this code (C# 12/.NET 8): class Content { public string Value { get; set; } } class Something { public bool IsOK { get; set; } public Content? TheContent { get; set; } } ...
Kjell Rilbe's user avatar
  • 1,623
1 vote
1 answer
102 views

I'm configuring Prestashop 1.7.8.11 and when I click in the checkout for process to payment, I get this error: in 5e15b4d1179cdfd15539bcc9dbefe763da3b3d2b_2.file.cart-summary-totals.tpl.php line 77 at ...
Raul A.'s user avatar
  • 11

15 30 50 per page
1
2 3 4 5
1090