Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,126 for setC (0.01 sec)

  1. src/main/java/org/codelibs/fess/app/pager/ElevateWordPager.java

        }
    
        /**
         * Sets the flag indicating if a next page exists.
         *
         * @param existNextPage true if next page exists, false otherwise
         */
        public void setExistNextPage(final boolean existNextPage) {
            this.existNextPage = existNextPage;
        }
    
        /**
         * Gets the number of records per page.
         * If page size is not set or invalid, returns the default page size.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/pager/UserPager.java

        }
    
        /**
         * Sets whether there is a next page available.
         *
         * @param existNextPage true if next page exists, false otherwise
         */
        public void setExistNextPage(final boolean existNextPage) {
            this.existNextPage = existNextPage;
        }
    
        /**
         * Gets the number of records per page.
         * Returns the default page size if not set or invalid.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/TestStringSetGenerator.java

    import com.google.common.annotations.GwtCompatible;
    import com.google.common.collect.testing.SampleElements.Strings;
    import java.util.List;
    import java.util.Set;
    import org.jspecify.annotations.NullMarked;
    
    /**
     * Create string sets for collection tests.
     *
     * @author Kevin Bourrillion
     */
    @GwtCompatible
    @NullMarked
    public abstract class TestStringSetGenerator implements TestSetGenerator<String> {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 14:50:24 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

                        }
                    } else if (line.startsWith(DISABLE_URL_ENCODE)) {
                        urlEncodeDisabled.set(true);
                    }
                }));
    
                // set excluded urls
                urlEncodeDisabled.set(false);
                split(excludedUrlsStr, "[\r\n]").of(stream -> stream.filter(StringUtil::isNotBlank).map(String::trim).forEach(line -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/PermissionHelper.java

        }
    
        /**
         * Sets the prefix used to identify allow permissions.
         *
         * @param allowPrefix the allow prefix to set
         */
        public void setAllowPrefix(final String allowPrefix) {
            this.allowPrefix = allowPrefix;
        }
    
        /**
         * Sets the prefix used to identify deny permissions.
         *
         * @param denyPrefix the deny prefix to set
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/main/java/org/codelibs/fess/app/pager/JobLogPager.java

        }
    
        /**
         * Sets whether a next page exists.
         *
         * @param existNextPage true if a next page exists, false otherwise
         */
        public void setExistNextPage(final boolean existNextPage) {
            this.existNextPage = existNextPage;
        }
    
        /**
         * Gets the number of items per page.
         * If the page size is not set or is zero or negative, returns the default page size.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/AggregateFutureState.java

      }
    
      private abstract static class AtomicHelper {
        /** Performs an atomic compare-and-set of {@link AggregateFutureState#seenExceptionsField}. */
        abstract void compareAndSetSeenExceptions(
            AggregateFutureState<?> state, @Nullable Set<Throwable> expect, Set<Throwable> update);
    
        /** Performs an atomic decrement-and-get of {@link AggregateFutureState#remainingField}. */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/pager/CrawlingInfoPager.java

         *
         * @return the list of page numbers, or null if not set
         */
        public List<Integer> getPageNumberList() {
            return pageNumberList;
        }
    
        /**
         * Sets the list of page numbers to display in the pagination component.
         *
         * @param pageNumberList the list of page numbers to set
         */
        public void setPageNumberList(final List<Integer> pageNumberList) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.9K bytes
    - Viewed (0)
Back to top