Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getAsLong (0.49 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

            }
    
            public String getTimeAdjustTimeMillis() {
                return get(FessEnv.TIME_ADJUST_TIME_MILLIS);
            }
    
            public Long getTimeAdjustTimeMillisAsLong() {
                return getAsLong(FessEnv.TIME_ADJUST_TIME_MILLIS);
            }
    
            public String getMailSendMock() {
                return get(FessEnv.MAIL_SEND_MOCK);
            }
    
            public boolean isMailSendMock() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java

                    } catch (NumberFormatException e) {
                        return null;
                    }
                }
    
                @Override
                public Long getAsLong(String propertyKey) {
                    String value = get(propertyKey);
                    if (value == null) {
                        return null;
                    }
                    try {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 23.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Streams.java

      @Beta
      @InlineMe(replacement = "optional.stream()")
      @InlineMeValidationDisabled("Java 9+ API only")
      public static LongStream stream(OptionalLong optional) {
        return optional.isPresent() ? LongStream.of(optional.getAsLong()) : LongStream.empty();
      }
    
      /**
       * If a value is present in {@code optional}, returns a stream containing only that element,
       * otherwise returns an empty stream.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 37K bytes
    - Viewed (0)
Back to top