Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isZero (0.02 sec)

  1. guava/src/com/google/common/base/Suppliers.java

        checkNotNull(delegate);
        // The alternative of `duration.compareTo(Duration.ZERO) > 0` causes J2ObjC trouble.
        checkArgument(
            !duration.isNegative() && !duration.isZero(), "duration (%s) must be > 0", duration);
        return new ExpiringMemoizingSupplier<>(delegate, toNanosSaturated(duration));
      }
    
      @VisibleForTesting
      @SuppressWarnings("GoodTime") // lots of violations
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 16.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/Suppliers.java

        checkNotNull(delegate);
        // The alternative of `duration.compareTo(Duration.ZERO) > 0` causes J2ObjC trouble.
        checkArgument(
            !duration.isNegative() && !duration.isZero(), "duration (%s) must be > 0", duration);
        return new ExpiringMemoizingSupplier<>(delegate, toNanosSaturated(duration));
      }
    
      @VisibleForTesting
      @SuppressWarnings("GoodTime") // lots of violations
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 16.5K bytes
    - Viewed (0)
  3. src/main/resources/fess_message_it.properties

    errors.failed_to_find_plugins=Nessun plugin disponibile trovato.
    errors.failed_to_process_sso_request=Impossibile elaborare la richiesta: {0}
    
    errors.property_required={0} è obbligatorio.
    errors.property_type_integer={0} è un numero intero.
    errors.property_type_long={0} è un numero lungo.
    errors.property_type_float={0} è un numero float.
    errors.property_type_double={0} è un numero double.
    errors.property_type_date={0} è una data.
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.3K bytes
    - Viewed (0)
Back to top