Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 245 for _argument (0.04 sec)

  1. android/guava/src/com/google/common/util/concurrent/FluentFuture.java

        return future instanceof FluentFuture
            ? (FluentFuture<V>) future
            : new ForwardingFluentFuture<V>(future);
      }
    
      /**
       * Simply returns its argument.
       *
       * @deprecated no need to use this
       * @since 28.0
       */
      @InlineMe(
          replacement = "checkNotNull(future)",
          staticImports = "com.google.common.base.Preconditions.checkNotNull")
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 19.7K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/core/log/LoggerTest.java

         */
        @SuppressWarnings("static-access")
        @Test
        public void testFormat() {
            exception.expect(ClIllegalArgumentException.class);
            exception.expectMessage(is("[ECL0009]argument[AUTL0009] is illegal. because messageCode : AUTL0009."));
            Logger.format("AUTL0009", "hoge");
        }
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/beans/impl/MethodDescImpl.java

        /** Array of method parameter types */
        protected final Class<?>[] parameterTypes;
    
        /** The return type of the method */
        protected final Class<?> returnType;
    
        /** Information about parameterized argument types */
        protected final ParameterizedClassDesc[] parameterizedClassDescs;
    
        /** Information about the parameterized return type */
        protected final ParameterizedClassDesc parameterizedClassDesc;
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Streams.java

       *
       * @since 33.4.0 (but since 21.0 in the JRE flavor)
       */
      public interface FunctionWithIndex<T extends @Nullable Object, R extends @Nullable Object> {
        /** Applies this function to the given argument and its index within a stream. */
        @ParametricNullness
        R apply(@ParametricNullness T from, long index);
      }
    
      /*
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 37K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/ProcessHelper.java

         * Uses default buffer size and no output callback.
         *
         * @param sessionId unique identifier for the process session
         * @param cmdList list of command and arguments to execute
         * @param pbCall callback to configure the ProcessBuilder
         * @return JobProcess representing the started process
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/beans/ConstructorDesc.java

        /**
         * Returns an instance created by invoking the constructor.
         *
         * @param <T>
         *            The type of the Bean to be created
         * @param args
         *            The arguments for the constructor
         * @return An instance created by invoking the constructor
         */
        <T> T newInstance(Object... args);
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/log/Logger.java

        }
    
        /**
         * Returns a formatted message string.
         *
         * @param messageCode
         *            Message code. Must not be {@literal null} or empty string.
         * @param args
         *            Arguments
         * @return Formatted message string
         */
        public static LogMessage format(final String messageCode, final Object... args) {
            assertArgumentNotEmpty("messageCode", messageCode);
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/exception/WebApiExceptionTest.java

            assertTrue(exception.getStackTrace().length > 0);
        }
    
        public void test_nestedExceptions() {
            // Test nested exceptions
            Exception innerCause = new IllegalArgumentException("Invalid argument");
            Exception middleCause = new RuntimeException("Runtime error", innerCause);
            WebApiException exception = new WebApiException(400, middleCause);
    
            assertEquals(400, exception.getStatusCode());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/dict/DictionaryExceptionTest.java

        }
    
        public void test_constructor_withNullMessageAndCause() {
            // Test constructor with null message but valid cause
            Exception cause = new IllegalArgumentException("Invalid argument");
            DictionaryException exception = new DictionaryException(null, cause);
    
            assertNotNull(exception);
            assertNull(exception.getMessage());
            assertNotNull(exception.getCause());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/Enums.java

       * {@code enumClass} using {@link Enum#valueOf(Class, String)} and {@link Enum#name()}. The
       * converter will throw an {@code IllegalArgumentException} if the argument is not the name of any
       * enum constant in the specified enum.
       *
       * @since 16.0
       */
      public static <T extends Enum<T>> Converter<String, T> stringConverter(Class<T> enumClass) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 01 13:41:58 UTC 2025
    - 4.8K bytes
    - Viewed (0)
Back to top