Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ll (0.15 sec)

  1. okhttp/src/test/java/okhttp3/CacheTest.kt

        )
        server.enqueue(
          MockResponse.Builder()
            .body("B")
            .build(),
        )
        assertThat(get(server.url("/")).body.string()).isEqualTo("A")
    
        // With max-stale, we'll return that stale response.
        val request =
          Request.Builder()
            .url(server.url("/"))
            .header("Cache-Control", "max-stale")
            .build()
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 108.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/cache/LocalCache.java

                for (ReferenceEntry<K, V> e = next; e != null; e = e.getNext()) {
                  int newIndex = e.getHash() & newMask;
                  if (newIndex != tailIndex) {
                    // The index changed. We'll need to copy the previous entry.
                    tailIndex = newIndex;
                    tail = e;
                  }
                }
                newTable.set(tailIndex, tail);
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 144.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/LocalCache.java

                for (ReferenceEntry<K, V> e = next; e != null; e = e.getNext()) {
                  int newIndex = e.getHash() & newMask;
                  if (newIndex != tailIndex) {
                    // The index changed. We'll need to copy the previous entry.
                    tailIndex = newIndex;
                    tail = e;
                  }
                }
                newTable.set(tailIndex, tail);
    
    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)
  4. CHANGELOG/CHANGELOG-1.30.md

      It's definitely not something expected for plugin developers,
      and we're trying to eventually remove preCheck completely to fix this.
      Until then we'll register UpdateNodeTaint event for plugins that have NodeAdded event, but don't have UpdateNodeTaint event.
      It'd result in a bad impact on the requeuing efficiency though, a lot better than some Pods being stuck in the
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Wed Apr 17 17:56:15 GMT 2024
    - 227.9K bytes
    - Viewed (0)
  5. doc/go1.17_spec.html

    <p>
    In <a href="https://www.unicode.org/versions/Unicode8.0.0/">The Unicode Standard 8.0</a>,
    Section 4.5 "General Category" defines a set of character categories.
    Go treats all characters in any of the Letter categories Lu, Ll, Lt, Lm, or Lo
    as Unicode letters, and those in the Number category Nd as Unicode digits.
    </p>
    
    <h3 id="Letters_and_digits">Letters and digits</h3>
    
    <p>
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
Back to top