Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 540 for specifiers (0.06 sec)

  1. src/main/java/org/codelibs/core/jar/JarFileUtil.java

        private static final Logger logger = Logger.getLogger(JarFileUtil.class);
    
        /**
         * Creates and returns a <code>JarFile</code> to read the specified JAR file.
         *
         * @param file the file path (must not be {@literal null})
         * @return a <code>JarFile</code> to read the specified JAR file
         */
        public static JarFile create(final String file) {
            assertArgumentNotNull("file", file);
    
            try {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/RangeMap.java

       * least decide on a policy for when to use which.
       */
    
      /**
       * Returns the value associated with the specified key, or {@code null} if there is no such value.
       *
       * <p>Specifically, if any range in this range map contains the specified key, the value
       * associated with that range is returned.
       */
      @Nullable V get(K key);
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/lang/ClassLoaderUtil.java

            assertArgumentNotNull("name", name);
    
            return getResources(getClassLoader(targetClass), name);
        }
    
        /**
         * Searches for all resources with the specified name from the specified class loader.
         *
         * @param loader
         *            The class loader. Must not be {@literal null}.
         * @param name
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/AtomicLongMap.java

      }
    
      /**
       * Copies all of the mappings from the specified map to this map. The effect of this call is
       * equivalent to that of calling {@code put(k, v)} on this map once for each mapping from key
       * {@code k} to value {@code v} in the specified map. The behavior of this operation is undefined
       * if the specified map is modified while the operation is in progress.
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/lang/SystemUtil.java

        /**
         * Returns the system property value for the specified key.
         *
         * @param key the property key
         * @return the property value, or null if not found
         */
        public static String getProperty(String key) {
            return System.getProperty(key);
        }
    
        /**
         * Returns the system property value for the specified key, or the default value if not found.
         *
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/lang/GenericsUtil.java

                return isTypeOf(parameterizedType.getRawType(), clazz);
            }
            return false;
        }
    
        /**
         * Returns the raw class of the specified type.
         * <ul>
         * <li>If <code>type</code> is a <code>Class</code>, it is returned as-is.</li>
         * <li>If <code>type</code> is a parameterized type, its raw type is returned.</li>
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 23.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

                    }
                    return Locale.ENGLISH;
                }).orElse(Locale.ENGLISH).getLanguage() + "\">";
            }
            return "</html>";
        }
    
        /**
         * Checks if a label with the specified key exists in the current request's label map.
         *
         * @param value the label key to check
         * @return true if the label exists, false otherwise
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/exception/SearchQueryException.java

         *
         * @param message The detail message explaining the exception
         * @param cause The cause of this exception
         */
        public SearchQueryException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        /**
         * Constructs a new SearchQueryException with the specified detail message.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/AbstractSetMultimap.java

       * {@link Set}, instead of the {@link Collection} specified in the {@link Multimap} interface.
       */
      @Override
      public Set<V> get(@ParametricNullness K key) {
        return (Set<V>) super.get(key);
      }
    
      /**
       * {@inheritDoc}
       *
       * <p>Because a {@code SetMultimap} has unique values for a given key, this method returns a
       * {@link Set}, instead of the {@link Collection} specified in the {@link Multimap} interface.
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Mar 20 13:05:10 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/lang/ClassUtil.java

         * @return The {@link Field} object for the field specified by {@code name} in this class.
         * @throws EmptyArgumentException
         *             If the field name is {@literal null} or empty.
         * @throws NoSuchFieldRuntimeException
         *             If a field with the specified name cannot be found.
         * @see Class#getField(String)
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 25.6K bytes
    - Viewed (0)
Back to top