Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 250 of 368 for 14 (0.03 sec)

  1. docs/pt/docs/tutorial/request_files.md

    ## Parâmetros de arquivo com `UploadFile`
    
    Defina um parâmetro de arquivo com o tipo `UploadFile`
    
    //// tab | Python 3.9+
    
    ```Python hl_lines="14"
    {!> ../../docs_src/request_files/tutorial001_an_py39.py!}
    ```
    
    ////
    
    //// tab | Python 3.8+
    
    ```Python hl_lines="13"
    {!> ../../docs_src/request_files/tutorial001_an.py!}
    ```
    
    ////
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. docs/ru/docs/tutorial/query-params-str-validations.md

    ```
    
    ////
    
    Добавить описание, используя параметр `description`:
    
    //// tab | Python 3.10+
    
    ```Python hl_lines="14"
    {!> ../../docs_src/query_params_str_validations/tutorial008_an_py310.py!}
    ```
    
    ////
    
    //// tab | Python 3.9+
    
    ```Python hl_lines="14"
    {!> ../../docs_src/query_params_str_validations/tutorial008_an_py39.py!}
    ```
    
    ////
    
    //// tab | Python 3.8+
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/cache/CacheBuilderGwtTest.java

        fakeTicker.advance(1001, MILLISECONDS);
    
        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]);
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/avx512enc/avx512dq.s

    	VRANGEPD $14, Z23, Z27, K1, Z2                     // 62b3a54150d70e
    	VRANGEPD $14, Z9, Z27, K1, Z2                      // 62d3a54150d10e
    	VRANGEPD $14, (R14), Z27, K1, Z2                   // 62d3a54150160e
    	VRANGEPD $14, -7(DI)(R8*8), Z27, K1, Z2            // 62b3a5415094c7f9ffffff0e
    	VRANGEPD $14, Z23, Z25, K1, Z2                     // 62b3b54150d70e
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue May 22 14:57:15 UTC 2018
    - 194.8K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/operand_test.go

    	{"$shifts<>(SB)", "$shifts<>(SB)"},
    	{"$~(1<<63)", "$9223372036854775807"},
    	{"$~0x3F", "$-64"},
    	{"$~15", "$-16"},
    	{"(((8)&0xf)*4)(SP)", "32(SP)"},
    	{"(((8-14)&0xf)*4)(SP)", "40(SP)"},
    	{"(6+8)(AX)", "14(AX)"},
    	{"(8*4)(BP)", "32(BP)"},
    	{"(AX)", "(AX)"},
    	{"(AX)(CX*8)", "(AX)(CX*8)"},
    	{"(BP)(CX*4)", "(BP)(CX*4)"},
    	{"(BP)(DX*4)", "(BP)(DX*4)"},
    	{"(BP)(R8*4)", "(BP)(R8*4)"},
    	{"(BX)", "(BX)"},
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  6. internal/dsync/lock-args_gen.go

    				return
    			}
    		}
    	}
    	o = bts
    	return
    }
    
    // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
    func (z *LockArgs) Msgsize() (s int) {
    	s = 1 + 4 + msgp.StringPrefixSize + len(z.UID) + 10 + msgp.ArrayHeaderSize
    	for za0001 := range z.Resources {
    		s += msgp.StringPrefixSize + len(z.Resources[za0001])
    	}
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Jul 24 10:24:01 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. cmd/metacache_gen.go

    				return
    			}
    		}
    	}
    	o = bts
    	return
    }
    
    // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
    func (z *metacache) Msgsize() (s int) {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Nov 08 18:26:08 UTC 2021
    - 10K bytes
    - Viewed (0)
  8. docs/distributed/README.md

    ```sh
    export MINIO_ROOT_USER=<ACCESS_KEY>
    export MINIO_ROOT_PASSWORD=<SECRET_KEY>
    minio server http://host{1...n}/export{1...m} http://host{o...z}/export{1...m}
    ```
    
    For example:
    
    ```
    minio server http://host{1...4}/export{1...16} http://host{5...12}/export{1...16}
    ```
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/collect/ImmutableMapTest.java

                map(1, 1, 2, 2, 3, 3))
            .addEqualityGroup(
                ImmutableMap.of(1, 4, 2, 2, 3, 3),
                ImmutableMap.builder().put(1, 4).put(2, 2).put(3, 3).buildOrThrow(),
                ImmutableMap.ofEntries(entry(1, 4), entry(2, 2), entry(3, 3)),
                map(1, 4, 2, 2, 3, 3))
            .addEqualityGroup(
                ImmutableMap.of(1, 1, 2, 4, 3, 3),
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 36.6K bytes
    - Viewed (0)
  10. manifests/addons/dashboards/lib/output.json

                      ]
                   },
                   "gridPos": {
                      "h": 8,
                      "w": 8,
                      "x": 8,
                      "y": 0
                   },
                   "id": 14,
                   "interval": "1m",
                   "options": {
                      "legend": {
                         "calcs": [
                            "lastNotNull",
                            "max"
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 25.2K bytes
    - Viewed (0)
Back to top