Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 130 for principe (0.14 sec)

  1. src/main/java/org/codelibs/fess/ldap/LdapManager.java

         * @param providerUrl The provider URL.
         * @param principal The principal.
         * @param credntials The credentials.
         * @return The environment for LDAP connection.
         */
        protected Hashtable<String, String> createEnvironment(final String initialContextFactory, final String securityAuthentication,
                final String providerUrl, final String principal, final String credntials) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 82K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. README.md

    } catch (ClassNotFoundRuntimeException e) {
        // Handle the wrapped exception
        logger.error("Class not found: " + className, e);
    }
    ```
    
    ## 🏗️ Architecture & Design Patterns
    
    ### Core Design Principles
    CoreLib follows a **utility-class pattern** where most functionality is exposed through static methods:
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sun Aug 31 02:56:02 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. docs/es/docs/virtual-environments.md

    Lo que normalmente hago es crear un directorio llamado `code` dentro de mi directorio de usuario.
    
    Y dentro de eso creo un directorio por proyecto.
    
    <div class="termy">
    
    ```console
    // Ve al directorio principal
    $ cd
    // Crea un directorio para todos tus proyectos de código
    $ mkdir code
    // Entra en ese directorio de código
    $ cd code
    // Crea un directorio para este proyecto
    $ mkdir awesome-project
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 22.2K bytes
    - Viewed (0)
Back to top