Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 412 for us (0.01 sec)

  1. docs/pt/docs/advanced/websockets.md

    # WebSockets
    
    Vocรช pode usar <a href="https://developer.mozilla.org/en-US/docs/Web/API/WebSockets_API" class="external-link" target="_blank">WebSockets</a> com **FastAPI**.
    
    ## Instalando `WebSockets`
    
    Garanta que vocรช criou um [ambiente virtual](../virtual-environments.md){.internal-link target=_blank}, o ativou e instalou o `websockets`:
    
    <div class="termy">
    
    ```console
    $ pip install websockets
    
    ---> 100%
    ```
    
    </div>
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. buildscripts/verify-build.sh

    	shred -n 1 -s 65M - 1>"$FILE_65_MB" 2>/dev/null
    
    	## version is purposefully set to '3' for minio to migrate configuration file
    	echo '{"version": "3", "credential": {"accessKey": "minio", "secretKey": "minio123"}, "region": "us-east-1"}' >"$MINIO_CONFIG_DIR/config.json"
    
    	if ! wget -q -O "$FUNCTIONAL_TESTS" https://raw.githubusercontent.com/minio/mc/master/functional-tests.sh; then
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri May 24 19:28:51 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. docs/sts/assume-role.md

    ### Testing an example with awscli tool
    
    > Use the same username and password created in the previous steps.
    
    ```
    [foobar]
    region = us-east-1
    aws_access_key_id = foobar
    aws_secret_access_key = foo12345
    ```
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  4. docs/em/docs/tutorial/response-status-code.md

        * ๐Ÿ’Š โŒ โšช๏ธโžก๏ธ ๐Ÿ‘ฉโ€๐Ÿ’ป, ๐Ÿ‘† ๐Ÿ’ช โš™๏ธ `400`.
    * `500` &amp; ๐Ÿ”› ๐Ÿ’ฝ โŒ. ๐Ÿ‘† ๐ŸŒ– ๐Ÿ™… โš™๏ธ ๐Ÿ‘ซ ๐Ÿ”—. ๐Ÿ•โ” ๐Ÿ•ณ ๐Ÿšถ โŒ ๐Ÿ• ๐Ÿ‘† ๐Ÿˆธ ๐Ÿ“Ÿ, โš–๏ธ ๐Ÿ’ฝ, โšซ๏ธ ๐Ÿ”œ ๐Ÿ” ๐Ÿ“จ 1๏ธโƒฃ ๐Ÿ‘ซ ๐Ÿ‘” ๐Ÿ“Ÿ.
    
    /// tip
    
    ๐Ÿ’ญ ๐ŸŒ… ๐Ÿ”ƒ ๐Ÿ”  ๐Ÿ‘” ๐Ÿ“Ÿ &amp; โ” ๐Ÿ“Ÿ โšซ๏ธโ”, โœ… <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Status" class="external-link" target="_blank"><abbr title="Mozilla Developer Network">๐Ÿ‡</abbr> ๐Ÿงพ ๐Ÿ”ƒ ๐Ÿ‡บ๐Ÿ‡ธ๐Ÿ” ๐Ÿ‘” ๐Ÿ“Ÿ</a>.
    
    ///
    
    ## โŒจ ๐Ÿ’ญ ๐Ÿ“›
    
    โžก๏ธ ๐Ÿ‘€ โฎ๏ธ ๐Ÿ–ผ ๐Ÿ”„:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. docs/bucket/replication/delete-replication.sh

    versionId="$(./mc ls --json --versions myminio1/testbucket/dir/ | tail -n1 | jq -r .versionId)"
    
    export AWS_ACCESS_KEY_ID=minioadmin
    export AWS_SECRET_ACCESS_KEY=minioadmin
    export AWS_REGION=us-east-1
    
    aws s3api --endpoint-url http://localhost:9001 delete-object --bucket testbucket --key dir/file --version-id "$versionId"
    
    ./mc ls -r --versions myminio1/testbucket >/tmp/myminio1.txt
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Sep 06 09:42:21 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/http/NtlmServlet.java

                    if (ntlm == null) {
                        return;
                    }
                } else {
                    final String auth = new String(Base64.decode(msg.substring(6)), "US-ASCII");
                    int index = auth.indexOf(':');
                    String user = index != -1 ? auth.substring(0, index) : auth;
                    final String password = index != -1 ? auth.substring(index + 1) : "";
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  7. docs/es/docs/tutorial/middleware.md

    {* ../../docs_src/middleware/tutorial001.py hl[8:9,11,14] *}
    
    /// tip | Consejo
    
    Ten en cuenta que los custom proprietary headers se pueden aรฑadir <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers" class="external-link" target="_blank">usando el prefijo 'X-'</a>.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. okhttp/src/jvmTest/kotlin/okhttp3/HeadersChallengesTest.kt

        val headers =
          Headers
            .Builder()
            .add("WWW-Authenticate: Basic realm=\"protected area\", charset=\"US-ASCII\"")
            .build()
        val expectedAuthParams = mutableMapOf<String?, String>()
        expectedAuthParams["realm"] = "protected area"
        expectedAuthParams["charset"] = "US-ASCII"
        assertThat(headers.parseChallenges("WWW-Authenticate"))
          .isEqualTo(listOf(Challenge("Basic", expectedAuthParams)))
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 16.8K bytes
    - Viewed (0)
  9. docs/ja/docs/tutorial/cors.md

    # CORS (ใ‚ชใƒชใ‚ธใƒณ้–“ใƒชใ‚ฝใƒผใ‚นๅ…ฑๆœ‰)
    
    <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS" class="external-link" target="_blank">CORSใพใŸใฏใ€Œใ‚ชใƒชใ‚ธใƒณ้–“ใƒชใ‚ฝใƒผใ‚นๅ…ฑๆœ‰ใ€</a> ใฏใ€ใƒ–ใƒฉใ‚ฆใ‚ถใงๅฎŸ่กŒใ•ใ‚Œใฆใ„ใ‚‹ใƒ•ใƒญใƒณใƒˆใ‚จใƒณใƒ‰ใซใƒใƒƒใ‚ฏใ‚จใƒณใƒ‰ใจ้€šไฟกใ™ใ‚‹JavaScriptใ‚ณใƒผใƒ‰ใŒใ‚ใ‚Šใ€ใใฎใƒใƒƒใ‚ฏใ‚จใƒณใƒ‰ใŒใƒ•ใƒญใƒณใƒˆใ‚จใƒณใƒ‰ใจใฏ็•ฐใชใ‚‹ใ€Œใ‚ชใƒชใ‚ธใƒณใ€ใซใ‚ใ‚‹็Šถๆณใ‚’ๆŒ‡ใ—ใพใ™ใ€‚
    
    ## ใ‚ชใƒชใ‚ธใƒณ
    
    ใ‚ชใƒชใ‚ธใƒณใฏใƒ—ใƒญใƒˆใ‚ณใƒซ (`http`ใ€`https`) ใจใƒ‰ใƒกใ‚คใƒณ (`myapp.com`ใ€`localhost`ใ€`localhost.tiangolo.com`) ใจใƒใƒผใƒˆ (`80`ใ€`443`ใ€`8080`) ใฎ็ต„ใฟๅˆใ‚ใ›ใงใ™ใ€‚
    
    ใ—ใŸใŒใฃใฆใ€ไปฅไธ‹ใฏใ™ในใฆ็•ฐใชใ‚‹ใ‚ชใƒชใ‚ธใƒณใงใ™:
    
    * `http://localhost`
    * `https://localhost`
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/tls/OkHostnameVerifier.kt

       * they can return ASCII characters that match real hostnames.
       */
      private fun String.asciiToLowercase(): String =
        when {
          isAscii() -> lowercase(Locale.US) // This is an ASCII string.
          else -> this
        }
    
      /** Returns true if the [String] is ASCII encoded (0-127). */
      private fun String.isAscii() = length == utf8Size().toInt()
    
      /**
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 7.6K bytes
    - Viewed (0)
Back to top