Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

24
votes
9answers
3k views

Unique ways to use the Null Coalescing operator

I know the standard way of using the Null coalescing operator in C# is to set default values. string nobody = null; string somebody = "Bob Saget"; string anybody = ""; anybody = nobody ?? "Mr. T"; ...
9
votes
1answer
872 views

How to write a proper null-safe coalescing operator in scala?

Having seen the answers coming out of questions like this one involving horror shows like trying to catch the NPE and dredge the mangled name out of the stack trace, I am asking this question so I can ...
1
vote
1answer
440 views

Coalescing while using NSNotificationQueue

I wrote the following code to perform coalescing using NSNotificationQueue.I want to post only one notification even if the event occurs multiple times. - (void) test000AsyncTesting { [NSRunLoop ...
0
votes
0answers
18 views

Which features of the TCP stack need the actual number of packets and acks?

I am working on a simple, transparent packet aggregation idea on the receiver side, to be implemented on a NIC. The basic concept is to aggregate only packets belonging to the same TCP connection, ...
0
votes
1answer
203 views

CUDA: memory transaction size for compute capability 1.2 or later

all, From "NVIDIA CUDA Programming Guide 2.0" Section 5.1.2.1: "Coalescing on Devices with Compute Capability 1.2 and Higher" "Find the memory segment that contains the address requested by the ...