Charles Pritchard

Results 62 issues of Charles Pritchard

'experimental DB::AddFile() to plug sst files into empty DB': https://github.com/facebook/rocksdb/commit/f03b5c987bb61f635c510ccd6bcb8a98bfcc41a8 This feature is useful for combining the results of non-overlapping ranges, when bulk loading. It's not yet stable.

On postgres 9.4.1 in OS X: ``` orc_fdw.c:762:52: error: invalid application of 'sizeof' to an incomplete type 'HeapTupleHeaderData' (aka 'struct HeapTupleHeaderData') tupleWidth = MAXALIGN(baserel->width) + MAXALIGN(sizeof(HeapTupleHeaderData)); ^ ~~~~~~~~~~~~~~~~~~~~~ ``` Same...

Example edits for updating to CUDA 12: Update cuda/pinned_vector.h: [Thrust pinned memory in CUDA 12.0](https://forums.developer.nvidia.com/t/thrust-pinned-memory-in-cuda-12-0/242093) Update cuda/imageProcessing/scale.cu: [Fix CUDA texture bugs and replace all instances of CUDA texture references with...

Looks like FileZilla (popular client) uses EPSV. Seems like responding to the features request or otherwise responding with a 550 would bump it back to using PASV. From this doc:...

The node.js crypto (aka webcrypto) subtle generateKey method wraps keys in a standard API now. One can just do if(key instanceof CryptoKey) and get the appropriate algorithm, settings and run...

feature request

Getting a lot of this: ``` gof3r error: 307: "Please re-send this request to the specified temporary endpoint. Continue to use the original request endpoint for future requests." ``` It'd...

enhancement

From: https://github.com/JustinTulloss/zeromq.node/blob/a83ff5c00bcfda129d6756daf4e5c4077fad1d2f/lib/index.js#L512 ``` try { this._flush(); } catch (err) { this.emit('error', err); } finally { this._zmq.pending = this._outgoing.length; } ``` I'd like to see a drain event emitted when pending...

How do I pass a limit option? as it's a stream reader, I don't need to grab the whole result set.

enhancement

https://github.com/google/protobuf/blob/master/CHANGES.txt "In proto3, the language is simplified, both for ease of use and to make it available in a wider range of programming languages. At the same time a few...

enhancement

Currently, todict makes a copy of the full structure. Simply accessing (or documenting) the internal **dict** is much faster than using setattr/getattr and reflection.