Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 162 for ridentifier (0.57 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/main/java/org/codelibs/fess/helper/ProcessHelper.java

                }
            }
        }
    
        /**
         * Starts a new process with the given session ID and command list.
         * Uses default buffer size and no output callback.
         *
         * @param sessionId unique identifier for the process session
         * @param cmdList list of command and arguments to execute
         * @param pbCall callback to configure the ProcessBuilder
         * @return JobProcess representing the started process
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/job/ExecJob.java

        private static final Logger logger = LogManager.getLogger(ExecJob.class);
    
        /** The job executor responsible for running this job */
        protected JobExecutor jobExecutor;
    
        /** Unique session identifier for this job execution */
        protected String sessionId;
    
        /** Flag indicating whether to use local Fesen instance */
        protected boolean useLocalFesen = true;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/service/RelatedQueryService.java

            return relatedQueryList;
        }
    
        /**
         * Retrieves a specific related query by its unique identifier.
         *
         * @param id the unique identifier of the related query to retrieve
         * @return an OptionalEntity containing the RelatedQuery if found, or empty if not found
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/dict/DictionaryFile.java

     */
    public abstract class DictionaryFile<T extends DictionaryItem> {
        /** The dictionary manager responsible for this file. */
        protected DictionaryManager dictionaryManager;
    
        /** The unique identifier for this dictionary file. */
        protected String id;
    
        /** The file path of this dictionary. */
        protected String path;
    
        /** The timestamp when this dictionary file was created or last modified. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/dict/DictionaryItem.java

     *
     */
    public abstract class DictionaryItem {
        /** The unique identifier for this dictionary item */
        protected long id;
    
        /**
         * Default constructor for DictionaryItem.
         * Creates a new dictionary item with default values.
         */
        public DictionaryItem() {
            // Default constructor
        }
    
        /**
         * Gets the unique identifier for this dictionary item.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/eventbus/SubscriberRegistry.java

              MethodIdentifier ident = new MethodIdentifier(method);
              if (!identifiers.containsKey(ident)) {
                identifiers.put(ident, method);
              }
            }
          }
        }
        return ImmutableList.copyOf(identifiers.values());
      }
    
      /** Global cache of classes to their flattened hierarchy of supertypes. */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 10.8K bytes
    - Viewed (0)
Back to top