Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 59 for principale (0.31 sec)

  1. docs/fr/docs/alternatives.md

    C'est l'une des principales choses que **FastAPI** ajoute par-dessus, le tout basé sur les type hints Python (en utilisant Pydantic). Cela, plus le système d'injection de dépendances, les utilitaires de sécurité, la génération de schémas OpenAPI, etc.
    
    !!! note "Détails techniques"
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 27.5K bytes
    - Viewed (0)
  2. docs/fr/docs/contributing.md

    Dans le cas de l'espagnol, le code à deux lettres est `es`. Ainsi, le répertoire des traductions espagnoles se trouve à l'adresse `docs/es/`.
    
    !!! tip
        La langue principale ("officielle") est l'anglais, qui se trouve à l'adresse "docs/en/".
    
    Maintenant, lancez le serveur en live pour les documents en espagnol :
    
    <div class="termy">
    
    ```console
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Jul 27 18:51:07 GMT 2023
    - 16.3K bytes
    - Viewed (0)
  3. docs/fr/docs/async.md

    Mais toutes ces fonctionnalités d'utilisation de code asynchrone avec `async` et `await` sont souvent résumées comme l'utilisation des *coroutines*. On peut comparer cela à la principale fonctionnalité clé de Go, les "Goroutines".
    
    ## Conclusion
    
    Reprenons la phrase du début de la page :
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sun Mar 31 23:52:53 GMT 2024
    - 24K bytes
    - Viewed (0)
  4. docs/pt/docs/deployment/docker.md

    Um contêiner está rodando enquanto o **processo principal** (comando ou programa) estiver rodando.
    
    Um contêiner normalmente tem um **único processo**, mas também é possível iniciar sub-processos a partir do processo principal, e dessa forma você terá **vários processos** no mesmo contêiner.
    
    Mas não é possível ter um contêiner rodando sem **pelo menos um processo rodando**. Se o processo principal parar, o contêiner também para.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 37.4K bytes
    - Viewed (0)
  5. docs/pt/docs/alternatives.md

    É bem acoplado com banco de dados relacional (como MySQL ou PostgreSQL), então, tendo um banco de dados NoSQL (como Couchbase, MongoDB, Cassandra etc) como a principal ferramenta de armazenamento não é muito fácil.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 25.5K bytes
    - Viewed (0)
  6. src/test/java/jcifs/tests/KerberosTest.java

        }
    
    
        /**
         * @param principal
         * @return
         * @throws RealmException
         */
        protected static PrincipalName convertPrincipal ( KerberosPrincipal principal ) throws RealmException {
            PrincipalName principalName = new PrincipalName(
                principal.getName() + PrincipalName.NAME_REALM_SEPARATOR + principal.getRealm(),
                PrincipalName.KRB_NT_PRINCIPAL);
            return principalName;
        }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Mar 01 09:46:04 GMT 2020
    - 11.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/PermissionHelper.java

                            final UserPrincipal principal = acl.principal();
                            if (logger.isDebugEnabled()) {
                                logger.debug("Principal: [{}] {}", principal.getClass().getName(), principal);
                            }
                            if (principal instanceof final GroupPrincipal groupPrincipal) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

                // client/caller principal
                final SpnegoPrincipal principal;
                try {
                    principal = getAuthenticator().authenticate(request, spnegoResponse);
                    if (logger.isDebugEnabled()) {
                        logger.debug("principal: {}", principal);
                    }
                } catch (final Exception e) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/Kerb5Authenticator.java

        }
    
    
        @Override
        public String getUserDomain () {
            if ( this.realm == null && this.getSubject() != null ) {
                Set<Principal> pr = this.getSubject().getPrincipals();
                for ( Iterator<Principal> ite = pr.iterator(); ite.hasNext(); ) {
                    try {
                        KerberosPrincipal entry = (KerberosPrincipal) ite.next();
                        return entry.getRealm();
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 13K bytes
    - Viewed (0)
  10. cmd/bucket-policy-handlers_test.go

    bucketPolicyTemplate := `{"Version":"2012-10-17","Statement":[{"Sid":"","Effect":"Allow","Principal":{"AWS":["*"]},"Action":["s3:GetBucketLocation","s3:ListBucket"],"Resource":["arn:aws:s3:::%s"]},{"Sid":"","Effect":"Allow","Principal":{"AWS":["*"]},"Action":["s3:GetObject"],"Resource":["arn:aws:s3:::%s/this*"]}]}`
    
    	bucketPolicyTemplateWithoutVersion := `{"Version":"","Statement":[{"Sid":"","Effect":"Allow","Principal":{"AWS":["*"]},"Action":["s3:GetBucketLocation","s3:ListBucket"],"Resource":["...
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 32.7K bytes
    - Viewed (0)
Back to top