Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 981 - 990 of 1,820 for Message1 (0.06 seconds)

  1. docs/zh-hant/docs/advanced/websockets.md

    /// note | 技術細節
    
    你也可以使用 `from starlette.websockets import WebSocket`。
    
    **FastAPI** 直接提供相同的 `WebSocket` 只是為了方便你這位開發者,但它其實是直接來自 Starlette。
    
    ///
    
    ## 等待與傳送訊息 { #await-for-messages-and-send-messages }
    
    在你的 WebSocket 路由中,你可以 `await` 接收訊息並傳送訊息。
    
    {* ../../docs_src/websockets_/tutorial001_py310.py hl[48:52] *}
    
    你可以接收與傳送二進位、文字與 JSON 資料。
    
    ## 試試看 { #try-it }
    
    如果你的檔案名為 `main.py`,用以下指令執行應用:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 5.2K bytes
    - Click Count (0)
  2. src/main/java/jcifs/internal/NotifyResponse.java

     */
    package jcifs.internal;
    
    import java.util.List;
    
    import jcifs.FileNotifyInformation;
    
    /**
     * Interface for SMB change notification response messages.
     * Handles responses from directory change notification requests, providing information
     * about file system changes such as file creation, deletion, or modification events.
     *
     * @author mbechler
     */
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 1.4K bytes
    - Click Count (0)
  3. tests/test_additional_properties.py

                                        "anyOf": [{"type": "string"}, {"type": "integer"}]
                                    },
                                },
                                "msg": {"title": "Message", "type": "string"},
                                "type": {"title": "Error Type", "type": "string"},
                                "input": {"title": "Input"},
                                "ctx": {"title": "Context", "type": "object"},
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 08 10:18:38 GMT 2026
    - 4.1K bytes
    - Click Count (0)
  4. docs_src/first_steps/tutorial003_py310.py

    from fastapi import FastAPI
    
    app = FastAPI()
    
    
    @app.get("/")
    def root():
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Feb 12 13:19:43 GMT 2026
    - 111 bytes
    - Click Count (0)
  5. docs/tr/docs/advanced/websockets.md

    **FastAPI**, geliştirici olarak işinizi kolaylaştırmak için aynı `WebSocket`'i doğrudan sağlar. Ancak aslında doğrudan Starlette'ten gelir.
    
    ///
    
    ## Mesajları `await` Edin ve Mesaj Gönderin { #await-for-messages-and-send-messages }
    
    WebSocket route'unuzda mesajları `await` edebilir ve mesaj gönderebilirsiniz.
    
    {* ../../docs_src/websockets_/tutorial001_py310.py hl[48:52] *}
    
    Binary, text ve JSON verisi alıp gönderebilirsiniz.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 5.9K bytes
    - Click Count (0)
  6. internal/kms/kms.go

    	AssociatedData Context
    }
    
    // MACRequest is a structure containing fields
    // and options for generating message authentication
    // codes (MAC).
    type MACRequest struct {
    	// Name is the name of the master key used decrypt
    	// the ciphertext.
    	Name string
    
    	Version int
    
    	Message []byte
    }
    
    // Metrics is a structure containing KMS metrics.
    type Metrics struct {
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Thu Apr 24 15:33:57 GMT 2025
    - 11.4K bytes
    - Click Count (0)
  7. src/main/webapp/WEB-INF/view/admin/dict/stopwords/admin_dict_stopwords_details.jsp

                                    <%-- Card Body --%>
                                <div class="card-body">
                                        <%-- Message --%>
                                    <div>
                                        <la:info id="msg" message="true">
                                            <div class="alert alert-success">${msg}</div>
                                        </la:info>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 7.4K bytes
    - Click Count (0)
  8. okhttp-zstd/src/test/java/okhttp3/zstd/ZstdInterceptorTest.kt

        }
      }
    
      @Test
      fun testSkipDecompressNoContentResponse() {
        val response =
          response("https://example.com/", EMPTY) {
            header("Content-Encoding", "zstd")
            code(204)
            message("NO CONTENT")
          }
    
        val same = zstdInterceptor.decompress(response)
    
        val responseString = same.body.string()
        assertThat(responseString).isEmpty()
      }
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Fri Aug 01 06:04:22 GMT 2025
    - 4.8K bytes
    - Click Count (1)
  9. android/guava-testlib/test/com/google/common/testing/EqualsTesterTest.java

        assertThat(e).hasMessageThat().contains("toString representation");
      }
    
      private static void assertErrorMessage(Throwable e, String message) {
        // TODO(kevinb): use a Truth assertion here
        if (!e.getMessage().contains(message)) {
          fail("expected <" + e.getMessage() + "> to contain <" + message + ">");
        }
      }
    
      /**
       * Test class with valid equals and hashCode methods. Testers created with instances of this class
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed May 14 19:40:47 GMT 2025
    - 13.1K bytes
    - Click Count (0)
  10. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java

            }
            // this is important message; many Maven IT assert for presence of this message
            logger.error("Error executing " + context.invokerRequest.parserRequest().commandName() + ".");
            for (Logger.Entry entry : entries) {
                if (showStackTrace) {
                    logger.log(entry.level(), entry.message(), entry.error());
                } else {
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Oct 28 13:01:07 GMT 2025
    - 43.2K bytes
    - Click Count (0)
Back to Top