Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1411 - 1420 of 1,820 for Message1 (0.05 seconds)

  1. internal/grid/grid.go

    	// This is the assumed size of bigger buffers and allocation size.
    	biggerBufMin = 32 << 10
    
    	// This is the maximum size of bigger buffers.
    	biggerBufMax = maxBufferSize
    
    	// If there is a queue, merge up to this many messages.
    	maxMergeMessages = 50
    
    	// clientPingInterval will ping the remote handler every 15 seconds.
    	// Clients disconnect when we exceed 2 intervals.
    	clientPingInterval = 15 * time.Second
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Mar 30 00:56:02 GMT 2025
    - 7K bytes
    - Click Count (0)
  2. src/test/java/jcifs/internal/smb2/rdma/RdmaIntegrationTest.java

            assertTrue(provider.getMaxMessageSize() > 0, "Max message size should be positive");
    
            System.out.println("Selected RDMA provider: " + provider.getProviderName());
            System.out.println("Supported capabilities: " + provider.getSupportedCapabilities());
            System.out.println("Max message size: " + provider.getMaxMessageSize());
        }
    
        @Test
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 23 05:11:12 GMT 2025
    - 13.8K bytes
    - Click Count (0)
  3. docs/en/docs/tutorial/handling-errors.md

    But it will be handled by the `unicorn_exception_handler`.
    
    So, you will receive a clean error, with an HTTP status code of `418` and a JSON content of:
    
    ```JSON
    {"message": "Oops! yolo did something. There goes a rainbow..."}
    ```
    
    /// note | Technical Details
    
    You could also use `from starlette.requests import Request` and `from starlette.responses import JSONResponse`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 8.9K bytes
    - Click Count (0)
  4. docs/ru/docs/advanced/custom-response.md

    {* ../../docs_src/custom_response/tutorial009c_py310.py hl[9:14,17] *}
    
    Теперь вместо того, чтобы возвращать:
    
    ```json
    {"message": "Hello World"}
    ```
    
    ...этот ответ вернёт:
    
    ```json
    {
      "message": "Hello World"
    }
    ```
    
    Разумеется, вы наверняка найдёте гораздо более полезные способы воспользоваться этим, чем просто форматирование JSON. 😉
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 17.6K bytes
    - Click Count (0)
  5. docs/uk/docs/advanced/custom-response.md

    {* ../../docs_src/custom_response/tutorial009c_py310.py hl[9:14,17] *}
    
    Тепер замість повернення:
    
    ```json
    {"message": "Hello World"}
    ```
    
    ...ця відповідь повертатиме:
    
    ```json
    {
      "message": "Hello World"
    }
    ```
    
    Звісно, ви, ймовірно, знайдете значно кращі способи скористатися цим, ніж просто форматування JSON. 😉
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 17K bytes
    - Click Count (0)
  6. build-tools-internal/src/main/groovy/org/elasticsearch/gradle/internal/doc/SnippetsTask.groovy

            if (s == null) {
                return // Silly null, only real stuff gets to match!
            }
            Matcher m = s =~ pattern
            int offset = 0
            Closure extraContent = { message ->
                StringBuilder cutOut = new StringBuilder()
                cutOut.append(s[offset - 6..offset - 1])
                cutOut.append('*')
                cutOut.append(s[offset..Math.min(offset + 5, s.length() - 1)])
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 20 10:08:26 GMT 2021
    - 17.8K bytes
    - Click Count (0)
  7. src/test/java/jcifs/smb1/smb1/SmbSessionTest.java

            session.transport(); // initialise transport
    
            // Mock the sessionSetup behavior to avoid actual network calls
            // The sessionSetup method would normally send authentication messages
            // Only mark the sessionSetup response as received, not the actual request/response
            doAnswer(invocation -> {
                ServerMessageBlock request = invocation.getArgument(0);
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 5.6K bytes
    - Click Count (0)
  8. src/main/webapp/WEB-INF/view/admin/scheduler/admin_scheduler_edit.jsp

                                </div>
                                <div class="card-body">
                                    <div>
                                        <la:info id="msg" message="true">
                                            <div class="alert alert-success">${msg}</div>
                                        </la:info>
                                        <la:errors property="_global"/>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 9.6K bytes
    - Click Count (0)
  9. docs/en/docs/tutorial/server-sent-events.md

    ## Technical Details { #technical-details }
    
    FastAPI implements some SSE best practices out of the box.
    
    * Send a **"keep alive" `ping` comment** every 15 seconds when there hasn't been any message, to prevent some proxies from closing the connection, as suggested in the [HTML specification: Server-Sent Events](https://html.spec.whatwg.org/multipage/server-sent-events.html#authoring-notes).
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  10. fastapi/sse.py

            str | None,
            Doc(
                """
                Optional event type name.
    
                Maps to `addEventListener(event, ...)` on the browser. When omitted,
                the browser dispatches on the generic `message` event.
                """
            ),
        ] = None
        id: Annotated[
            str | None,
            AfterValidator(_check_id_no_null),
            Doc(
                """
                Optional event ID.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 01 09:21:52 GMT 2026
    - 6.2K bytes
    - Click Count (0)
Back to Top