Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 540 for specifiers (0.04 sec)

  1. src/main/java/org/codelibs/fess/cors/CorsHandlerFactory.java

        /**
         * Map of origin patterns to their corresponding CORS handlers.
         */
        protected Map<String, CorsHandler> handerMap = new HashMap<>();
    
        /**
         * Adds a CORS handler for the specified origin.
         *
         * @param origin the origin pattern (can be "*" for wildcard)
         * @param handler the CORS handler to associate with the origin
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/graph/Network.java

      //
      // Network-level accessors
      //
    
      /** Returns all nodes in this network, in the order specified by {@link #nodeOrder()}. */
      Set<N> nodes();
    
      /** Returns all edges in this network, in the order specified by {@link #edgeOrder()}. */
      Set<E> edges();
    
      /**
       * Returns a live view of this network as a {@link Graph}. The resulting {@link Graph} will have
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 22:03:02 UTC 2025
    - 22.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/FessBoot.java

        /** System property key for Tomcat configuration path */
        private static final String TOMCAT_CONFIG_PATH = "tomcat.config.path";
    
        /**
         * Constructs a new FessBoot instance with the specified port and context path.
         *
         * @param port the port number for the Tomcat server
         * @param contextPath the context path for the web application
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/lang/FieldUtil.java

            assertArgumentNotNull("field", field);
    
            set(field, null, value);
        }
    
        /**
         * Sets the value of the given {@link Field} representing the specified object argument's field to the specified new value.
         *
         * @param field the field (must not be {@literal null})
         * @param target the object whose field is to be modified; {@literal null} if the field is static
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/convert/NumberConversionUtil.java

            }
            return o;
        }
    
        /**
         * Converts to the wrapper type corresponding to the specified primitive type.
         *
         * @param type
         *            Primitive type
         * @param o
         *            Source object
         * @return Object converted to the wrapper type corresponding to the specified primitive type
         */
        public static Object convertPrimitiveWrapper(final Class<?> type, final Object o) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/io/ResourceBundleUtil.java

                return null;
            }
        }
    
        /**
         * Returns the string for the specified key from the resource bundle.
         *
         * @param bundle the resource bundle (must not be {@literal null} or empty)
         * @param key the key
         * @return the string for the specified key (must not be {@literal null} or empty)
         * @see ResourceBundle#getString(String)
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/hash/BloomFilter.java

      }
    
      /**
       * Returns a {@code Collector} expecting the specified number of insertions, and yielding a {@link
       * BloomFilter} with the specified expected false positive probability.
       *
       * <p>Note that if the {@code Collector} receives significantly more elements than specified, the
       * resulting {@code BloomFilter} will suffer a sharp deterioration of its false positive
       * probability.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 31 13:15:26 UTC 2025
    - 26.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/entity/DataStoreParams.java

        }
    
        /**
         * Adds all key-value pairs from the specified map to this parameter container.
         *
         * @param map the map containing parameters to add, must not be null
         */
        public void putAll(final Map<String, String> map) {
            params.putAll(map);
        }
    
        /**
         * Checks if the specified key exists in the parameter map.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/SortedSetMultimap.java

       *
       * <p>Because a {@code SortedSetMultimap} has unique sorted values for a given key, this method
       * returns a {@link SortedSet}, instead of the {@link java.util.Collection} specified in the
       * {@link Multimap} interface.
       */
      @Override
      SortedSet<V> get(@ParametricNullness K key);
    
      /**
       * Removes all values associated with a given key.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Multimaps.java

      }
    
      /**
       * Returns an unmodifiable view of the specified multimap. Query operations on the returned
       * multimap "read through" to the specified multimap, and attempts to modify the returned
       * multimap, either directly or through the multimap's views, result in an {@code
       * UnsupportedOperationException}.
       *
       * <p>The returned multimap will be serializable if the specified multimap is serializable.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 86.6K bytes
    - Viewed (0)
Back to top