Search Options

Results per page
Sort
Preferred Languages
Advance

Results 251 - 260 of 528 for token3 (0.04 sec)

  1. docs/pt/docs/project-generation.md

        - πŸ¦‡ Suporte para modo escuro.
    - πŸ‹ [Docker Compose](https://www.docker.com) para desenvolvimento e produΓ§Γ£o.
    - πŸ”’ _Hash_ seguro de senhas por padrΓ£o.
    - πŸ”‘ AutenticaΓ§Γ£o por token JWT.
    - πŸ“« RecuperaΓ§Γ£o de senhas baseada em email.
    - βœ… Testes com [Pytest](https://pytest.org).
    - πŸ“ž [Traefik](https://traefik.io) como proxy reverso / balanceador de carga.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Jul 21 09:57:31 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  2. cmd/admin-heal-ops.go

    		}
    	}
    }
    
    // getHealSequenceByToken - Retrieve a heal sequence by token. The second
    // argument returns if a heal sequence actually exists.
    func (ahs *allHealState) getHealSequenceByToken(token string) (h *healSequence, exists bool) {
    	ahs.RLock()
    	defer ahs.RUnlock()
    	for _, healSeq := range ahs.healSeqMap {
    		if healSeq.clientToken == token {
    			return healSeq, true
    		}
    	}
    	return nil, false
    }
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/Kerb5Context.java

            }
            throw new SmbException("ExtendedGSSContext is not implemented by GSSContext");
        }
    
        @Override
        public byte[] initSecContext(byte[] token, int off, int len) throws SmbException {
            try {
                return this.gssContext.initSecContext(token, off, len);
            } catch (GSSException e) {
                throw new SmbAuthException("GSSAPI mechanism failed", e);
            }
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 13.5K bytes
    - Viewed (1)
  4. src/main/resources/fess_label.properties

    labels.boost_document_rule_boost_expr=Boost Expression
    labels.boost_document_rule_sort_order=Sort Order
    labels.access_token_configuration=Access Token
    labels.access_token_title_details=Access Token
    labels.access_token_list_name=Name
    labels.access_token_name=Name
    labels.access_token_token=Token
    labels.access_token_expires=Expires
    labels.access_token_parameter_name=Parameter Name
    labels.access_token_updated_time=Created Date
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 28 08:40:50 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  5. src/main/resources/fess_label_pt_BR.properties

    labels.boost_document_rule_boost_expr=ExpressΓ£o de impulso
    labels.boost_document_rule_sort_order=Ordem de classificaΓ§Γ£o
    labels.access_token_configuration=Token de acesso
    labels.access_token_title_details=Token de acesso
    labels.access_token_list_name=Nome
    labels.access_token_name=Nome
    labels.access_token_token=Token
    labels.access_token_expires=Expira
    labels.access_token_parameter_name=Nome do parΓ’metro
    labels.access_token_updated_time=Data de criaΓ§Γ£o
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.1K bytes
    - Viewed (0)
  6. cmd/s3-zip-handlers.go

    		listObjectsInfo ListObjectsV2Info
    	)
    
    	// Always set this
    	listObjectsInfo.ContinuationToken = token
    
    	// Open and iterate through the files in the archive.
    	for _, file := range files {
    		objName := zipObjInfo.Name + archiveSeparator + file.Name
    		if objName <= startAfter || objName <= token {
    			continue
    		}
    		if strings.HasPrefix(objName, prefix) {
    			if count == maxKeys {
    				isTruncated = true
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  7. docs/de/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md

    ///
    
    /// info
    
    In diesem Beispiel verwenden wir zwei erfundene benutzerdefinierte Header `X-Key` und `X-Token`.
    
    Aber in realen FΓ€llen wΓΌrden Sie bei der Implementierung von Sicherheit mehr Vorteile durch die Verwendung der integrierten [Sicherheits-Werkzeuge (siehe nΓ€chstes Kapitel)](../security/index.md){.internal-link target=_blank} erzielen.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/exception/SsoLoginException.java

    /**
     * Exception thrown when SSO (Single Sign-On) login operations fail.
     *
     * This exception is used to indicate various SSO authentication failures
     * including configuration errors, authentication token validation failures,
     * communication issues with SSO providers, and other SSO-related problems.
     */
    public class SsoLoginException extends FessSystemException {
    
        /** Serial version UID for serialization compatibility. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  9. cmd/api-errors.go

    	},
    	ErrInvalidToken: {
    		Code:           "InvalidTokenId",
    		Description:    "The security token included in the request is invalid",
    		HTTPStatusCode: http.StatusForbidden,
    	},
    	ErrNoTokenRevokeType: {
    		Code:           "InvalidArgument",
    		Description:    "No token revoke type specified and one could not be inferred from the request",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Apr 16 07:34:24 UTC 2025
    - 93K bytes
    - Viewed (1)
  10. docs/em/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md

    βš™οΈ πŸ‘‰ `dependencies` *➑ πŸ› οΈ πŸ‘¨β€πŸŽ¨* πŸ‘† πŸ’ͺ βš’ πŸ’­ πŸ‘« πŸ› οΈ βͺ ❎ πŸ‘¨β€πŸŽ¨/🏭 ❌.
    
    ⚫️ πŸ’ͺ β„Ή ❎ 😨 πŸ†• πŸ‘©β€πŸ’» πŸ‘ˆ πŸ‘€ β™» πŸ”’ πŸ‘† πŸ“Ÿ &amp; πŸ’ͺ πŸ’­ ⚫️ πŸ™ƒ.
    
    ///
    
    /// info
    
    πŸ‘‰ πŸ–Ό πŸ‘₯ βš™οΈ πŸ’­ πŸ›ƒ 🎚 `X-Key` &amp; `X-Token`.
    
    βœ‹οΈ 🎰 πŸ’Ό, πŸ•β” πŸ› οΈ πŸ’‚β€β™‚, πŸ‘† πŸ”œ 🀚 πŸŒ– πŸ’° βšͺ️➑️ βš™οΈ πŸ› οΈ [πŸ’‚β€β™‚ πŸš™ (⏭ πŸ“ƒ)](../security/index.md){.internal-link target=_blank}.
    
    ///
    
    ## πŸ”— ❌ &amp; πŸ“¨ πŸ’²
    
    πŸ‘† πŸ’ͺ βš™οΈ 🎏 πŸ”— *πŸ”’* πŸ‘† βš™οΈ πŸ›Ž.
    
    ### πŸ”— πŸ“„
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top