Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 162 for ridentifier (0.07 sec)

  1. src/main/webapp/js/jquery-3.7.1.min.map

    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:07:52 UTC 2024
    - 131.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java

            crawlingConfigCache.invalidateAll();
        }
    
        /**
         * Stores a crawling configuration in the session-based storage with a unique identifier.
         * The generated session count ID combines the session ID with an incrementing counter.
         *
         * @param sessionId the session identifier
         * @param crawlingConfig the crawling configuration to store
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/Constants.java

        /** Basic authentication type identifier. */
        public static final String BASIC = "BASIC";
    
        /** Digest authentication type identifier. */
        public static final String DIGEST = "DIGEST";
    
        /** NTLM authentication type identifier. */
        public static final String NTLM = "NTLM";
    
        /** Form-based authentication type identifier. */
        public static final String FORM = "FORM";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/jquery-3.7.1.min.map

    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:07:52 UTC 2024
    - 131.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/crawlinginfo/EditForm.java

        public int crudMode;
    
        /**
         * The unique identifier of the crawling information entry being edited.
         * This is a required field for identifying which crawling info to update.
         */
        @Required
        @Size(max = 1000)
        public String id;
    
        /**
         * The session identifier of the crawling session.
         * This is a required field that identifies the specific crawling session.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  6. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/CertificateAdapters.kt

          )
    
      /**
       * ```
       * Extension ::= SEQUENCE  {
       *   extnID      OBJECT IDENTIFIER,
       *   critical    BOOLEAN DEFAULT FALSE,
       *   extnValue   OCTET STRING
       *     -- contains the DER encoding of an ASN.1 value
       *     -- corresponding to the extension type identified
       *     -- by extnID
       * }
       * ```
       */
      internal val extension: BasicDerAdapter<Extension> =
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

             * Creates a new statistics key object with the specified identifier.
             *
             * @param id the unique identifier for this object
             */
            public StatsKeyObject(final String id) {
                this.id = id;
            }
    
            /**
             * Gets the unique identifier for this statistics key object.
             *
             * @return the identifier
             */
            public String getId() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/UserService.java

            }).createPageNumberList());
    
            return userList;
        }
    
        /**
         * Retrieves a user by their unique identifier.
         * Loads the user through the authentication manager for complete user data.
         *
         * @param id the unique identifier of the user
         * @return an OptionalEntity containing the user if found
         */
        public OptionalEntity<User> getUser(final String id) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  9. okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerTest.kt

          tag = 2L,
        ) {
          derWriter.writeOctetString("Jones".encodeUtf8())
        }
    
        assertThat(buffer.readByteString()).isEqualTo("82054A6F6E6573".decodeHex())
      }
    
      @Test fun `decode object identifier without adapter`() {
        val buffer =
          Buffer()
            .write("0603883703".decodeHex())
    
        val derReader = DerReader(buffer)
    
        derReader.read("test") { header ->
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 31.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/ApiAdminDictProtwordsAction.java

        }
    
        /**
         * Retrieve a single protected words entry by ID for the specified dictionary.
         *
         * @param dictId identifier of the dictionary
         * @param id identifier of the entry
         * @return JSON response containing the entry
         */
        // GET /api/admin/dict/protwords/setting/{dictId}/{id}
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.4K bytes
    - Viewed (0)
Back to top