Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 160 for Identifier (0.04 sec)

  1. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

        /** Type identifier for character mapping dictionaries. */
        private static final String MAPPING = "mapping";
    
        /** List of character mapping items loaded from the mapping file. */
        List<CharMappingItem> mappingItemList;
    
        /**
         * Constructs a new CharMappingFile instance.
         *
         * @param id the unique identifier for this mapping file
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/EditForm.java

        }
    
        /**
         * The unique identifier of the protected words dictionary entry being edited.
         * This is a required field for identifying which dictionary entry to update.
         */
        @Required
        @ValidateTypeFailure
        public Long id;
    
        /**
         * Returns a display-friendly identifier combining the dictionary ID and entry ID.
         * This method creates a composite identifier for UI display purposes.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/go/GoForm.java

     *
     */
    public class GoForm {
    
        /**
         * Default constructor for GoForm.
         */
        public GoForm() {
            super();
        }
    
        /**
         * Document identifier for the target document to redirect to.
         * This is required and limited to 100 characters.
         */
        @Required
        @Size(max = 100)
        public String docId;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/script/ScriptEngineFactoryTest.java

            private final String identifier;
    
            public TestScriptEngine() {
                this("default");
            }
    
            public TestScriptEngine(String identifier) {
                this.identifier = identifier;
            }
    
            @Override
            public Object evaluate(String template, Map<String, Object> paramMap) {
                return "TestEngine[" + identifier + "]: " + template;
            }
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  5. 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)
  6. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

                return userCode;
            }
            return null;
        }
    
        /**
         * Generates a new unique identifier for user tracking.
         * Creates a UUID and removes hyphens to create a clean identifier string.
         *
         * @return a new unique identifier string
         */
        protected String getId() {
            return UUID.randomUUID().toString().replace("-", StringUtil.EMPTY);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  7. 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)
  8. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/EditForm.java

        }
    
        /**
         * The unique identifier of the Kuromoji dictionary entry being edited.
         * This is a required field for identifying which dictionary entry to update.
         */
        @Required
        @ValidateTypeFailure
        public Long id;
    
        /**
         * Returns a display-friendly identifier combining the dictionary ID and entry ID.
         * This method creates a composite identifier for UI display purposes.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K 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/admin/dict/stemmeroverride/EditForm.java

        }
    
        /**
         * The unique identifier of the stemmer override dictionary entry being edited.
         * This is a required field for identifying which dictionary entry to update.
         */
        @Required
        @ValidateTypeFailure
        public Long id;
    
        /**
         * Returns a display-friendly identifier combining the dictionary ID and entry ID.
         * This method creates a composite identifier for UI display purposes.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
Back to top