Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for nilable (0.25 sec)

  1. docs/assets/images/disable_advanced_profiling@2x.png

    disable******@****.***...
    PNG Image
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sun Feb 06 02:19:09 GMT 2022
    - 156.3K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.5.md

      - [Changelog since v1.5.7](#changelog-since-v157)
        - [Other notable changes](#other-notable-changes)
    - [v1.5.7](#v157)
      - [Downloads for v1.5.7](#downloads-for-v157)
        - [Client Binaries](#client-binaries-1)
        - [Server Binaries](#server-binaries-1)
        - [Node Binaries](#node-binaries-1)
      - [Changelog since v1.5.6](#changelog-since-v156)
        - [Other notable changes](#other-notable-changes-1)
    - [v1.5.6](#v156)
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 136.4K bytes
    - Viewed (1)
  3. CHANGELOG/CHANGELOG-1.4.md

        - [Other notable changes](#other-notable-changes-6)
    - [v1.4.3](#v143)
      - [Downloads](#downloads)
      - [Changelog since v1.4.2-beta.1](#changelog-since-v142-beta1)
        - [Other notable changes](#other-notable-changes-7)
    - [v1.4.2](#v142)
      - [Downloads](#downloads-1)
      - [Changelog since v1.4.2-beta.1](#changelog-since-v142-beta1-1)
        - [Other notable changes](#other-notable-changes-8)
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 133.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Maps.java

      @SuppressWarnings("unchecked")
      static <K extends @Nullable Object> Function<Entry<K, ?>, K> keyFunction() {
        return (Function) EntryFunction.KEY;
      }
    
      @SuppressWarnings("unchecked")
      static <V extends @Nullable Object> Function<Entry<?, V>, V> valueFunction() {
        return (Function) EntryFunction.VALUE;
      }
    
      static <K extends @Nullable Object, V extends @Nullable Object> Iterator<K> keyIterator(
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 24 19:38:27 GMT 2024
    - 159.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

         * @param <U> the type returned by the function
         */
        public interface ClosingFunction5<
            V1 extends @Nullable Object,
            V2 extends @Nullable Object,
            V3 extends @Nullable Object,
            V4 extends @Nullable Object,
            V5 extends @Nullable Object,
            U extends @Nullable Object> {
          /**
           * Applies this function to five inputs, or throws an exception if unable to do so.
           *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 98.5K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    description: Number of 5xx errors before a host is ejected from the connection pool. nullable: true type: integer consecutiveErrors: format: int32 type: integer consecutiveGatewayEr: description: Number of gateway errors before a host is ejected from the connection pool. nullable: true type: integer consecutiveLocalOrig: description: The number of consecutive locally originated failures before ejection occurs. nullable: true type: integer interval: description: Time interval between ejection sweep analysis....
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 198.1K bytes
    - Viewed (1)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDataClassConverters.kt

            IncorrectRightComponentOfIntersectionImpl(
                firDiagnostic as KtPsiDiagnostic,
                token,
            )
        }
        add(FirErrors.NULLABLE_ON_DEFINITELY_NOT_NULLABLE) { firDiagnostic ->
            NullableOnDefinitelyNotNullableImpl(
                firDiagnostic as KtPsiDiagnostic,
                token,
            )
        }
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Apr 24 09:49:26 GMT 2024
    - 208.3K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/cache/LocalCacheTest.java

          K key, int hash, V value, @Nullable ReferenceEntry<K, V> next) {
        DummyEntry<K, V> entry = DummyEntry.create(key, hash, next);
        DummyValueReference<K, V> valueRef = DummyValueReference.create(value);
        entry.setValueReference(valueRef);
        return entry;
      }
    
      static class DummyEntry<K, V> implements ReferenceEntry<K, V> {
        private @Nullable K key;
        private final int hash;
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 14 23:06:48 GMT 2024
    - 112.3K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

          K key, int hash, V value, @Nullable ReferenceEntry<K, V> next) {
        DummyEntry<K, V> entry = DummyEntry.create(key, hash, next);
        DummyValueReference<K, V> valueRef = DummyValueReference.create(value);
        entry.setValueReference(valueRef);
        return entry;
      }
    
      static class DummyEntry<K, V> implements ReferenceEntry<K, V> {
        private @Nullable K key;
        private final int hash;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Mar 14 23:06:48 GMT 2024
    - 110.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/cache/LocalCache.java

          } finally {
            statsCounter.recordMisses(1);
          }
        }
    
        @CheckForNull
        V compute(
            K key,
            int hash,
            BiFunction<? super K, ? super @Nullable V, ? extends @Nullable V> function) {
          ReferenceEntry<K, V> e;
          ValueReference<K, V> valueReference = null;
          ComputingValueReference<K, V> computingValueReference = null;
          boolean createNewEntry = true;
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 150.3K bytes
    - Viewed (0)
Back to top