Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for containing (0.04 sec)

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

       * @return an immutable set containing those elements, minus duplicates
       */
      public static <E extends Enum<E>> ImmutableSet<E> immutableEnumSet(
          E anElement, E... otherElements) {
        return ImmutableEnumSet.asImmutable(EnumSet.of(anElement, otherElements));
      }
    
      /**
       * Returns an immutable set instance containing the given enum elements. Internally, the returned
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 81.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Iterators.java

      }
    
      /**
       * Divides an iterator into unmodifiable sublists of the given size (the final list may be
       * smaller). For example, partitioning an iterator containing {@code [a, b, c, d, e]} with a
       * partition size of 3 yields {@code [[a, b, c], [d, e]]} -- an outer iterator containing two
       * inner lists of three and two elements, all in the original order.
       *
       * <p>The returned lists implement {@link java.util.RandomAccess}.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 50.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

        private static final int UTF8_BOM_SIZE = 3;
    
        /** Flag indicating whether content should be pruned */
        public boolean prunedContent = true;
    
        /** Map containing URL conversion rules (regex patterns to replacement strings) */
        protected Map<String, String> convertUrlMap = new LinkedHashMap<>();
    
        /** Fess configuration instance */
        protected FessConfig fessConfig;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/ldap/LdapManager.java

         *
         * @param username the username for authentication
         * @param password the password for authentication
         * @return an optional containing the authenticated user if successful, empty otherwise
         */
        public OptionalEntity<FessUser> login(final String username, final String password) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 82K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/Futures.java

              throw new ExecutionException(t);
            }
          }
        };
      }
    
      /**
       * Creates a new {@code ListenableFuture} whose value is a list containing the values of all its
       * input futures, if all succeed.
       *
       * <p>The list of results is in the same order as the input list.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 64.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

            private int offset = -1;
    
            private int pageSize = -1;
    
            /**
             * Constructor for JsonRequestParams.
             * @param request The HTTP servlet request containing the search parameters
             * @param fessConfig The Fess configuration object
             */
            protected JsonRequestParams(final HttpServletRequest request, final FessConfig fessConfig) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/ViewHelper.java

                return buf.toString();
            }).orElse(value);
        }
    
        /**
         * Gets the set of highlight queries from the current request.
         *
         * @return OptionalThing containing the query set
         */
        protected OptionalThing<Set<String>> getQuerySet() {
            return LaRequestUtil.getOptionalRequest()
                    .map(req -> ((Set<String>) req.getAttribute(Constants.HIGHLIGHT_QUERIES)))
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Multimaps.java

          return multimap.containsKey(key);
        }
    
        @Override
        public void clear() {
          multimap.clear();
        }
      }
    
      /**
       * Returns a multimap containing the mappings in {@code unfiltered} whose keys satisfy a
       * predicate. The returned multimap is a live view of {@code unfiltered}; changes to one affect
       * the other.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 86.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Multimaps.java

          return multimap.containsKey(key);
        }
    
        @Override
        public void clear() {
          multimap.clear();
        }
      }
    
      /**
       * Returns a multimap containing the mappings in {@code unfiltered} whose keys satisfy a
       * predicate. The returned multimap is a live view of {@code unfiltered}; changes to one affect
       * the other.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 86.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/CharMatcher.java

        int count = 0;
        for (int i = 0; i < sequence.length(); i++) {
          if (matches(sequence.charAt(i))) {
            count++;
          }
        }
        return count;
      }
    
      /**
       * Returns a string containing all non-matching characters of a character sequence, in order. For
       * example:
       *
       * {@snippet :
       * CharMatcher.is('a').removeFrom("bazaar")
       * }
       *
       * ... returns {@code "bzr"}.
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 53.9K bytes
    - Viewed (0)
Back to top