Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 862 for musste (0.03 sec)

  1. android/guava-testlib/test/com/google/common/collect/testing/features/FeatureEnumTest.java

        assertNotNull(
            rootLocaleFormat("%s must be annotated with @TesterAnnotation.", annotationClass),
            annotationClass.getAnnotation(TesterAnnotation.class));
        Retention retentionPolicy = annotationClass.getAnnotation(Retention.class);
        assertNotNull(
            rootLocaleFormat("%s must have a @Retention annotation.", annotationClass),
            retentionPolicy);
        assertEquals(
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 20:34:52 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/io/ResourceTraversalUtil.java

         * </p>
         *
         * @param jarFile
         *            the Jar file (must not be {@literal null})
         * @param prefix
         *            the prefix that resource names must start with (must not be {@literal null}).
         *            If not empty, must end with a slash ('/').
         * @param handler
         *            the handler to process resources (must not be {@literal null})
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  3. src/main/resources/fess_message.properties

    # ---------------
    constraints.AssertFalse.message = {item} must be false.
    constraints.AssertTrue.message = {item} must be true.
    constraints.DecimalMax.message = {item} must be less than {value}.
    constraints.DecimalMin.message = {item} must be greater than {value}.
    constraints.Digits.message = {item} must be a number. (expected: <number>.<number>)
    constraints.Future.message = {item} must be a future value.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  4. src/main/resources/fess_message_en.properties

    # ---------------
    constraints.AssertFalse.message = {item} must be false.
    constraints.AssertTrue.message = {item} must be true.
    constraints.DecimalMax.message = {item} must be less than {value}.
    constraints.DecimalMin.message = {item} must be greater than {value}.
    constraints.Digits.message = {item} must be a number. (expected: <number>.<number>)
    constraints.Future.message = {item} must be a future value.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/beans/util/CopyOptions.java

            return this;
        }
    
        /**
         * Sets a converter.
         *
         * @param converter
         *            The converter. Must not be {@literal null}.
         * @param propertyNames
         *            The property names to which this converter will be applied. Each element must not be {@literal null} or an empty string.
         * @return This instance itself
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/collect/testing/google/UnmodifiableCollectionTests.java

       *
       * <ol>
       *   <li>All its mutation methods result in UnsupportedOperationException, and do not change the
       *       underlying contents.
       *   <li>All methods that return objects that can indirectly mutate the collection throw
       *       UnsupportedOperationException when those mutators are called.
       * </ol>
       *
       * @param collection the presumed-immutable collection
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 10 19:54:19 UTC 2025
    - 14.8K bytes
    - Viewed (0)
  7. futures/failureaccess/src/com/google/common/util/concurrent/internal/InternalFutures.java

       * does not include "was cancelled." To be explicit: If this method returns a non-null value,
       * then:
       *
       * <ul>
       *   <li>{@code isDone()} must return {@code true}
       *   <li>{@code isCancelled()} must return {@code false}
       *   <li>{@code get()} must not block, and it must throw an {@code ExecutionException} with the
       *       return value of this method as its cause
       * </ul>
       */
      public static
          Throwable
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Jan 18 02:54:30 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/lang/ClassLoaderUtil.java

         *
         * @param targetClass
         *            The target class. Must not be {@literal null}.
         * @param name
         *            The resource name. Must not be {@literal null} or an empty string.
         * @return An iterator of URL objects for the resources. If no resources are found, the iterator will be empty.
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/net/URLUtil.java

         *
         * @param context
         *            The context in which to parse the spec. Must not be {@literal null}.
         * @param spec
         *            A string to be parsed as a <code>URL</code>. Must not be {@literal null} or empty.
         * @return A <code>URL</code>.
         */
        public static URL create(final URL context, final String spec) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/lang/ClassUtil.java

        }
    
        /**
         * Returns whether the class can be assigned from another class.
         *
         * @param toClass
         *            The target class. Must not be {@literal null}.
         * @param fromClass
         *            The source class. Must not be {@literal null}.
         * @return Whether assignment is possible.
         * @see Class#isAssignableFrom(Class)
         */
    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