Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 510 for pos4 (0.02 sec)

  1. docs/em/docs/tutorial/request-forms.md

    βœ‹οΈ πŸ•β” πŸ“¨ πŸ”Œ πŸ“, ⚫️ πŸ—œ `multipart/form-data`. πŸ‘† πŸ”œ ✍ πŸ”ƒ 🚚 πŸ“ ⏭ πŸ“ƒ.
    
    πŸš₯ πŸ‘† πŸ’š ✍ πŸŒ– πŸ”ƒ πŸ‘‰ πŸ”’ &amp; πŸ“¨ πŸ‘, πŸ‘³ <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/POST" class="external-link" target="_blank"><abbr title="Mozilla Developer Network">πŸ‡</abbr> πŸ•Έ 🩺 <code>POST</code></a>.
    
    ///
    
    /// warning
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/lex/slice.go

    	base   *src.PosBase
    	line   int
    	pos    int
    }
    
    func NewSlice(base *src.PosBase, line int, tokens []Token) *Slice {
    	return &Slice{
    		tokens: tokens,
    		base:   base,
    		line:   line,
    		pos:    -1, // Next will advance to zero.
    	}
    }
    
    func (s *Slice) Next() ScanToken {
    	s.pos++
    	if s.pos >= len(s.tokens) {
    		return scanner.EOF
    	}
    	return s.tokens[s.pos].ScanToken
    }
    
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Thu Jun 29 22:49:50 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/NotificationHelper.java

            }
            final String body = toSlackMessage(discloser);
            StreamUtil.split(slackWebhookUrls, "[,\\s]").of(stream -> stream.filter(StringUtil::isNotBlank).forEach(url -> {
                try (CurlResponse response = Curl.post(url).header("Content-Type", "application/json").body(body).execute()) {
                    if (response.getHttpStatusCode() == 200) {
                        if (logger.isDebugEnabled()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/response-status-code.md

    * `@app.get()`
    * `@app.post()`
    * `@app.put()`
    * `@app.delete()`
    * etc.
    
    {* ../../docs_src/response_status_code/tutorial001.py hl[6] *}
    
    /// note
    
    Notice that `status_code` is a parameter of the "decorator" method (`get`, `post`, etc). Not of your *path operation function*, like all the parameters and body.
    
    ///
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 4K bytes
    - Viewed (0)
  5. docs/ko/docs/openapi-webhooks.md

    **FastAPI**λ₯Ό μ‚¬μš©ν•˜μ—¬ OpenAPI와 ν•¨κ»˜ μ›Ήν›…μ˜ 이름, 앱이 보낼 수 μžˆλŠ” HTTP μž‘μ—… μœ ν˜•(예: `POST`, `PUT` λ“±), 그리고 보낼 μš”μ²­μ˜ **λ°”λ””**λ₯Ό μ •μ˜ν•  수 μžˆμŠ΅λ‹ˆλ‹€.
    
    이λ₯Ό 톡해 μ‚¬μš©μžκ°€ **μ›Ήν›…** μš”μ²­μ„ μˆ˜μ‹ ν•  **API κ΅¬ν˜„**을 훨씬 μ‰½κ²Œ ν•  수 있으며, κ²½μš°μ— 따라 μ‚¬μš©μž API μ½”λ“œμ˜ 일뢀λ₯Ό μžλ™ 생성할 μˆ˜λ„ μžˆμŠ΅λ‹ˆλ‹€.
    
    /// info
    
    웹훅은 OpenAPI 3.1.0 μ΄μƒμ—μ„œ μ§€μ›λ˜λ©°, FastAPI `0.99.0` 이상 λ²„μ „μ—μ„œ μ‚¬μš©ν•  수 μžˆμŠ΅λ‹ˆλ‹€.
    
    ///
    
    ## 웹훅이 ν¬ν•¨λœ μ•± λ§Œλ“€κΈ°
    
    **FastAPI** μ• ν”Œλ¦¬μΌ€μ΄μ…˜μ„ λ§Œλ“€ λ•Œ, `webhooks` 속성을 μ‚¬μš©ν•˜μ—¬ *μ›Ήν›…*을 μ •μ˜ν•  수 μžˆμŠ΅λ‹ˆλ‹€. μ΄λŠ” `@app.webhooks.post()`와 같은 λ°©μ‹μœΌλ‘œ *경둜(path) μž‘μ—…*을 μ •μ˜ν•˜λŠ” 것과 λΉ„μŠ·ν•©λ‹ˆλ‹€.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Tue Nov 26 22:08:57 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. okhttp-dnsoverhttps/src/test/java/okhttp3/dnsoverhttps/DohProviders.kt

        DnsOverHttps
          .Builder()
          .client(bootstrapClient)
          .url("https://dns.google/dns-query".toHttpUrl())
          .bootstrapDnsHosts(getByIp("8.8.4.4"), getByIp("8.8.8.8"))
          .post(true)
          .build()
    
      private fun buildCloudflareIp(bootstrapClient: OkHttpClient): DnsOverHttps =
        DnsOverHttps
          .Builder()
          .client(bootstrapClient)
          .url("https://1.1.1.1/dns-query".toHttpUrl())
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  7. docs/es/docs/tutorial/request-forms.md

    Si quieres leer mΓ‘s sobre estas codificaciones y campos de formulario, dirΓ­gete a la <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/POST" class="external-link" target="_blank"><abbr title="Mozilla Developer Network">MDN</abbr> web docs para <code>POST</code></a>.
    
    ///
    
    /// warning | Advertencia
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/request-forms.md

    If you want to read more about these encodings and form fields, head to the <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/POST" class="external-link" target="_blank"><abbr title="Mozilla Developer Network">MDN</abbr> web docs for <code>POST</code></a>.
    
    ///
    
    /// warning
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/Constants.java

         */
        public static final String GET_METHOD = "GET";
    
        /**
         * The HEAD method.
         */
        public static final String HEAD_METHOD = "HEAD";
    
        /**
         * The POST method.
         */
        public static final String POST_METHOD = "POST";
    
        /**
         * The status code for OK.
         */
        public static final int OK_STATUS = 0;
    
        /**
         * The status code for Not Modified.
         */
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  10. docs/de/docs/advanced/openapi-webhooks.md

    ## Webhooks mit **FastAPI** und OpenAPI dokumentieren
    
    Mit **FastAPI** kΓΆnnen Sie mithilfe von OpenAPI die Namen dieser Webhooks, die Arten von HTTP-Operationen, die Ihre Anwendung senden kann (z. B. `POST`, `PUT`, usw.) und die Request**bodys** definieren, die Ihre Anwendung senden wΓΌrde.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top