firebird wire protocolInt32 Operation code If operation equals op_response: Int32 Object handle Int64 Object ID Buffer Data (meaning depends on the operation). Byte[] Status vector . #### 2.3. Fetch response Int32 Operation code [Image](/uploads/documents/3/5/a/f/35af79646ea093527f75f90be7f691dc/p6_2.jpg) The data rows are not in a buffer as described in Data types, but as a sequence of data rows, see Reading row data. #### 2.4. Slice0 码力 | 40 页 | 213.15 KB | 2 年前3
NodeJS 中文文档 V0.2.3提供了一些方法来创建、操作和接收二进制数据流。 原始的数据保存在 Buffer 类的实例中。Buffer 类似于一个整数数组,不同之处在于它和在 V8 内存堆之外分配的一段内存数据相对应。Buffer 对象的大小不能调整。你可以通过 "require('buffer').Buffer" 来使用这个类。 Buffer 对象是全局对象。 Buffer 和 Javascript 中 string 串的方式。这个方式已经废弃,应当尽量使用 buffer 对象。这个编码将会在未来的 node 中删除。 最新版文档:wiki.grati.org QQ 群:53090214 共同学习 NodeJS,欢迎加入。 创建指定大小的 buffer 对象。 ## new Buffer(array) 从数组新建 buffer 对象。 ## new Buffer(str, encoding='utf8') encoding='utf8') 新建一个保存指定字符串的 buffer 对象。 ### buffer.write(string, offset=0, encoding='utf8') 使用指定的编码方式将字符串从指定偏移开始写入 buffer,然后返回实际写入的大小。如果 buffer 空间不足,则只会写入部分字符串。在本例中使用 'utf8' 编码,这种方式不会写入半个字符。0 码力 | 62 页 | 542.14 KB | 2 年前3
MuPDF 1.24.0 DocumentationClass A-Z Index 81 6.2 Matrices and Rectangles 82 6.3 Colors 85 6.4 Object Protocols 86 6.5 Buffer 89 6.6 Document 93 6.7 Page 96 6.8 Link 100 6.9 StructuredText 101 6.10 ColorSpace 102 // Create content stream. var buffer = new Buffer() buffer.writeLine("10 10 280 330 re s") buffer.writeLine("q 200 0 0 200 50 100 cm /Im0 Do Q") buffer.writeLine("BT /Tm 16 Tf 50 50 50 TD (Hello, world!) Tj ET") var contents = pdf.addStream(buffer) // Create page object. var page = pdf.addObject({ Type: "Page", MediaBox: [0, 0, 300, 350], Contents: contents0 码力 | 249 页 | 830.15 KB | 1 年前3
MuPDF 1.23.0 DocumentationClass A-Z Index 81 6.2 Matrices and Rectangles 82 6.3 Colors 85 6.4 Object Protocols 86 6.5 Buffer 89 6.6 Document 92 6.7 Page 96 6.8 Link 100 6.9 StructuredText 101 6.10 ColorSpace 102 // Create content stream. var buffer = new Buffer() buffer.writeLine("10 10 280 330 re s") buffer.writeLine("q 200 0 0 200 50 100 cm /Im0 Do Q") buffer.writeLine("BT /Tm 16 Tf 50 50 50 TD (Hello, world!) Tj ET") var contents = pdf.addStream(buffer) // Create page object. var page = pdf.addObject({ Type: "Page", MediaBox: [0, 0, 300, 350], Contents: contents0 码力 | 245 页 | 817.74 KB | 1 年前3
MuPDF 1.25.0 DocumentationClass A-Z Index 85 7.2 Matrices and Rectangles 86 7.3 Colors 89 7.4 Object Protocols 90 7.5 Buffer 94 7.6 Document 97 7.7 Page 101 7.8 Link 105 7.9 StructuredText ..... 106 7.10 ColorSpace // Create content stream. var buffer = new Buffer() buffer.writeLine("10 10 280 330 re s") buffer.writeLine("q 200 0 0 200 50 100 cm /Im0 Do Q") buffer.writeLine("BT /Tm 16 Tf 50 50 50 TD (Hello, world!) Tj ET") var contents = pdf.addStream(buffer) (continues on next page) (continued from previous page) // Create page object. var page = pdf.addObject({ Type: "Page"0 码力 | 259 页 | 1.11 MB | 1 年前3
BlenderVR User Manual
Release 0.1configuration file. Note: For the initial test it’s recommended to create a single screen with a mono buffer setup. ## Run If there are no errors in the configuration tab, change to the Run tab and hit Start ask the master's processor (through getSynchronizerBuffer() method) the buffer to send to the slaves. Then, if the buffer is not empty (getSynchronizerBuffer() doesn't return None), each slave, options="-w 400 400">DISPLAY=:0.0 buffer buffer="mono" user="user A" eye="middle"> buffer> (...) ## Desktop Basic This is a very basic configuration0 码力 | 56 页 | 860.89 KB | 2 年前3
BlenderVR User Manual
Release 0.1configuration file. ## Note For the initial test it’s recommended to create a single screen with a mono buffer setup. ## Run If there are no errors in the configuration tab, change to the Run tab and hit Start will ask the master’s processor (through getSynchronizerBuffer() method) the buffer to send to the slaves. Then, if the buffer is not empty (getSynchronizerBuffer() doesn’t return None), each slave, in the options="-w 400 400">DISPLAY=:0.0 buffer buffer="mono" user="user A" eye="middle"> buffer> (...) ## Desktop Basic This is a very basic configuration0 码力 | 75 页 | 861.11 KB | 2 年前3
Golang Manual By AstaXie-20120522accessor for the contents. After import "bytes" the importing package can talk about bytes.Buffer. It's helpful if everyone using the package can use the same name to refer to its contents, which new and get right to work. For example, the documentation for bytes.Buffer states that "the zero value for Buffer is an empty buffer ready to use." Similarly, sync.Mutex does not have an explicit Consider this type declaration. ```c type SyncedBuffer struct { lock sync.Mutex buffer bytes.Buffer } ``` Values of type SyncedBuffer are also ready to use immediately upon allocation or0 码力 | 6205 页 | 12.83 MB | 2 年前3
MuPDF 1.22.0 Documentation// Create content stream. var buffer = new Buffer() buffer.writeLine("10 10 280 330 re s") buffer.writeLine("q 200 0 0 200 50 100 cm /Im0 Do Q") buffer.writeLine("BT /Tm 16 Tf 50 50 50 TD (Hello, world!) Tj ET") var contents = pdf.addStream(buffer) // Create page object. var page = pdf.addObject({ Type: "Page", MediaBox: [0, 0, 300, 350], Contents: contents subdoc = new Document("pdfref17.pdf") var resources = { XObject: {} } var contents = new Buffer() for (var i = 0; i < 5; ++i) { var pixmap = subdoc.loadPage(1140 + i).toPixmap([0.2, 0,0 码力 | 175 页 | 698.87 KB | 1 年前3
Heterogeneous Modern C++ with SYCL 2020v, async_handler{}}; sycl::buffer bufA{dA.data(), sycl::range{dA.size()}}; sycl::buffer bufB{dB.data(), sycl::range{dB.size()}}; sycl::buffer bufO{dO.data(), sycl::range{dO.size()}}; r_v, async_handler}; sycl::buffer bufA{dA.data(), sycl::range{dA.size()}}; sycl::buffer bufB{dB.data(), sycl::range{dB.size()}}; sycl::buffer bufO{dO.data(), sycl::range{dO.size()}}; v, async_handler{}}; sycl::buffer bufA{dA.data(), sycl::range{dA.size()}}; sycl::buffer bufB{dB.data(), sycl::range{dB.size()}}; sycl::buffer bufO{dO.data(), sycl::range{dO.size()}};0 码力 | 114 页 | 7.94 MB | 1 年前3
共 1000 条
- 1
- 2
- 3
- 4
- 5
- 6
- 100
相关搜索词
Firebird Wire ProtocolXDRInt32BufferBlobNode.js模块http服务器网络请求MuPDFC APIFitz ContextFitz libraryMuPDF modulesC++ APIthird-party librariesbuilding the libraryinstallationCAPIJavaScriptmutoolOpenGLBlenderVRVRPNOculus Rift DK2AnchorProcessor File安装配置文件用户界面开发环境Golang并发垃圾回收类型系统模块化构建APIPython绑定错误处理上下文克隆渐进式加载SYCL 2020并行异构编程统一共享内存并行减少工作组算法













