Search Options

Results per page
Sort
Preferred Languages
Advance

Results 271 - 280 of 1,725 for setC (0.04 sec)

  1. src/main/java/jcifs/http/Handler.java

         */
        private static final String[] JVM_VENDOR_DEFAULT_PKGS = { "sun.net.www.protocol" };
    
        private static URLStreamHandlerFactory factory;
    
        private final CIFSContext transportContext;
    
        /**
         * Sets the URL stream handler factory for the environment. This
         * allows specification of the factory used in creating underlying
         * stream handlers. This can be called once per JVM instance.
         *
         * @param factory
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/DictionaryFile.java

         */
        public Date getTimestamp() {
            return timestamp;
        }
    
        /**
         * Sets the dictionary manager for this file and returns this instance.
         *
         * @param dictionaryManager the dictionary manager to set
         * @return this dictionary file instance for method chaining
         */
        public DictionaryFile<T> manager(final DictionaryManager dictionaryManager) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/dcerpc/ndr/NdrBuffer.java

        /**
         * Returns the current index position in the buffer.
         *
         * @return the current index
         */
        public int getIndex() {
            return index;
        }
    
        /**
         * Sets the current index position in the buffer.
         *
         * @param index the new index position
         */
        public void setIndex(final int index) {
            this.index = index;
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/DuplicateHostHelper.java

            } catch (final AutoBindingFailureException e) {
                logger.warn("DuplicateHostService is not found.", e);
            }
        }
    
        /**
         * Sets the list of duplicate host rules.
         *
         * @param duplicateHostList the list of duplicate host rules to use
         */
        public void setDuplicateHostList(final List<DuplicateHost> duplicateHostList) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/UnmodifiableSortedMultiset.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package com.google.common.collect;
    
    import static com.google.common.collect.Sets.unmodifiableNavigableSet;
    
    import com.google.common.annotations.GwtCompatible;
    import com.google.common.annotations.GwtIncompatible;
    import com.google.common.annotations.J2ktIncompatible;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

          }
          int oldSize = size(); // calls refreshIfEmpty
    
          // Guava issue 1013: AbstractSet and most JDK set implementations are
          // susceptible to quadratic removeAll performance on lists;
          // use a slightly smarter implementation here
          boolean changed = Sets.removeAllImpl((Set<V>) delegate, c);
          if (changed) {
            int newSize = delegate.size();
            totalSize += newSize - oldSize;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Aug 12 15:51:57 UTC 2025
    - 48.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/service/BoostDocumentRuleService.java

         */
        public void delete(final BoostDocumentRule boostDocumentRule) {
    
            boostDocumentRuleBhv.delete(boostDocumentRule, op -> op.setRefreshPolicy(Constants.TRUE));
    
        }
    
        /**
         * Sets up search conditions for boost document rule list queries.
         * @param cb The condition bean for the query.
         * @param boostDocumentRulePager The pager containing search criteria.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/PathMappingService.java

                cb.query().setProcessType_InScope(processTypeList);
                cb.fetchFirst(fessConfig.getPagePathMappingMaxFetchSizeAsInteger());
            });
        }
    
        /**
         * Sets up list condition for path mapping search.
         *
         * @param cb the condition bean
         * @param pathMappingPager the path mapping pager
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  9. 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)
  10. src/main/java/org/codelibs/fess/app/pager/SynonymPager.java

        /**
         * Gets the total number of records.
         *
         * @return The total record count.
         */
        public int getAllRecordCount() {
            return allRecordCount;
        }
    
        /**
         * Sets the total number of records.
         *
         * @param allRecordCount The total record count.
         */
        public void setAllRecordCount(final int allRecordCount) {
            this.allRecordCount = allRecordCount;
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.6K bytes
    - Viewed (0)
Back to top