Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 592 for soft (0.19 sec)

  1. android/guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

        return unmodifiableCollectionSubclass(createCollection());
      }
    
      /**
       * Creates the collection of values for a single key.
       *
       * <p>Collections with weak, soft, or phantom references are not supported. Each call to {@code
       * createCollection} should create a new instance.
       *
       * <p>The returned collection class determines whether duplicate key-value pairs are allowed.
       *
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Oct 13 14:11:58 GMT 2023
    - 46.6K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/EventListenerTest.kt

          client.newCall(
            Request.Builder()
              .url(server.url("/"))
              .build(),
          )
        val response = call.execute()
        if (expectedProtocol == Protocol.HTTP_2) {
          // soft failure since client may not support depending on Platform
          Assume.assumeThat(response, matchesProtocol(Protocol.HTTP_2))
        }
        assertThat(response.protocol).isEqualTo(expectedProtocol)
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Jan 20 10:30:28 GMT 2024
    - 56.9K bytes
    - Viewed (0)
  3. tensorflow/c/eager/c_api_experimental.h

    // it.
    TF_CAPI_EXPORT extern TFE_TensorHandle* TFE_CreatePackedTensorHandle(
        TFE_Context* ctx, TFE_TensorHandle** handles, int* num_handles,
        TF_Status* status);
    
    // Configure soft device placement policy for the eager executor. Note this
    // policy is applied to any subsequent op executions.
    TF_CAPI_EXPORT void TFE_ContextSetSoftDevicePlacement(TFE_Context* ctx,
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Feb 21 22:37:46 GMT 2024
    - 39.5K bytes
    - Viewed (0)
  4. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    A663          ; valid                                  # 5.1  CYRILLIC SMALL LETTER SOFT DE
    A664          ; mapped                 ; A665          # 5.1  CYRILLIC CAPITAL LETTER SOFT EL
    A665          ; valid                                  # 5.1  CYRILLIC SMALL LETTER SOFT EL
    A666          ; mapped                 ; A667          # 5.1  CYRILLIC CAPITAL LETTER SOFT EM
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Feb 10 11:25:47 GMT 2024
    - 854.1K bytes
    - Viewed (2)
  5. api/go1.5.txt

    pkg go/types, type Error struct
    pkg go/types, type Error struct, Fset *token.FileSet
    pkg go/types, type Error struct, Msg string
    pkg go/types, type Error struct, Pos token.Pos
    pkg go/types, type Error struct, Soft bool
    pkg go/types, type Func struct
    pkg go/types, type Importer interface { Import }
    pkg go/types, type Importer interface, Import(string) (*Package, error)
    pkg go/types, type Info struct
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Jul 30 21:14:09 GMT 2015
    - 46.6K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.12.md

    - To avoid soft-deleted pods incorrectly affecting scale up replica count calculations, the HPA controller will stop counting soft-deleted pods for scaling purposes. ([#67067](https://github.com/kubernetes/kubernetes/pull/67067), [@moonek](https://github.com/moonek))
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Feb 06 06:04:15 GMT 2020
    - 293.8K bytes
    - Viewed (1)
  7. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

        assertThat(parse("http://ABCD").host).isEqualTo("abcd")
        assertThat(parse("http://Σ").host).isEqualTo("xn--4xa")
      }
    
      @Test
      fun hostnameIgnoredCharacters() {
        // The soft hyphen (­) should be ignored.
        assertThat(parse("http://AB\u00adCD").host).isEqualTo("abcd")
      }
    
      @Test
      fun hostnameMultipleCharacterMapping() {
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 67.9K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/cache/LocalCacheTest.java

      }
    
      public void testSetSoftValues() {
        LocalCache<Object, Object> map = makeLocalCache(createCacheBuilder().softValues());
        checkStrength(map, Strength.STRONG, Strength.SOFT);
        assertSame(EntryFactory.STRONG, map.entryFactory);
      }
    
      private static void checkStrength(
          LocalCache<Object, Object> map, Strength keyStrength, Strength valueStrength) {
    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

      }
    
      public void testSetSoftValues() {
        LocalCache<Object, Object> map = makeLocalCache(createCacheBuilder().softValues());
        checkStrength(map, Strength.STRONG, Strength.SOFT);
        assertSame(EntryFactory.STRONG, map.entryFactory);
      }
    
      private static void checkStrength(
          LocalCache<Object, Object> map, Strength keyStrength, Strength valueStrength) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Mar 14 23:06:48 GMT 2024
    - 110.7K bytes
    - Viewed (0)
  10. cmd/bucket-replication.go

    // has delete marker replication or delete replication (MinIO extension to allow deletes where version id
    // is specified) enabled.
    // Similar to bucket replication for PUT operation, soft delete (a.k.a setting delete marker) and
    // permanent deletes (by specifying a version ID in the delete operation) have three states "Pending", "Complete"
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 112.2K bytes
    - Viewed (1)
Back to top