Guzzle PHP 5.3 DocumentationcURL, sockets, PHP’s stream wrapper, non-blocking event loops like React [http://reactphp.org/], etc.). Guzzle makes it so that you no longer need to fool around with cURL options, stream contexts, or sockets Event Emitters Event Priorities Working With Request Events Streams Creating Streams Metadata Stream Decorators RingPHP Handlers Using a handler Creating a handler Testing Guzzle Clients Mock Subscriber cURL? Can Guzzle send asynchronous requests? How can I add custom cURL options? How can I add custom stream context options? Why am I getting an SSL verification error? What is this Maximum function nesting0 码力 | 72 页 | 312.62 KB | 11 月前3
Guzzle PHP 5.3 Documentation(e.g., cURL, sockets, PHP’s stream wrapper, non-blocking event loops like React, etc.). • Guzzle makes it so that you no longer need to fool around with cURL options, stream contexts, or sockets. $client Contents CHAPTER 1 User guide 1.1 Overview 1.1.1 Requirements 1. PHP 5.4.0 2. To use the PHP stream handler, allow_url_fopen must be enabled in your system’s php.ini. 3. To use the cURL handler, you zlib. Note: Guzzle no longer requires cURL in order to send HTTP requests. Guzzle will use the PHP stream wrapper to send HTTP requests if cURL is not installed. Alternatively, you can provide your own HTTP0 码力 | 63 页 | 275.75 KB | 11 月前3
Guzzle PHP 6.5 Documentationidn_conversion json multipart on_headers on_stats progress proxy query read_timeout sink ssl_key stream synchronous verify timeout version Guzzle and PSR-7 Headers Accessing Headers Complex Headers Scheme Host Port Path Query string Responses Start-Line Body Streams Creating Streams Metadata Stream Decorators Handlers and Middleware Handlers Middleware HandlerStack Creating a Handler Testing cURL? Can Guzzle send asynchronous requests? How can I add custom cURL options? How can I add custom stream context options? Why am I getting an SSL verification error? What is this Maximum function nesting0 码力 | 65 页 | 311.42 KB | 11 月前3
Guzzle PHP v5 Documentationheaders http_errors json multipart on_headers on_stats progress proxy query read_timeout sink ssl_key stream synchronous verify timeout version Guzzle and PSR-7 Headers Accessing Headers Complex Headers Scheme Host Port Path Query string Responses Start-Line Body Streams Creating Streams Metadata Stream Decorators Handlers and Middleware Handlers Middleware HandlerStack Creating a Handler Testing cURL? Can Guzzle send asynchronous requests? How can I add custom cURL options? How can I add custom stream context options? Why am I getting an SSL verification error? What is this Maximum function nesting0 码力 | 62 页 | 309.78 KB | 11 月前3
Guzzle PHP v5 Documentation. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 26 1.3.25 stream . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 26 1 options? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 43 1.7.4 How can I add custom stream context options? . . . . . . . . . . . . . . . . . . . . . . . . 43 1.7.5 Why am I getting an SSL Release 2 Contents CHAPTER 1 User Guide Overview Requirements 1. PHP 5.5.0 2. To use the PHP stream handler, allow_url_fopen must be enabled in your system’s php.ini. 3. To use the cURL handler, you0 码力 | 49 页 | 231.08 KB | 11 月前3
Guzzle PHP 7.0 Documentationidn_conversion json multipart on_headers on_stats progress proxy query read_timeout sink ssl_key stream synchronous verify timeout version Guzzle and PSR-7 Headers Accessing Headers Complex Headers Scheme Host Port Path Query string Responses Start-Line Body Streams Creating Streams Metadata Stream Decorators Handlers and Middleware Handlers Middleware HandlerStack Creating a Handler Testing cURL? Can Guzzle send asynchronous requests? How can I add custom cURL options? How can I add custom stream context options? Why am I getting an SSL verification error? What is this Maximum function nesting0 码力 | 64 页 | 310.93 KB | 11 月前3
Guzzle PHP 7.0 Documentation. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 28 1.3.26 stream . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 28 1 options? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 44 1.7.4 How can I add custom stream context options? . . . . . . . . . . . . . . . . . . . . . . . . 45 1.7.5 Why am I getting an SSL Contents CHAPTER 1 User Guide 1.1 Overview 1.1.1 Requirements 1. PHP 5.5.0 2. To use the PHP stream handler, allow_url_fopen must be enabled in your system’s php.ini. 3. To use the cURL handler, you0 码力 | 50 页 | 235.39 KB | 11 月前3
Guzzle PHP 6.5 Documentation. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27 1.3.26 stream . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 28 1 options? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 44 1.7.4 How can I add custom stream context options? . . . . . . . . . . . . . . . . . . . . . . . . 45 1.7.5 Why am I getting an SSL Contents CHAPTER 1 User Guide 1.1 Overview 1.1.1 Requirements 1. PHP 5.5.0 2. To use the PHP stream handler, allow_url_fopen must be enabled in your system’s php.ini. 3. To use the cURL handler, you0 码力 | 50 页 | 237.04 KB | 11 月前3
Taro: Task graph-based Asynchronous Programming Using C++ Coroutine6 Coro gpu_work() { 7 cudaStream_t stream; 8 cudaStreamCreate(stream); 9 gpu_matmul<<<8, 256, 0, stream>>>(matA, matB); 10 while(cudaStreamQuery(stream) != cudaSuccess) { 11 co_await std::suspend_always{}; std::suspend_always{}; 12 } 13 cudaStreamDestory(stream); 14 } 2 struct Coro { 3 4 struct promise_type { 5 std::suspend_always initial_suspend() noexcept { return {}; } 6 std::suspend_always final_suspend() Polling D C 7 auto task_a = taro.emplace([&]() { 8 cuda.wait([&](cudaStream_t stream) { 9 kernel_a1<<<32, 256, 0, stream>>>(); 10 }); // synchronize 11 }); 31Taro’s Programming Model – Example 1 Taro:0 码力 | 84 页 | 8.82 MB | 6 月前3
MuPDF 1.22.0 Documentation“linearized” files . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 163 6.3 The Hint Stream . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 164 6 instead of using stdout. Should be a plain text file format. -e Leave stream contents in their original form. -b Print only stream contents, as raw binary data. -g Print only object, one line per object $FILE trailer/Root/Pages/Count Print the raw content stream of the first page: mutool show -b $FILE pages/1/Contents Print the raw content stream of the first page & second page & the PDF outline (demonstrates0 码力 | 175 页 | 698.87 KB | 8 月前3
共 149 条
- 1
- 2
- 3
- 4
- 5
- 6
- 15













