Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 120 for 28 (0.03 sec)

  1. docs/en/docs/img/deployment/concepts/process-ram.drawio

                        <mxGeometry x="840" y="660" width="240" height="100" as="geometry"/>
                    </mxCell>
                    <mxCell id="28" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;endArrow=none;endFill=0;strokeWidth=3;" parent="1" source="16" target="27" edge="1">
                        <mxGeometry relative="1" as="geometry"/>
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 10K bytes
    - Viewed (0)
  2. cmd/apierrorcode_string.go

    	_ = x[ErrInvalidRequestBody-23]
    	_ = x[ErrInvalidCopySource-24]
    	_ = x[ErrInvalidMetadataDirective-25]
    	_ = x[ErrInvalidCopyDest-26]
    	_ = x[ErrInvalidPolicyDocument-27]
    	_ = x[ErrInvalidObjectState-28]
    	_ = x[ErrMalformedXML-29]
    	_ = x[ErrMissingContentLength-30]
    	_ = x[ErrMissingContentMD5-31]
    	_ = x[ErrMissingRequestBodyError-32]
    	_ = x[ErrMissingSecurityHeader-33]
    	_ = x[ErrNoSuchBucket-34]
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java

        public SmbComTransaction nextElement () {
            if ( this.isPrimary ) {
                this.isPrimary = false;
    
                // primarySetupOffset
                // SMB_COM_TRANSACTION: 61 = 32 SMB header + 1 (word count) + 28 (fixed words)
                // SMB_COM_NT_TRANSACTION: 69 = 32 SMB header + 1 (word count) + 38 (fixed words)
                this.parameterOffset = this.primarySetupOffset;
    
                // 2* setupCount
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun May 17 13:43:42 UTC 2020
    - 13.2K bytes
    - Viewed (0)
  4. docs/ru/docs/tutorial/body-nested-models.md

    Например, так как в модели `Image` у нас есть поле `url`, то мы можем объявить его как тип `HttpUrl` из модуля Pydantic вместо типа `str`:
    
    //// tab | Python 3.10+
    
    ```Python hl_lines="2  8"
    {!> ../../docs_src/body_nested_models/tutorial005_py310.py!}
    ```
    
    ////
    
    //// tab | Python 3.9+
    
    ```Python hl_lines="4  10"
    {!> ../../docs_src/body_nested_models/tutorial005_py39.py!}
    ```
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/body-nested-models.md

    For example, as in the `Image` model we have a `url` field, we can declare it to be an instance of Pydantic's `HttpUrl` instead of a `str`:
    
    //// tab | Python 3.10+
    
    ```Python hl_lines="2  8"
    {!> ../../docs_src/body_nested_models/tutorial005_py310.py!}
    ```
    
    ////
    
    //// tab | Python 3.9+
    
    ```Python hl_lines="4  10"
    {!> ../../docs_src/body_nested_models/tutorial005_py39.py!}
    ```
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. README.md

    apply fixes to bugs or security vulnerabilities:
    
    *   Clone the TensorFlow repo and switch to the corresponding branch for your
        desired TensorFlow version, for example, branch `r2.8` for version 2.8.
    *   Apply (that is, cherry-pick) the desired changes and resolve any code
        conflicts.
    *   Run TensorFlow tests and ensure they pass.
    *   [Build](https://www.tensorflow.org/install/source) the TensorFlow pip
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Thu Oct 05 15:00:10 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  7. docs/zh/docs/tutorial/body-multiple-params.md

    ```
    
    ////
    
    //// tab | Python 3.9+
    
    ```Python hl_lines="27"
    {!> ../../docs_src/body_multiple_params/tutorial004_an_py39.py!}
    ```
    
    ////
    
    //// tab | Python 3.8+
    
    ```Python hl_lines="28"
    {!> ../../docs_src/body_multiple_params/tutorial004_an.py!}
    ```
    
    ////
    
    //// tab | Python 3.10+ non-Annotated
    
    /// tip
    
    尽可能选择使用 `Annotated` 的版本。
    
    ///
    
    ```Python hl_lines="25"
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. ci/official/containers/linux_arm64/builder.devtoolset/stringop_trunc.patch

    -#  define __STRING2_SMALL_GET32(src, idx) \
    -     (((((const unsigned char *) (const char *) (src))[idx + 3] << 8	      \
    -	| ((const unsigned char *) (const char *) (src))[idx + 2]) << 8	      \
    -       | ((const unsigned char *) (const char *) (src))[idx + 1]) << 8	      \
    -      | ((const unsigned char *) (const char *) (src))[idx])
    -# else
    -#  define __STRING2_SMALL_GET16(src, idx) \
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 42.9K bytes
    - Viewed (0)
  9. go.mod

    	github.com/gomodule/redigo v1.9.2
    	github.com/google/uuid v1.6.0
    	github.com/inconshreveable/mousetrap v1.1.0
    	github.com/json-iterator/go v1.1.12
    	github.com/klauspost/compress v1.17.10
    	github.com/klauspost/cpuid/v2 v2.2.8
    	github.com/klauspost/filepathx v1.1.1
    	github.com/klauspost/pgzip v1.2.6
    	github.com/klauspost/readahead v1.4.0
    	github.com/klauspost/reedsolomon v1.12.4
    	github.com/lib/pq v1.10.9
    	github.com/lithammer/shortuuid/v4 v4.0.0
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 22 15:30:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/cache/CacheBuilderGwtTest.java

        Integer unused1 = cache.getIfPresent(23);
        Integer unused2 = cache.getIfPresent(56);
    
        // Add two elements and invalidate them.
        cache.put(1, 4);
        cache.put(2, 8);
    
        cache.invalidateAll();
    
        assertEquals(2, stats[0]);
        assertEquals(2, stats[1]);
        assertEquals(4, stats[2]);
        assertEquals(3, stats[3]);
      }
    
      public void testPutAll() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top