Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 116 for hasPos (0.1 sec)

  1. src/main/java/jcifs/http/NtlmHttpFilter.java

    import jcifs.smb.SmbAuthException;
    import jcifs.smb.SmbException;
    import jcifs.smb.SmbSessionInternal;
    import jcifs.smb.SmbTransportInternal;
    
    
    /**
     * This servlet Filter can be used to negotiate password hashes with
     * MSIE clients using NTLM SSP. This is similar to <tt>Authentication:
     * BASIC</tt> but weakly encrypted and without requiring the user to re-supply
     * authentication credentials.
     * <p>
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 14.8K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/hash/HashTestUtils.java

        byte[] key = new byte[256];
        byte[] hashes = new byte[hashBytes * 256];
    
        // Hash keys of the form {}, {0}, {0,1}, {0,1,2}... up to N=255,using 256-N as the seed
        for (int i = 0; i < 256; i++) {
          key[i] = (byte) i;
          int seed = 256 - i;
          byte[] hash = hashFunction.hash(Arrays.copyOf(key, i), seed);
          System.arraycopy(hash, 0, hashes, i * hashBytes, hash.length);
        }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jul 23 14:22:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. docs/es/docs/deployment/index.md

    # Despliegue - Introducción
    
    Desplegar una aplicación hecha con **FastAPI** es relativamente fácil.
    
    ## ¿Qué significa desplegar una aplicación?
    
    **Desplegar** una aplicación significa realizar una serie de pasos para hacerla **disponible para los usuarios**.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Wed Feb 07 11:55:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. docs/pt/docs/how-to/index.md

    # Como Fazer - Exemplos Práticos
    
    Aqui você encontrará diferentes exemplos práticos ou tutoriais de "como fazer" para vários tópicos.
    
    A maioria dessas ideias será mais ou menos **independente**, e na maioria dos casos você só precisará estudá-las se elas se aplicarem diretamente ao **seu projeto**.
    
    Se algo parecer interessante e útil para o seu projeto, vá em frente e dê uma olhada. Caso contrário, você pode simplesmente ignorá-lo.
    
    /// tip
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 668 bytes
    - Viewed (0)
  5. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractor.java

                return null;
            }
    
            boolean hasDots = expression.indexOf(PROPERTY_START) >= 0;
    
            final Tokenizer tokenizer;
            if (trimRootToken && hasDots) {
                tokenizer = new Tokenizer(expression);
                tokenizer.nextPropertyName();
                if (tokenizer.getPosition() == EOF) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. docs/pt/docs/advanced/behind-a-proxy.md

    Nesses casos, você pode usar `root_path` para configurar sua aplicação.
    
    O `root_path` é um mecanismo fornecido pela especificação ASGI (que o FastAPI utiliza, através do Starlette).
    
    O `root_path` é usado para lidar com esses casos específicos.
    
    E também é usado internamente ao montar sub-aplicações.
    
    ## Proxy com um prefixo de caminho removido
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 27 15:28:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/http/NtlmSsp.java

    import jcifs.smb.NtlmPasswordAuthentication;
    
    
    /**
     * This class is used internally by <tt>NtlmHttpFilter</tt>,
     * <tt>NtlmServlet</tt>, and <tt>NetworkExplorer</tt> to negotiate password
     * hashes via NTLM SSP with MSIE. It might also be used directly by servlet
     * containers to incorporate similar functionality.
     * <p>
     * How NTLMSSP is used in conjunction with HTTP and MSIE clients is
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.7K bytes
    - Viewed (0)
  8. docs/pt/docs/how-to/conditional-openapi.md

    * Certifique-se de ter modelos Pydantic bem definidos para seus corpos de solicitação e respostas.
    * Configure quaisquer permissões e funções necessárias usando dependências.
    * Nunca armazene senhas em texto simples, apenas hashes de senha.
    * Implemente e use ferramentas criptográficas bem conhecidas, como tokens JWT e Passlib, etc.
    * Adicione controles de permissão mais granulares com escopos OAuth2 quando necessário.
    * ...etc.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. docs/pt/docs/how-to/configure-swagger-ui.md

    <img src="/img/tutorial/extending-openapi/image04.png">
    
    ## Alterar parâmetros de UI padrão do Swagger
    
    O FastAPI inclui alguns parâmetros de configuração padrão apropriados para a maioria dos casos de uso.
    
    Inclui estas configurações padrão:
    
    ```Python
    {!../../fastapi/openapi/docs.py[ln:7-23]!}
    ```
    
    Você pode substituir qualquer um deles definindo um valor diferente no argumento `swagger_ui_parameters`.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. ci/official/installer_wheel.sh

      # Repack the wheel. When repacking, the wheel would be automatically tagged
      # with the new tag we provided in ${whl_tag}. Repacking also regnerates the
      # RECORD file which contains hashes of all included files.
      python3 -m wheel pack "${pkg_name}"
    done
    
    # Switch back to the original working directory. This is needed to ensure that
    # cleanup steps at the end of the script works as expected.
    popd
    
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Thu Jul 25 17:28:01 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top