Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for absence (0.04 sec)

  1. okhttp/src/jvmTest/kotlin/okhttp3/CallTest.kt

            .method("POST", requestBody1)
            .build()
        val response1 = client.newCall(request1).execute()
        assertThat(response1.code).isEqualTo(200)
    
        // Call 2: check for the absence of a deadline on the request body.
        val requestBody2: RequestBody =
          object : RequestBody() {
            override fun contentType(): MediaType = "text/plain".toMediaType()
    
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Tue Nov 04 19:13:52 UTC 2025
    - 147.4K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      `Let's go on with the game,' the Queen said to Alice; and Alice
    was too much frightened to say a word, but slowly followed her
    back to the croquet-ground.
    
      The other guests had taken advantage of the Queen's absence,
    and were resting in the shade:  however, the moment they saw her,
    they hurried back to the game, the Queen merely remarking that a
    moment's delay would cost them their lives.
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/cache/LocalCacheTest.java

        segment.count++;
        assertThat(segment.get(key, hash)).isSameInstanceAs(value);
        assertThat(segment.containsKey(key, hash)).isTrue();
        assertThat(segment.containsValue(value)).isTrue();
        // don't see absent values now that count > 0
        assertThat(segment.get(new Object(), hash)).isNull();
    
        // null key
        DummyEntry<Object, Object> nullEntry = DummyEntry.create(null, hash, entry);
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Dec 12 00:25:21 UTC 2025
    - 117.5K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

        segment.count++;
        assertThat(segment.get(key, hash)).isSameInstanceAs(value);
        assertThat(segment.containsKey(key, hash)).isTrue();
        assertThat(segment.containsValue(value)).isTrue();
        // don't see absent values now that count > 0
        assertThat(segment.get(new Object(), hash)).isNull();
    
        // null key
        DummyEntry<Object, Object> nullEntry = DummyEntry.create(null, hash, entry);
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Dec 12 00:25:21 UTC 2025
    - 115.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbFile.java

         * address if the server. The hashing function uses the hashcode of the
         * server address, the canonical representation of the URL, and does not
         * compare authentication information. In essence, two
         * <code>SmbFile</code> objects that refer to
         * the same file should generate the same hashcode provided it is possible
         * to make such a determination.
         *
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
Back to top