Search Options

Results per page
Sort
Preferred Languages
Advance

Results 551 - 560 of 615 for sata (0.02 sec)

  1. ImmutableListMultimap.java

    multimap}. The generated L346: * multimap's key and value orderings correspond to the iteration ordering of the {@code L347: * multimap.asMap()} view. L348: * L349: * <p>Despite the method name, this method attempts to avoid actually copying the data when it is L350: * safe to do so. The exact circumstances under which a copy will or will not be performed are L351: * undocumented and subject to change. L352: * L353: * @throws NullPointerException if any key or value in {@code multimap}...
    github.com/google/guava/guava/src/com/google/co...
    Fri Aug 16 20:20:32 UTC 2024
      19K bytes
  2. ValueGraph.java

    otations.Beta; L20:import java.util.Optional; L21:import java.util.Set; L22:import javax.annotation.CheckForNull; L23: L24:/** L25: * An interface for <a L26: * href="https://en.wikipedia.org/wiki/Graph_(discrete_mathematics)">graph</a>-structured data, L27: * whose edges have associated non-unique values. L28: * L29: * <p>A graph is composed of a set of nodes and a set of edges connecting pairs of nodes. L30: * L31: * <p>There are three primary interfaces provided to represent graphs. In order of...
    github.com/google/guava/guava/src/com/google/co...
    Thu Oct 10 15:41:27 UTC 2024
      16K bytes
  3. ImmutableListMultimap.java

    multimap}. The generated L350: * multimap's key and value orderings correspond to the iteration ordering of the {@code L351: * multimap.asMap()} view. L352: * L353: * <p>Despite the method name, this method attempts to avoid actually copying the data when it is L354: * safe to do so. The exact circumstances under which a copy will or will not be performed are L355: * undocumented and subject to change. L356: * L357: * @throws NullPointerException if any key or value in {@code multimap}...
    github.com/google/guava/android/guava/src/com/g...
    Wed Oct 16 21:21:17 UTC 2024
      19.3K bytes
  4. IteratorsTest.java

    L1463: .withFeatures( L1464: ListFeature.GENERAL_PURPOSE, CollectionFeature.ALLOWS_NULL_VALUES, CollectionSize.ANY) L1465: .createTestSuite(); L1466: } L1467: L1468: public void testConsumingIterator() { L1469: // Test data L1470: List<String> list = Lists.newArrayList("a", "b"); L1471: L1472: // Test & Verify L1473: Iterator<String> consumingIterator = Iterators.consumingIterator(list.iterator()); L1474: L1475: assertEquals("Iterators.consumingIterator(...)",...
    github.com/google/guava/guava-tests/test/com/go...
    Wed Oct 30 16:15:19 UTC 2024
      54.1K bytes
  5. IteratorsTest.java

    L1463: .withFeatures( L1464: ListFeature.GENERAL_PURPOSE, CollectionFeature.ALLOWS_NULL_VALUES, CollectionSize.ANY) L1465: .createTestSuite(); L1466: } L1467: L1468: public void testConsumingIterator() { L1469: // Test data L1470: List<String> list = Lists.newArrayList("a", "b"); L1471: L1472: // Test & Verify L1473: Iterator<String> consumingIterator = Iterators.consumingIterator(list.iterator()); L1474: L1475: assertEquals("Iterators.consumingIterator(...)",...
    github.com/google/guava/android/guava-tests/tes...
    Wed Oct 30 16:15:19 UTC 2024
      54.1K bytes
  6. CHANGELOG-1.7.md

    -backend) capabilities through a customizable policy, pluggable audit backends, and richer audit data. L1557: L1558:#### Encryption at Rest L1559:* [alpha] Encrypt secrets stored in etcd. For more information, see [Securing a Cluster](https://kubernetes.io/docs/tasks/administer-cluster/securing-a-cluster/) and [Encrypting data at rest](https://kubernetes.io/docs/tasks/administer-cluster/encrypt-data/). L1560: L1561:#### Node Authorization L1562:* [beta] A new Node authorization mode and NodeRestriction...
    github.com/kubernetes/kubernetes/CHANGELOG/CHAN...
    Thu May 05 13:44:43 UTC 2022
      308.7K bytes
  7. OkHttpTest.kt

    ttp://squareup.com/robots.txt").build() L381: L382: try { L383: client.newCall(request).execute() L384: fail<Any>("expected cleartext blocking") L385: } catch (_: java.net.UnknownServiceException) { L386: } L387: } L388: L389: data class HowsMySslResults( L390: val unknown_cipher_suite_supported: Boolean, L391: val beast_vuln: Boolean, L392: val session_ticket_supported: Boolean, L393: val tls_compression_supported: Boolean, L394: val ephemeral_keys_supported:...
    github.com/square/okhttp/android-test/src/andro...
    Sat Jan 20 10:30:28 UTC 2024
      27K bytes
  8. CHANGELOG-1.31.md

    ([#125571](https://github.com/kubernetes/kubernetes/pull/125571), [@liggitt](https://github.com/liggitt)) [SIG API Machinery, Auth, Node, Scheduling and Testing] L611:- Kube-apiserver: ControllerRevision objects are now verified to contain valid JSON data in the `data` field. ([#125549](https://github.com/kubernetes/kubernetes/pull/125549), [@liggitt](https://github.com/liggitt)) [SIG API Machinery and Apps] L612:- Kube-apiserver: the `--encryption-provider-config` file is now loaded with strict deserialization,...
    github.com/kubernetes/kubernetes/CHANGELOG/CHAN...
    Wed Oct 23 12:18:32 UTC 2024
      315.4K bytes
  9. CHANGELOG-1.12.md

    huqiang)) Courtesy of SIG Apps, SIG Architecture, SIG Storage, and SIG Testing L1128:- The API server and client-go libraries have been fixed to support additional non-alpha-numeric characters in UserInfo "extra" data keys. Both should be updated in order to properly support extra data containing "/" characters or other characters disallowed in HTTP headers. ([#65799](https://github.com/kubernetes/kubernetes/pull/65799), [@dekkagaijin](https://github.com/dekkagaijin)) Courtesy of SIG Auth L1129:-...
    github.com/kubernetes/kubernetes/CHANGELOG/CHAN...
    Thu Feb 06 06:04:15 UTC 2020
      293.8K bytes
  10. TreeMultiset.java

    @GwtIncompatible // java.io.ObjectInputStream L1076: private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException { L1077: stream.defaultReadObject(); L1078: @SuppressWarnings("unchecked") L1079: // reading data stored by writeObject L1080: Comparator<? super E> comparator = (Comparator<? super E>) requireNonNull(stream.readObject()); L1081: Serialization.getFieldSetter(AbstractSortedMultiset.class, "comparator").set(this, comparator); L1082: Ser...
    github.com/google/guava/android/guava/src/com/g...
    Fri Oct 18 20:24:49 UTC 2024
      34.1K bytes
Back to top