Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 186 for token2 (0.08 sec)

  1. android/guava-tests/test/com/google/common/collect/ForwardingNavigableMapTest.java

          standardClear();
        }
    
        @Override
        public boolean isEmpty() {
          return standardIsEmpty();
        }
    
        @Override
        public SortedMap<K, V> subMap(K fromKey, K toKey) {
          return standardSubMap(fromKey, toKey);
        }
    
        @Override
        public @Nullable Entry<K, V> lowerEntry(K key) {
          return standardLowerEntry(key);
        }
    
        @Override
        public @Nullable K lowerKey(K key) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/opensearch/config/exentity/WebConfigTest.java

                    return StringUtil.EMPTY;
                }
    
                @Override
                public String getAppEncryptPropertyPattern() {
                    return ".*password|.*key|.*token|.*secret";
                }
            };
            ComponentUtil.setFessConfig(fessConfig);
            SystemHelper systemHelper = new SystemHelper() {
                @Override
                public String getProductVersion() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  3. src/main/resources/fess_label_de.properties

    labels.roleTypeIds=Rollen-IDs
    labels.scriptData=Skript
    labels.scriptResult=Ergebnis
    labels.scriptType=Ausführungsmethode
    labels.segmentation=Segmentierung
    labels.startTime=Startzeit
    labels.target=Ziel
    labels.token=Token
    labels.synonymFile=Synonymdatei
    labels.stopwordsFile=Stopwörterdatei
    labels.stemmerOverrideFile=Stemmer-Überschreibungsdatei
    labels.mappingFile=Zuordnungsdatei
    labels.protwordsFile=Protwords-Datei
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 43.5K bytes
    - Viewed (1)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/accesstoken/CreateBody.java

     */
    package org.codelibs.fess.app.web.api.admin.accesstoken;
    
    import org.codelibs.fess.app.web.admin.accesstoken.CreateForm;
    
    /**
     * Request body for creating access token via REST API.
     * Extends CreateForm to inherit validation and field definitions.
     */
    public class CreateBody extends CreateForm {
    
        /**
         * Creates a new CreateBody instance.
         */
        public CreateBody() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1013 bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.32.md

    - Promoted the `ServiceAccountTokenJTI` feature to GA, which adds a `jti` claim to issued service account tokens and embeds the `jti` claim as a `authentication.kubernetes.io/credential-id=["JTI=..."]` value in user extra info
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 14:49:49 UTC 2025
    - 412.3K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/exception/SsoProcessExceptionTest.java

        }
    
        public void test_constructor_withMessageAndCause() {
            // Test constructor with message and Exception cause
            String message = "SSO token validation error";
            Exception cause = new RuntimeException("Invalid token format");
            SsoProcessException exception = new SsoProcessException(message, cause);
    
            assertEquals(message, exception.getMessage());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java

            }
            return roleSet;
        }
    
        /**
         * Processes the access token.
         * @param request The HTTP request.
         * @param roleSet The set of roles.
         * @param isApiRequest Whether the request is an API request.
         * @return true if the access token is processed, false otherwise.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/accesstoken/admin_accesstoken_details.jsp

                                        <tr>
                                            <th><la:message
                                                    key="labels.access_token_token"/></th>
                                            <td>${f:h(token)}</td>
                                        </tr>
                                        <tr>
                                            <th><la:message key="labels.permissions"/></th>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 5.5K bytes
    - Viewed (0)
  9. 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)
  10. src/main/java/org/codelibs/fess/exception/SsoProcessException.java

     * of SSO authentication and authorization processes. It extends FessSystemException
     * to provide consistent error handling within the Fess system for SSO-related
     * processing failures such as token validation errors, communication failures
     * with SSO providers, or configuration issues.
     */
    public class SsoProcessException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
Back to top