Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 132 for principe (0.07 sec)

  1. src/test/java/org/codelibs/fess/cors/CorsHandlerTest.java

                }
    
                @Override
                public boolean isUserInRole(String role) {
                    return false;
                }
    
                @Override
                public java.security.Principal getUserPrincipal() {
                    return null;
                }
    
                @Override
                public String getRequestedSessionId() {
                    return null;
                }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 25.9K bytes
    - Viewed (0)
  2. docs/es/docs/advanced/security/oauth2-scopes.md

    Esos detalles son específicos de la implementación.
    
    Para OAuth2 son solo strings.
    
    ///
    
    ## Vista global
    
    Primero, echemos un vistazo rápido a las partes que cambian desde los ejemplos en el **Tutorial - User Guide** principal para [OAuth2 con Password (y hashing), Bearer con tokens JWT](../../tutorial/security/oauth2-jwt.md){.internal-link target=_blank}. Ahora usando scopes de OAuth2:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  3. cmd/sftp-server.go

    	}
    
    	cert, ok := clientKey.(*ssh.Certificate)
    	if !ok {
    		return errSftpPublicKeyWithoutCert
    	}
    
    	// ssh.CheckCert called by ssh.Authenticate accepts certificates
    	// with empty principles list so we block those in here.
    	if len(cert.ValidPrincipals) == 0 {
    		return errSftpCertWithoutPrincipals
    	}
    
    	// Verify that certificate provided by user is issued by trusted CA,
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 16.5K bytes
    - Viewed (0)
  4. docs/es/docs/help-fastapi.md

    * [Revisar Pull Requests](#review-pull-requests){.internal-link target=_blank} (ver la sección arriba).
    
    Esas dos tareas son las que **consumen más tiempo**. Ese es el trabajo principal de mantener FastAPI.
    
    Si puedes ayudarme con eso, **me estás ayudando a mantener FastAPI** y asegurando que siga **avanzando más rápido y mejor**. 🚀
    
    ## Únete al chat
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/filter/WebApiFilterTest.java

                }
    
                @Override
                public boolean isUserInRole(String role) {
                    return false;
                }
    
                @Override
                public java.security.Principal getUserPrincipal() {
                    return null;
                }
    
                @Override
                public String getRequestedSessionId() {
                    return null;
                }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.2K bytes
    - Viewed (0)
  6. docs/pt/docs/deployment/https.md

    ## HTTPS para Desenvolvedores
    
    Aqui está um exemplo de como uma API HTTPS poderia ser estruturada, passo a passo, com foco principal nas ideias relevantes para desenvolvedores.
    
    ### Nome do domínio
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun May 11 13:37:26 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/api/WebApiManagerTest.java

                return null;
            }
    
            @Override
            public boolean isUserInRole(String role) {
                return false;
            }
    
            @Override
            public java.security.Principal getUserPrincipal() {
                return null;
            }
    
            @Override
            public String getRequestedSessionId() {
                return null;
            }
    
            @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/entity/SearchRequestParamsTest.java

            }
    
            @Override
            public boolean isUserInRole(String role) {
                throw new UnsupportedOperationException();
            }
    
            @Override
            public java.security.Principal getUserPrincipal() {
                throw new UnsupportedOperationException();
            }
    
            @Override
            public String getRequestedSessionId() {
                throw new UnsupportedOperationException();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.2K bytes
    - Viewed (0)
  9. docs/es/docs/tutorial/sql-databases.md

    Luego usamos `hero_db.sqlmodel_update(hero_data)` para actualizar el `hero_db` con los datos de `hero_data`.
    
    {* ../../docs_src/sql_databases/tutorial002_an_py310.py ln[83:93] hl[83:84,88:89] *}
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. cmd/bucket-handlers_test.go

    	policyBytes := fmt.Appendf(nil, `{"Id": "Policy1637752602639", "Version": "2012-10-17", "Statement": [{"Sid": "Stmt1637752600730", "Action": "s3:DeleteObject", "Effect": "Allow", "Resource": "arn:aws:s3:::%s/public/*", "Principal": "*"}]}`, bucketName)
    	rec := httptest.NewRecorder()
    	req, err := newTestSignedRequestV4(http.MethodPut, getPutPolicyURL("", bucketName), int64(len(policyBytes)), bytes.NewReader(policyBytes),
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 39.8K bytes
    - Viewed (0)
Back to top