Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 907 for iets (0.01 sec)

  1. src/main/java/org/codelibs/fess/dict/DictionaryFile.java

        }
    
        /**
         * Returns the unique identifier of this dictionary file.
         *
         * @return the dictionary file ID
         */
        public String getId() {
            return id;
        }
    
        /**
         * Gets the file path of this dictionary.
         *
         * @return the file path
         */
        public String getPath() {
            return path;
        }
    
        /**
         * Returns the timestamp of this dictionary file.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/auth/chain/CommandChain.java

                return buf.toString();
            }
    
        }
    
        /**
         * Sets the working directory for command execution.
         * @param workingDirectory The working directory.
         */
        public void setWorkingDirectory(final File workingDirectory) {
            this.workingDirectory = workingDirectory;
        }
    
        /**
         * Sets the maximum number of output lines to capture.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java

            }
            cookieNameMap.put(cookieName, roleName);
        }
    
        /**
         * Sets the cached cipher.
         * @param cipher The cached cipher.
         */
        public void setCipher(final CachedCipher cipher) {
            this.cipher = cipher;
        }
    
        /**
         * Sets the value separator.
         * @param valueSeparator The value separator.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/AggregateFuture.java

          /*
           * We'll call the user callback or collect the values only when all inputs complete,
           * regardless of whether some failed. This lets us avoid calling expensive methods like
           * Future.get() when we don't need to (specifically, for whenAllComplete().call*()), and it
           * lets all futures share the same listener.
           *
           * We store `localFuturesOrNull` inside the listener because `this.futures` might be nulled
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

         * Forces all crawlers to stop immediately.
         * Sets the force stop flag and stops all active crawler instances.
         */
        private void forceStop() {
            systemHelper.setForceStop(true);
            if (crawlerList != null) {
                for (final Crawler crawler : crawlerList) {
                    crawler.stop();
                }
            }
        }
    
        /**
         * Gets the total execution time for index updates.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/searchlog/SearchForm.java

         * The size field for controlling page size.
         */
        public String size;
    
        /**
         * Sets the page size for search log results.
         *
         * @param size the page size to set
         */
        public void setPageSize(final int size) {
            this.size = Integer.toString(size);
        }
    
        /**
         * Gets the page size for search log results with validation.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java

        //                                                                        Small Helper
        //                                                                        ============
    
        /**
         * Sets up HTML data for admin pages.
         * <p>
         * This method configures common data needed for admin pages including
         * editable flags, user roles, and forum links.
         * </p>
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

             *
             * @return true if the thread has completed its crawling operation
             */
            public boolean isFinished() {
                return finished;
            }
    
            /**
             * Stops the crawling operation gracefully.
             * If a data store is currently active, this method calls
             * its stop method to halt the crawling process.
             */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/AtomicDoubleArray.java

       */
      public final int length() {
        return longs.length();
      }
    
      /**
       * Gets the current value at position {@code i}.
       *
       * @param i the index
       * @return the current value
       */
      public final double get(int i) {
        return longBitsToDouble(longs.get(i));
      }
    
      /**
       * Atomically sets the element at position {@code i} to the given value.
       *
       * @param i the index
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/dict/synonym/SynonymItem.java

                // create
                newInputs = inputs;
                newOutputs = outputs;
            }
        }
    
        /**
         * Gets the new input words.
         *
         * @return The new input words.
         */
        public String[] getNewInputs() {
            return newInputs;
        }
    
        /**
         * Sets the new input words.
         *
         * @param newInputs The new input words.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.5K bytes
    - Viewed (0)
Back to top