Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 87 for perform (0.84 sec)

  1. android/guava/src/com/google/common/collect/Streams.java

       * of the second stream, and so on.
       *
       * <p>This is equivalent to {@code Stream.of(streams).flatMap(stream -> stream)}, but the returned
       * stream may perform better.
       *
       * @see Stream#concat(Stream, Stream)
       */
      @SuppressWarnings("unchecked") // could probably be avoided with a forwarding Spliterator
      @SafeVarargs
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 37K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/auth/chain/AuthenticationChainTest.java

            TestAuthenticationChain chain = new TestAuthenticationChain();
            User user1 = createTestUser("user1", "User One");
            User user2 = createTestUser("user2", "User Two");
    
            // Perform various operations
            chain.update(user1);
            chain.delete(user2);
            chain.changePassword("user3", "pass3");
            chain.load(user1);
    
            // Verify state tracking
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 14.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/NullnessCasts.java

     * the License.
     */
    
    package com.google.common.base;
    
    import com.google.common.annotations.GwtCompatible;
    import org.jspecify.annotations.Nullable;
    
    /** A utility method to perform unchecked casts to suppress errors produced by nullness analyses. */
    @GwtCompatible
    final class NullnessCasts {
      /**
       * Accepts a {@code @Nullable T} and returns a plain {@code T}, without performing any check that
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 13 20:49:47 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/cache/CacheBuilder.java

     * operations.
     *
     * <p>Certain cache configurations will result in the accrual of periodic maintenance tasks which
     * will be performed during write operations, or during occasional read operations in the absence of
     * writes. The {@link Cache#cleanUp} method of the returned cache will also perform maintenance, but
     * calling it should not be necessary with a high throughput cache. Only caches built with {@link
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 51.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

         * Uses aggregation to get session segments and their corresponding document counts.
         *
         * @param searchEngineClient the search engine client to perform the query
         * @return a list of maps containing session IDs and their document counts
         */
        public List<Map<String, String>> getSessionIdList(final SearchEngineClient searchEngineClient) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/AdminDictStopwordsAction.java

            });
            return asHtml(path_AdminDictStopwords_AdminDictStopwordsJsp).renderWith(data -> {
                searchPaging(data, form);
            });
        }
    
        /**
         * Perform search for stopwords.
         *
         * @param form the search form containing search criteria
         * @return HTML response with search results
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 20.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/NullnessCasts.java

     * the License.
     */
    
    package com.google.common.util.concurrent;
    
    import com.google.common.annotations.GwtCompatible;
    import org.jspecify.annotations.Nullable;
    
    /** A utility method to perform unchecked casts to suppress errors produced by nullness analyses. */
    @GwtCompatible
    final class NullnessCasts {
      /**
       * Accepts a {@code @Nullable T} and returns a plain {@code T}, without performing any check that
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 13 20:49:47 UTC 2025
    - 4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/FluentIterable.java

     * @since 12.0
     */
    @GwtCompatible
    public abstract class FluentIterable<E extends @Nullable Object> implements Iterable<E> {
      // We store 'iterable' and use it instead of 'this' to allow Iterables to perform instanceof
      // checks on the _original_ iterable when FluentIterable.from is used.
      // To avoid a self retain cycle under j2objc, we store Optional.absent() instead of
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 35.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/FluentIterable.java

     * @since 12.0
     */
    @GwtCompatible
    public abstract class FluentIterable<E extends @Nullable Object> implements Iterable<E> {
      // We store 'iterable' and use it instead of 'this' to allow Iterables to perform instanceof
      // checks on the _original_ iterable when FluentIterable.from is used.
      // To avoid a self retain cycle under j2objc, we store Optional.absent() instead of
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 34.8K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/query/QueryTestBase.java

            ComponentUtil.register(queryProcessor, "queryProcessor");
    
            // Call child class specific setup
            setUpChild();
        }
    
        /**
         * Override this method in child classes to perform additional setup
         */
        protected void setUpChild() throws Exception {
            // Default implementation does nothing
        }
    
        /**
         * Creates and registers a properly initialized FessConfig
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 14.6K bytes
    - Viewed (0)
Back to top