Search Options

Results per page
Sort
Preferred Languages
Advance

Results 511 - 520 of 615 for sata (0.04 sec)

  1. https.md

    sl.googlesource.com/boringssl/) and less out of date hosts running older versions of [OpenSSL](https://www.openssl.org/). L7: * **Security** of the connection. This includes verification of the remote webserver with certificates and the privacy of data exchanged with strong ciphers. L8: L9:When negotiating a connection to an HTTPS server, OkHttp needs to know which [TLS versions](https://square.github.io/okhttp/4.x/okhttp/okhttp3/-tls-version/) and [cipher suites](https://square.github.io/okhttp...
    github.com/square/okhttp/docs/features/https.md
    Sat Dec 24 00:16:30 UTC 2022
      10.5K bytes
  2. CrawlJob.java

    } L134: } else { L135: for (final String id : fileConfigIds) { L136: resultBuf.append(' ').append(id); L137: } L138: resultBuf.append('\n'); L139: } L140: resultBuf.append("Data Config Id:"); L141: if (dataConfigIds == null) { L142: if (runAll) { L143: resultBuf.append(" ALL\n"); L144: } else { L145: resultBuf.append(" NONE\n"); L146: } L147: } else...
    github.com/codelibs/fess/src/main/java/org/code...
    Sun Jun 23 04:13:47 UTC 2024
      15.1K bytes
  3. ImmutableBiMap.java

    undefined. L506: * L507: * <p>The returned {@code BiMap} iterates over entries in the same order as the {@code entrySet} L508: * of the original map. L509: * L510: * <p>Despite the method name, this method attempts to avoid actually copying the data when it is L511: * safe to do so. The exact circumstances under which a copy will or will not be performed are L512: * undocumented and subject to change. L513: * L514: * @throws IllegalArgumentException if two keys have the same value or two...
    github.com/google/guava/android/guava/src/com/g...
    Wed Oct 16 21:21:17 UTC 2024
      22.2K bytes
  4. CacheTest.kt

    Int, L3589: ) { L3590: setBody(response, Buffer().writeUtf8(content), chunkSize) L3591: } L3592: } L3593: L3594: /** Returns a gzipped copy of `bytes`. */ L3595: fun gzip(data: String): Buffer { L3596: val result = Buffer() L3597: val sink = GzipSink(result).buffer() L3598: sink.writeUtf8(data) L3599: sink.close() L3600: return result L3601: } L3602: L3603: companion object { L3604: private val NULL_HOSTNAME_VERIFIER = HostnameVerifier { hostname, session -> true...
    github.com/square/okhttp/okhttp/src/test/java/o...
    Wed Apr 10 19:46:48 UTC 2024
      108.6K bytes
  5. CHANGELOG-1.25.md

    L2297:### Introduced KMS v2 L2298: L2299:Introduce KMS v2alpha1 API to add performance, rotation, and observability improvements. Encrypt data at rest (ie Kubernetes `Secrets`) with DEK using AES-GCM instead of AES-CBC for kms data encryption. No user action is required. Reads with AES-GCM and AES-CBC will continue to be allowed. See the guide [Using a KMS provider for data encryption](https://kubernetes.io/docs/tasks/administer-cluster/kms-provider/) for more information. L2300: L2301:### Kube-proxy images...
    github.com/kubernetes/kubernetes/CHANGELOG/CHAN...
    Mon May 06 09:23:20 UTC 2024
      419.1K bytes
  6. Adapters.kt

    L332: val dateFormat = L333: SimpleDateFormat("yyyyMMddHHmmss'Z'").apply { L334: timeZone = utc L335: } L336: L337: return dateFormat.format(date) L338: } L339: L340: /** L341: * Returns a composite adapter for a struct or data class. This may be used for both SEQUENCE and L342: * SET types. L343: * L344: * The fields are specified as a list of member adapters. When decoding, a value for each L345: * non-optional member but be included in sequence. L346: * L347:...
    github.com/square/okhttp/okhttp-tls/src/main/ko...
    Mon Jan 08 01:13:22 UTC 2024
      15K bytes
  7. Tables.java

    support {@code L347: * remove()}. Otherwise, all optional operations are supported. Null row keys, columns keys, and L348: * values are not supported. L349: * L350: * <p>Lookups by row key are often faster than lookups by column key, because the data is stored L351: * in a {@code Map<R, Map<C, V>>}. A method call like {@code column(columnKey).get(rowKey)} still L352: * runs quickly, since the row key is provided. However, {@code column(columnKey).size()} takes L353: * longer, since an iteration...
    github.com/google/guava/android/guava/src/com/g...
    Wed Oct 16 21:21:17 UTC 2024
      26.3K bytes
  8. Network.java

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

    We then look up the keys in alternatingKeysAndValues. L61: * L62: * (The index actually stored is the index of the key in alternatingKeysAndValues, which is L63: * double the index of the entry in entrySet.asList.) L64: * L65: * The basic data structure is described in https://en.wikipedia.org/wiki/Open_addressing. L66: * The pointer to a key is stored in hashTable[Hashing.smear(key.hashCode()) % table.length], L67: * save that if that location is already full, we try the next index,...
    github.com/google/guava/android/guava/src/com/g...
    Mon Apr 15 22:32:14 UTC 2024
      22.7K bytes
  10. CHANGELOG-1.9.md

    @liggitt](https://github.com/liggitt)) L1192:* KMS: Alpha integration with GCP KMS was removed in favor of a future out-of-process extension point. Discontinue use of the GCP KMS integration and ensure [data has been decrypted](https://kubernetes.io/docs/tasks/administer-cluster/encrypt-data/#decrypting-all-data) (or reencrypted with a different provider) before upgrading ([#54759](https://github.com/kubernetes/kubernetes/pull/54759),[ @sakshamsharma](https://github.com/sakshamsharma)) L1193: L1194:### **CLI**...
    github.com/kubernetes/kubernetes/CHANGELOG/CHAN...
    Tue Nov 16 10:46:27 UTC 2021
      313.7K bytes
Back to top