Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 269 for Mean (0.01 sec)

  1. docs/en/docs/tutorial/query-params-str-validations.md

    //// tab | Python 3.10+
    
    ```Python
    q: Annotated[str | None] = None
    ```
    
    ////
    
    //// tab | Python 3.9+
    
    ```Python
    q: Annotated[Union[str, None]] = None
    ```
    
    ////
    
    Both of those versions mean the same thing, `q` is a parameter that can be a `str` or `None`, and by default, it is `None`.
    
    Now let's jump to the fun stuff. πŸŽ‰
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 20 15:55:38 UTC 2025
    - 16.7K bytes
    - Viewed (0)
  2. cmd/admin-handlers-site-replication.go

    		if err != nil && err != io.EOF && err != io.ErrUnexpectedEOF {
    			// If there is a disconnection before globalNetPerfMinDuration (we give a margin of error of 1 sec)
    			// would mean the network is not stable. Logging here will help in debugging network issues.
    			if time.Since(connectTime) < (globalNetPerfMinDuration - time.Second) {
    				adminLogIf(ctx, err)
    			}
    		}
    		if err != nil {
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Sun Sep 28 20:59:21 UTC 2025
    - 19.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/reflect/TypeResolver.java

             * type resolution are unclear and have changed across Java versions. Until there's
             * a clear specification for what annotations should mean on resolved TypeVariables
             * with modified bounds, annotation methods will throw
             * UnsupportedOperationException. Frameworks requiring annotation preservation
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Sep 23 22:30:05 UTC 2025
    - 25.3K bytes
    - Viewed (0)
  4. docs/bucket/replication/README.md

    #### Rationale
    
    - SSE-C requires application to remember the keys for all GET/PUT operations, any unfortunate loss of keys would automatically mean the objects cannot be accessed anymore.
    - SSE-C is hardly adopted by most widely used applications, applications prefer server to manage the keys via SSE-KMS or SSE-S3.
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 18.3K bytes
    - Viewed (0)
  5. docs/en/docs/advanced/behind-a-proxy.md

    browser("Browser")
    proxy["Proxy on http://0.0.0.0:9999/api/v1/app"]
    server["Server on http://127.0.0.1:8000/app"]
    
    browser --> proxy
    proxy --> server
    ```
    
    /// tip
    
    The IP `0.0.0.0` is commonly used to mean that the program listens on all the IPs available in that machine/server.
    
    ///
    
    The docs UI would also need the OpenAPI schema to declare that this API `server` is located at `/api/v1` (behind the proxy). For example:
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 16.4K bytes
    - Viewed (0)
  6. docs/ru/docs/virtual-environments.md

                harry-3[harry v3]
            end
        end
        stone-project ~~~ azkaban-project
    ```
    
    ## Π§Ρ‚ΠΎ ΠΎΠ·Π½Π°Ρ‡Π°Π΅Ρ‚ активация Π²ΠΈΡ€Ρ‚ΡƒΠ°Π»ΡŒΠ½ΠΎΠ³ΠΎ окруТСния { #what-does-activating-a-virtual-environment-mean }
    
    Когда Π²Ρ‹ Π°ΠΊΡ‚ΠΈΠ²ΠΈΡ€ΡƒΠ΅Ρ‚Π΅ Π²ΠΈΡ€Ρ‚ΡƒΠ°Π»ΡŒΠ½ΠΎΠ΅ ΠΎΠΊΡ€ΡƒΠΆΠ΅Π½ΠΈΠ΅, Π½Π°ΠΏΡ€ΠΈΠΌΠ΅Ρ€ Ρ‚Π°ΠΊ:
    
    //// tab | Linux, macOS
    
    <div class="termy">
    
    ```console
    $ source .venv/bin/activate
    ```
    
    </div>
    
    ////
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Thu Dec 11 21:25:03 UTC 2025
    - 34.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/reflect/TypeResolver.java

             * type resolution are unclear and have changed across Java versions. Until there's
             * a clear specification for what annotations should mean on resolved TypeVariables
             * with modified bounds, annotation methods will throw
             * UnsupportedOperationException. Frameworks requiring annotation preservation
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Sep 23 22:30:05 UTC 2025
    - 25.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/AbstractFutureState.java

          } catch (NoClassDefFoundError fromAggregateFutureStateFallbackAtomicHelperTest) {
            /*
             * AtomicReferenceFieldUpdaterAtomicHelper should always work on the JVM. (I mean, it
             * "should" always work on Android, too, but we know of a Samsung bug there :)) However, in
             * AggregateFutureStateFallbackAtomicHelperTest, we test what happens to AggregateFuture in
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 33.2K bytes
    - Viewed (0)
  9. docs/de/docs/virtual-environments.md

                harry-3[harry v3]
            end
        end
        stone-project ~~~ azkaban-project
    ```
    
    ## Was bedeutet das Aktivieren einer virtuellen Umgebung { #what-does-activating-a-virtual-environment-mean }
    
    Wenn Sie eine virtuelle Umgebung aktivieren, zum Beispiel mit:
    
    //// tab | Linux, macOS
    
    <div class="termy">
    
    ```console
    $ source .venv/bin/activate
    ```
    
    </div>
    
    ////
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 02 17:32:56 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  10. docs/pt/docs/virtual-environments.md

                harry-3[harry v3]
            end
        end
        stone-project ~~~ azkaban-project
    ```
    
    ## O que significa ativar um ambiente virtual { #what-does-activating-a-virtual-environment-mean }
    
    Quando vocΓͺ ativa um ambiente virtual, por exemplo com:
    
    //// tab | Linux, macOS
    
    <div class="termy">
    
    ```console
    $ source .venv/bin/activate
    ```
    
    </div>
    
    ////
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 16 20:32:40 UTC 2025
    - 23.7K bytes
    - Viewed (0)
Back to top