Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for notNull (0.05 sec)

  1. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

         * message: The size of {item} must be between {min} and {max}.
         * </pre>
         * @param property The property name for the message. (NotNull)
         * @param min The parameter min for message. (NotNull)
         * @param max The parameter max for message. (NotNull)
         * @return this. (NotNull)
         */
        public FessMessages addConstraintsSizeMessage(String property, String min, String max) {
            assertPropertyNotNull(property);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 119.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * @param propertyKey The key of the property. (NotNull)
         * @return The value of found property. (NotNull: if not found, exception)
         * @throws ConfigPropertyNotFoundException When the property is not found.
         */
        String get(String propertyKey);
    
        /**
         * Is the property true?
         * @param propertyKey The key of the property which is boolean type. (NotNull)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

         * @param propertyKey The key of the property. (NotNull)
         * @return The value of found property. (NotNull: if not found, exception)
         * @throws ConfigPropertyNotFoundException When the property is not found.
         */
        String get(String propertyKey);
    
        /**
         * Is the property true?
         * @param propertyKey The key of the property which is boolean type. (NotNull)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10K bytes
    - Viewed (0)
  4. okhttp-sse/src/test/java/okhttp3/sse/internal/EventSourceFactoryTest.java

          @Override
          public void onOpen(@NotNull EventSource eventSource, @NotNull Response response) {
            try {
              assertEquals("text/event-stream", response.request().header("Accept"));
            } catch (Exception e) {
              future.completeExceptionally(e);
            }
          }
    
          @Override
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 11:47:47 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/base/PredicatesTest.java

      }
    
      public void testNotNull_apply() {
        Predicate<@Nullable Integer> notNull = Predicates.notNull();
        assertFalse(notNull.apply(null));
        assertTrue(notNull.apply(1));
      }
    
      public void testNotNull_equality() {
        new EqualsTester()
            .addEqualityGroup(Predicates.notNull(), Predicates.notNull())
            .addEqualityGroup(Predicates.isNull())
            .testEquals();
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 32.2K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/validation/CronExpressionTest.java

            MultiValidationBean bean = new MultiValidationBean();
            bean.setRequiredCron(null); // Violates NotNull
    
            Set<ConstraintViolation<MultiValidationBean>> violations = validator.validate(bean);
            assertEquals(1, violations.size()); // Only NotNull violation
    
            bean.setRequiredCron("invalid"); // Now violates CronExpression
            violations = validator.validate(bean);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/base/Predicates.java

            return "Predicates.isNull()";
          }
        },
        /**
         * @see Predicates#notNull()
         */
        NOT_NULL {
          @Override
          public boolean apply(@Nullable Object o) {
            return o != null;
          }
    
          @Override
          public String toString() {
            return "Predicates.notNull()";
          }
        };
    
        @SuppressWarnings("unchecked") // safe contravariant cast
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  8. src/main/resources/fess_message_pl.properties

    constraints.Future.message = {item} musi być wartością przyszłą.
    constraints.Max.message = {item} musi być mniejsze lub równe {value}.
    constraints.Min.message = {item} musi być większe lub równe {value}.
    constraints.NotNull.message = {item} jest niewypełnione.
    constraints.Null.message = {item} musi być null.
    constraints.Past.message = {item} musi być wartością przeszłą.
    constraints.Pattern.message = {item} nie pasuje do "{regexp}".
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  9. src/main/resources/fess_message_pt_BR.properties

    constraints.Future.message = {item} deve ser uma data futura.
    constraints.Max.message = {item} deve ser menor ou igual a {value}.
    constraints.Min.message = {item} deve ser maior ou igual a {value}.
    constraints.NotNull.message = {item} é obrigatório.
    constraints.Null.message = {item} deve ser nulo.
    constraints.Past.message = {item} deve ser uma data passada.
    constraints.Pattern.message = {item} não corresponde a "{regexp}".
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  10. src/main/resources/fess_message_es.properties

    constraints.Future.message = {item} debe ser una fecha futura.
    constraints.Max.message = {item} debe ser menor o igual que {value}.
    constraints.Min.message = {item} debe ser mayor o igual que {value}.
    constraints.NotNull.message = {item} es obligatorio.
    constraints.Null.message = {item} debe ser nulo.
    constraints.Past.message = {item} debe ser una fecha pasada.
    constraints.Pattern.message = {item} no coincide con "{regexp}".
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.7K bytes
    - Viewed (0)
Back to top