Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 88 for 1920 (0.02 sec)

  1. docs/pt/docs/advanced/path-operation-advanced-configuration.md

    Ele não será mostrado na documentação, mas outras ferramentas (como o Sphinx) serão capazes de utilizar o resto do texto.
    
    {* ../../docs_src/path_operation_advanced_configuration/tutorial004.py hl[19:29] *}
    
    ## Respostas Adicionais
    
    Você provavelmente já viu como declarar o `response_model` e `status_code` para uma *operação de rota*.
    
    Isso define os metadados sobre a resposta principal da *operação de rota*.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. docs/de/docs/advanced/settings.md

    ### `settings` verwenden
    
    Dann können Sie das neue `settings`-Objekt in Ihrer Anwendung verwenden:
    
    {* ../../docs_src/settings/tutorial001.py hl[18:20] *}
    
    ### Den Server ausführen
    
    Als Nächstes würden Sie den Server ausführen und die Konfigurationen als Umgebungsvariablen übergeben. Sie könnten beispielsweise `ADMIN_EMAIL` und `APP_NAME` festlegen mit:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/primitives/DoublesTest.java

      public void testJoin() {
        assertThat(Doubles.join(",", EMPTY)).isEmpty();
        assertThat(Doubles.join(",", ARRAY1)).isEqualTo("1.0");
        assertThat(Doubles.join(",", 1.0, 2.0)).isEqualTo("1.0,2.0");
        assertThat(Doubles.join("", 1.0, 2.0, 3.0)).isEqualTo("1.02.03.0");
      }
    
      public void testJoinNonTrivialDoubles() {
        assertThat(Doubles.join(",", EMPTY)).isEmpty();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 30.9K bytes
    - Viewed (0)
  4. cmd/endpoint-ellipses_test.go

    		{
    			"http://server1/data{1...32}",
    			endpointSet{
    				[]ellipses.ArgPattern{
    					[]ellipses.Pattern{
    						{
    							Prefix: "http://server1/data",
    							Suffix: "",
    							Seq:    getSequences(1, 32, 0),
    						},
    					},
    				},
    				nil,
    				[][]uint64{{16, 16}},
    			},
    			true,
    		},
    		// No host regex, just disks with two position numerics.
    		{
    			"http://server1/data{01...32}",
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  5. src/test/java/jcifs/smb1/netbios/SocketInputStreamTest.java

        @DisplayName("Zero-length message is handled correctly")
        void zeroLengthMessageHandled() throws IOException {
            // Create a zero-length message followed by a normal message
            byte[] data = new byte[] { 10, 20 };
            byte[] fullData = concat(messageHeader(0), // Zero-length message
                    messageHeader(2), data);
            InputStream in = new ByteArrayInputStream(fullData);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  6. docs/ja/docs/tutorial/extra-models.md

    {* ../../docs_src/extra_models/tutorial003.py hl[1,14,15,18,19,20,33] *}
    
    ## モデルのリスト
    
    同じように、オブジェクトのリストのレスポンスを宣言することができます。
    
    そのためには、標準のPythonの`typing.List`を使用する:
    
    {* ../../docs_src/extra_models/tutorial004.py hl[1,20] *}
    
    ## 任意の`dict`を持つレスポンス
    
    また、Pydanticモデルを使用せずに、キーと値の型だけを定義した任意の`dict`を使ってレスポンスを宣言することもできます。
    
    これは、有効なフィールド・属性名(Pydanticモデルに必要なもの)を事前に知らない場合に便利です。
    
    この場合、`typing.Dict`を使用することができます:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. docs/en/docs/advanced/settings.md

    ### Use the `settings` { #use-the-settings }
    
    Then you can use the new `settings` object in your application:
    
    {* ../../docs_src/settings/tutorial001.py hl[18:20] *}
    
    ### Run the server { #run-the-server }
    
    Next, you would run the server passing the configurations as environment variables, for example you could set an `ADMIN_EMAIL` and `APP_NAME` with:
    
    <div class="termy">
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  8. src/test/java/jcifs/ACETest.java

            }
    
            @Test
            @DisplayName("Should have correct values for standard access rights")
            void shouldHaveCorrectStandardAccessRights() {
                // Standard access rights (bits 16-20)
                assertEquals(0x00010000, ACE.DELETE, "DELETE should be 0x00010000");
                assertEquals(0x00020000, ACE.READ_CONTROL, "READ_CONTROL should be 0x00020000");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.4K bytes
    - Viewed (0)
  9. docs/es/docs/advanced/settings.md

    ### Usar el `settings`
    
    Luego puedes usar el nuevo objeto `settings` en tu aplicación:
    
    {* ../../docs_src/settings/tutorial001.py hl[18:20] *}
    
    ### Ejecutar el servidor
    
    Luego, ejecutarías el servidor pasando las configuraciones como variables de entorno, por ejemplo, podrías establecer un `ADMIN_EMAIL` y `APP_NAME` con:
    
    <div class="termy">
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. cmd/metacache-server-pool.go

    }
    
    func (z *erasureServerPools) listAndSave(ctx context.Context, o *listPathOptions) (entries metaCacheEntriesSorted, err error) {
    	// Use ID as the object name...
    	o.pool = z.getAvailablePoolIdx(ctx, minioMetaBucket, o.ID, 10<<20)
    	if o.pool < 0 {
    		// No space or similar, don't persist the listing.
    		o.pool = 0
    		o.Create = false
    		o.ID = ""
    		o.Transient = true
    		return entries, errDiskFull
    	}
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Mon May 26 07:06:43 UTC 2025
    - 12.9K bytes
    - Viewed (0)
Back to top