Search Options

Results per page
Sort
Preferred Languages
Advance

Results 531 - 540 of 615 for sata (0.02 sec)

  1. Range.java

    Comparable<UnrelatedType>} is very broken, and will cause L87: * undefined horrible things to happen in {@code Range}. For now, the Range API does not L88: * prevent its use, because this would also rule out all ungenerified (pre-JDK1.5) data types. L89: * <b>This may change in the future.</b> L90: * </ul> L91: * L92: * <h3>Other notes</h3> L93: * L94: * <ul> L95: * <li>All ranges are shallow-immutable. L96: * <li>Instances of this type are obtained using the static factory methods...
    github.com/google/guava/android/guava/src/com/g...
    Wed Oct 16 17:21:56 UTC 2024
      27.8K bytes
  2. ImmutableSortedMap.java

    L355: L356: /** L357: * Returns an immutable map containing the same entries as {@code map}, sorted by the natural L358: * ordering of the keys. L359: * L360: * <p>Despite the method name, this method attempts to avoid actually copying the data when it is L361: * safe to do so. The exact circumstances under which a copy will or will not be performed are L362: * undocumented and subject to change. L363: * L364: * <p>This method is not type-safe, as it may be called on a map with keys...
    github.com/google/guava/android/guava/src/com/g...
    Wed Oct 30 16:15:19 UTC 2024
      53K bytes
  3. ConnectionCoalescingTest.kt

    val handshakeCertificates = L89: HandshakeCertificates.Builder() L90: .addTrustedCertificate(rootCa.certificate) L91: .build() L92: client = L93: clientTestRule.newClientBuilder() L94: .fastFallback(false) // Avoid data races. L95: .dns(dns) L96: .sslSocketFactory( L97: handshakeCertificates.sslSocketFactory(), L98: handshakeCertificates.trustManager, L99: ) L100: .build() L101: val serverHandshakeCertificates = L102:...
    github.com/square/okhttp/okhttp/src/test/java/o...
    Sat Jan 20 10:30:28 UTC 2024
      18.7K bytes
  4. CHANGELOG-1.27.md

    . All plugins must be updated to `v1alpha2` in order to function properly. ([#116558](https://github.com/kubernetes/kubernetes/pull/116558), [@klueska](https://github.com/klueska)) L2472:- The API server now re-uses data encryption keys while the kms v2 plugin key ID is stable. Data encryption keys are still randomly generated on server start but an atomic counter is used to prevent nonce collisions. ([#116155](https://github.com/kubernetes/kubernetes/pull/116155), [@enj](https://github.com/enj))...
    github.com/kubernetes/kubernetes/CHANGELOG/CHAN...
    Wed Jul 17 07:48:22 UTC 2024
      466.3K bytes
  5. CHANGELOG-1.5.md

    force deleting pods without being aware of the consequences of force deletion. Force deleting pods for resources like StatefulSets can result in multiple pods with the same name having running processes in the cluster, which may lead to data corruption or data inconsistency when using shared storage or common API endpoints. ([#35484](https://github.com/kubernetes/kubernetes/pull/35484), [@smarterclayton](https://github.com/smarterclayton)) L996:* NPD: Add e2e test for NPD v0.2. ([#35740](https:...
    github.com/kubernetes/kubernetes/CHANGELOG/CHAN...
    Thu Dec 24 02:28:26 UTC 2020
      136.4K bytes
  6. ConnectPlan.kt

    we will have buffered bytes that are needed by the SSLSocket! L178: // This check is imperfect: it doesn't tell us whether a handshake will succeed, just L179: // that it will almost certainly fail because the proxy has sent unexpected data. L180: if (source?.buffer?.exhausted() == false || sink?.buffer?.exhausted() == false) { L181: throw IOException("TLS tunnel buffered too many bytes!") L182: } L183: L184: user.secureConnectStart() L185: L186: //...
    github.com/square/okhttp/okhttp/src/main/kotlin...
    Sat Apr 20 17:03:43 UTC 2024
      18.6K bytes
  7. DerTest.kt

    alTo("unexpected byte count at OBJECT IDENTIFIER") L950: } L951: } L952: L953: /** L954: * ``` L955: * Point ::= SEQUENCE { L956: * x [0] INTEGER OPTIONAL, L957: * y [1] INTEGER OPTIONAL L958: * } L959: * ``` L960: */ L961: data class Point( L962: val x: Long?, L963: val y: Long?, L964: ) { L965: companion object { L966: val ADAPTER = L967: Adapters.sequence( L968: "Point", L969: Adapters.INTEGER_AS_LONG.withTag(tag = 0L).optional(),...
    github.com/square/okhttp/okhttp-tls/src/test/ja...
    Mon Jan 08 01:13:22 UTC 2024
      31.7K bytes
  8. RateLimiter.java

    Executor executor) { L65: * for (Runnable task : tasks) { L66: * rateLimiter.acquire(); // may wait L67: * executor.execute(task); L68: * } L69: * } L70: * }</pre> L71: * L72: * <p>As another example, imagine that we produce a stream of data, and we want to cap it at 5kb per L73: * second. This could be accomplished by requiring a permit per byte, and specifying a rate of 5000 L74: * permits per second: L75: * L76: * <pre>{@code L77: * final RateLimiter rateLimiter = RateLimiter.create(5000.0);...
    github.com/google/guava/android/guava/src/com/g...
    Sat Oct 19 00:51:36 UTC 2024
      21.9K bytes
  9. IterablesTest.java

    tested with removeIf() since Maps are not L1108: // Iterable. Those returned by Iterators.filter() and Iterables.filter() L1109: // are not tested because they are unmodifiable. L1110: L1111: public void testConsumingIterable() { L1112: // Test data L1113: List<String> list = Lists.newArrayList(asList("a", "b")); L1114: L1115: // Test & Verify L1116: Iterable<String> consumingIterable = Iterables.consumingIterable(list); L1117: assertEquals("Iterables.consumingIterable(...)", cons...
    github.com/google/guava/android/guava-tests/tes...
    Wed Oct 30 19:12:33 UTC 2024
      45K bytes
  10. MinMaxPriorityQueue.java

    on the <a L77: * href="http://portal.acm.org/citation.cfm?id=6621">min-max heap</a> developed by Atkinson, et al. L78: * Unlike many other double-ended priority queues, it stores elements in a single array, as compact L79: * as the traditional heap data structure used in {@link PriorityQueue}. L80: * L81: * <p>This class is not thread-safe, and does not accept null elements. L82: * L83: * <p><i>Performance notes:</i> L84: * L85: * <ul> L86: * <li>If you only access one end of the queue, and do use...
    github.com/google/guava/android/guava/src/com/g...
    Wed Oct 30 16:15:19 UTC 2024
      34.1K bytes
Back to top