Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,126 for setS (0.04 sec)

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

          }
        }
        shuffle(queryList, random);
        return queryList.toArray(new Element[0]);
      }
    
      private Set<Element> createData() {
        Set<Element> set = Sets.newHashSetWithExpectedSize(size);
        while (set.size() < size) {
          set.add(newElement());
        }
        return set;
      }
    
      private Element newElement() {
        int value = random.nextInt();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/keymatch/AdminKeymatchAction.java

        //                                                                               Hook
        //                                                                              ======
        /**
         * Sets up HTML data for rendering, including help link.
         *
         * @param runtime the action runtime
         */
        @Override
        protected void setupHtmlData(final ActionRuntime runtime) {
            super.setupHtmlData(runtime);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 16.7K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/google/SetMultimapAsMapTester.java

      }
    
      @CollectionSize.Require(SEVERAL)
      @MapFeature.Require(SUPPORTS_REMOVE)
      /*
       * SetMultimap.asMap essentially returns a Map<K, Set<V>>; we just can't declare it that way.
       * Thus, calls like asMap().values().remove(someSet) are safe because they are comparing a set to
       * a collection of other sets.
       */
      @SuppressWarnings("CollectionUndefinedEquality")
      public void testValuesRemove() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/query/DefaultQueryBuilder.java

         */
        @Override
        public boolean isFragment() {
            return queryBuilder.isFragment();
        }
    
        /**
         * Sets the query name.
         *
         * @param queryName the query name to set
         * @return the query builder
         */
        @Override
        public QueryBuilder queryName(final String queryName) {
            return queryBuilder.queryName(queryName);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/entity/QueryContext.java

        }
    
        /**
         * Gets the set of highlighted query terms.
         * @return The set of highlighted query terms, or empty set if not initialized.
         */
        public Set<String> getHighlightedQuerySet() {
            return highlightedQuerySet != null ? highlightedQuerySet : new HashSet<>();
        }
    
        /**
         * Gets the field log map containing field names and their associated query terms.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/indexer/DocBoostMatcher.java

         * Gets the current boost expression.
         *
         * @return the boost expression string
         */
        public String getBoostExpression() {
            return boostExpression;
        }
    
        /**
         * Sets the boost expression used to calculate boost values.
         *
         * @param expression the boost expression string
         */
        public void setBoostExpression(final String expression) {
            boostExpression = expression;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideCreator.java

        private static final Logger logger = LogManager.getLogger(StemmerOverrideCreator.class);
    
        /**
         * Constructs a new creator for stemmer override dictionaries.
         * It sets the file pattern to match files starting with "stemmer_override"
         * and ending with ".txt".
         */
        public StemmerOverrideCreator() {
            super("stemmer_override.*\\.txt");
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/dict/synonym/SynonymItem.java

            }
        }
    
        /**
         * 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.
         */
        public void setNewInputs(final String[] newInputs) {
            this.newInputs = newInputs;
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/FessBoot.java

         */
        public static void shutdown(final String[] args) {
            System.exit(0);
        }
    
        /**
         * Checks if the lasta.env system property is not set.
         *
         * @return true if lasta.env is not set, false otherwise
         */
        private static boolean isNoneEnv() {
            return System.getProperty("lasta.env") == null;
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/base/FinalizableReferenceQueueTest.java

      }
    
      static class MyServerExampleWithFrq implements Closeable {
        private static final FinalizableReferenceQueue frq = new FinalizableReferenceQueue();
    
        private static final Set<Reference<?>> references = Sets.newConcurrentHashSet();
    
        private final ServerSocket serverSocket;
    
        private MyServerExampleWithFrq() throws IOException {
          this.serverSocket = new ServerSocket(0);
        }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 8.7K bytes
    - Viewed (0)
Back to top