Search Options

Results per page
Sort
Preferred Languages
Advance

Results 831 - 840 of 1,904 for paras (0.06 sec)

  1. docs/pt/docs/advanced/response-headers.md

    Se você declarou um `response_model`, ele ainda será utilizado para filtrar e converter o objeto que você retornou.
    
    **FastAPI** usará essa resposta *temporária* para extrair os cabeçalhos (cookies e código de status também) e os colocará na resposta final que contém o valor que você retornou, filtrado por qualquer `response_model`.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Wed Oct 16 07:44:45 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. compat/maven-settings-builder/src/main/java/org/apache/maven/settings/building/StringSettingsSource.java

         *
         * @param settings The settings' string representation, may be empty or {@code null}.
         */
        public StringSettingsSource(CharSequence settings) {
            this(settings, null);
        }
    
        /**
         * Creates a new settings source backed by the specified string.
         *
         * @param settings The settings' string representation, may be empty or {@code null}.
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. docs/pt/docs/advanced/custom-response.md

    3. Essa declaração `yield from` informa a função para iterar sobre essa coisa nomeada de `file_like`. E então, para cada parte iterada, fornece essa parte como se viesse dessa função geradora (`iterfile`).
    
        Então, é uma função geradora que transfere o trabalho de "geração" para alguma outra coisa interna.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Oct 29 11:47:10 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/hash/SipHashFunction.java

      // Two 64-bit keys (represent a single 128-bit key).
      private final long k0;
      private final long k1;
    
      /**
       * @param c the number of compression rounds (must be positive)
       * @param d the number of finalization rounds (must be positive)
       * @param k0 the first half of the key
       * @param k1 the second half of the key
       */
      SipHashFunction(int c, int d, long k0, long k1) {
        checkArgument(
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 5.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * of <tt>FILE_SHARE_READ</tt>, <tt>FILE_SHARE_WRITE</tt>, and
     * <tt>FILE_SHARE_DELETE</tt> logically OR'd together.
     *
     * @param   context A URL string
     * @param   name A path string relative to the <code>context</code> paremeter
     * @param   auth The credentials the client should use for authentication
     * @param   shareAccess Specifies what access other clients have while this file is open.
     * @throws  MalformedURLException
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/collect/testing/google/UnmodifiableCollectionTests.java

       *       UnsupportedOperationException when those mutators
       * </ol>
       *
       * @param multimap the presumed-immutable multimap
       * @param sampleKey a key of the same type as that contained by {@code multimap}. {@code multimap}
       *     may or may not have {@code sampleKey} as a key.
       * @param sampleValue a key of the same type as that contained by {@code multimap}. {@code
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. docs/pt/docs/advanced/index.md

    O [Tutorial - Guia de Usuário](../tutorial/index.md){.internal-link target=_blank} deve ser o suficiente para dar a você um tour por todos os principais recursos do **FastAPI**.
    
    Na próxima seção você verá outras opções, configurações, e recursos adicionais.
    
    /// tip | "Dica"
    
    As próximas seções **não são necessáriamente "avançadas"**
    
    E é possível que para seu caso de uso, a solução esteja em uma delas.
    
    ///
    
    ## Leia o Tutorial primeiro
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. guava-tests/benchmark/com/google/common/io/BaseEncodingBenchmark.java

        BASE16(BaseEncoding.base16());
    
        final BaseEncoding encoding;
    
        EncodingOption(BaseEncoding encoding) {
          this.encoding = encoding;
        }
      }
    
      @Param EncodingOption encoding;
    
      @Param({"10", "100", "10000"})
      int n;
    
      private final byte[][] encodingInputs = new byte[INPUTS_COUNT][];
      private final String[] decodingInputs = new String[INPUTS_COUNT];
    
      @BeforeExperiment
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 3.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformation.java

    import jcifs.util.Hexdump;
    
    
    /**
     * 
     */
    public class Trans2QueryFSInformation extends SmbComTransaction {
    
        private int informationLevel;
    
    
        /**
         * 
         * @param config
         * @param informationLevel
         */
        public Trans2QueryFSInformation ( Configuration config, int informationLevel ) {
            super(config, SMB_COM_TRANSACTION2, TRANS2_QUERY_FS_INFORMATION);
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/security/MessageDigestUtil.java

                throw new NoSuchAlgorithmRuntimeException(e);
            }
        }
    
        /**
         * 指定されたアルゴリズムでテキストをハッシュ化して文字列にします。
         *
         * @param algorithm
         *            アルゴリズム。{@literal null}や空文字列であってはいけません
         * @param text
         *            ハッシュ化する文字列
         * @return ハッシュ化された文字列
         */
        public static String digest(final String algorithm, final String text) {
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top