Search Options

Results per page
Sort
Preferred Languages
Advance

Results 311 - 320 of 391 for proxier (0.07 sec)

  1. schema/relationship_test.go

    		References: []Reference{
    			{"Refer", "User", "UserRefer", "user_profiles", "", true},
    			{"Kind", "User", "Kind", "user_profiles", "", true},
    			{"ProfileRefer", "Profile", "ProfileR", "user_profiles", "", false},
    			{"Kind", "Profile", "Kind", "user_profiles", "", false},
    		},
    	})
    }
    
    func TestMany2ManyOverrideJoinForeignKey(t *testing.T) {
    	type Profile struct {
    		gorm.Model
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Mon Apr 15 03:20:20 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  2. docs/LICENSE

         specified in Section 2(b)(1)-(2) are not Copyright and Similar
         Rights.
    
      d. Effective Technological Measures means those measures that, in the
         absence of proper authority, may not be circumvented under laws
         fulfilling obligations under Article 11 of the WIPO Copyright
         Treaty adopted on December 20, 1996, and/or similar international
         agreements.
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon May 10 16:50:06 UTC 2021
    - 18.2K bytes
    - Viewed (0)
  3. docs/nl/docs/python-types.md

    Maar stel je voor dat je weer bezig bent met het maken van een functie, maar deze keer met type hints.
    
    Op hetzelfde moment probeer je de automatische aanvulling te activeren met `Ctrl+Spatie` en je ziet:
    
    <img src="/img/python-types/image02.png">
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  4. cmd/erasure-metadata.go

    		return 0, 0, nil
    	}
    	partOffset = offset
    	// Seek until object offset maps to a particular part offset.
    	for i, part := range fi.Parts {
    		partIndex = i
    		// Offset is smaller than size we have reached the proper part offset.
    		if partOffset < part.Size {
    			return partIndex, partOffset, nil
    		}
    		// Continue to towards the next part.
    		partOffset -= part.Size
    	}
    	internalLogIf(ctx, InvalidRange{})
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Oct 31 22:10:24 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  5. docs/pt/docs/tutorial/bigger-applications.md

    {!../../docs_src/bigger_applications/app/routers/items.py!}
    ```
    
    #### Como funcionam as importações relativas
    
    /// tip | "Dica"
    
    Se você sabe perfeitamente como funcionam as importações, continue para a próxima seção abaixo.
    
    ///
    
    Um único ponto `.`, como em:
    
    ```Python
    from .dependencies import get_token_header
    ```
    
    significaria:
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  6. docs/es/docs/index.md

    * Convertir de y a JSON automáticamente.
    * Documentar todo con OpenAPI que puede ser usado por:
        * Sistemas de documentación interactiva.
        * Sistemas de generación automática de código de cliente para muchos lenguajes.
    * Proveer directamente 2 interfaces de documentación web interactivas.
    
    ---
    
    Hasta ahora, escasamente vimos lo básico pero ya tienes una idea de cómo funciona.
    
    Intenta cambiando la línea a:
    
    ```Python
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 20 19:20:23 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. docs/pt/docs/virtual-environments.md

    ///
    
    <div class="termy">
    
    ```console
    $ echo "*" > .venv/.gitignore
    ```
    
    </div>
    
    /// details | O que esse comando significa
    
    * `echo "*"`: irá "imprimir" o texto `*` no terminal (a próxima parte muda isso um pouco)
    * `>`: qualquer coisa impressa no terminal pelo comando à esquerda de `>` não deve ser impressa, mas sim escrita no arquivo que vai à direita de `>`
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Sep 10 10:37:13 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/FluentIterable.java

       */
      public final boolean isEmpty() {
        return !getDelegate().iterator().hasNext();
      }
    
      /**
       * Returns an {@code ImmutableList} containing all of the elements from this fluent iterable in
       * proper sequence.
       *
       * <p><b>{@code Stream} equivalent:</b> {@code ImmutableList.copyOf(stream.iterator())}, or pass
       * {@link ImmutableList#toImmutableList} to {@code stream.collect()}.
       *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Sep 24 13:42:31 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  9. cmd/bucket-handlers_test.go

    		// expected Response.
    		expectedRespStatus int
    		locationResponse   []byte
    		errorResponse      APIErrorResponse
    		shouldPass         bool
    	}{
    		// Test case - 1.
    		// Tests for authenticated request and proper response.
    		{
    			bucketName:         bucketName,
    			accessKey:          credentials.AccessKey,
    			secretKey:          credentials.SecretKey,
    			expectedRespStatus: http.StatusOK,
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  10. docs/pt/docs/alternatives.md

    Dada a simplicidade do Flask, parecia uma ótima opção para construção de APIs. A próxima coisa a procurar era um "Django REST Framework" para Flask.
    
    /// check | "**FastAPI** inspirado para"
    
    Ser um microframework. Fazer ele fácil para misturar e combinar com ferramentas e partes necessárias.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 20 19:20:23 UTC 2024
    - 25.5K bytes
    - Viewed (0)
Back to top