Search Options

Results per page
Sort
Preferred Languages
Advance

Results 601 - 610 of 615 for sata (0.03 sec)

  1. TypeTokenTest.java

    .addEqualityGroup(new TypeToken<ArrayList<String>>() {}.constructor(oneArgConstructor)) L1682: .testEquals(); L1683: } L1684: L1685: private static class Container<T> { L1686: @SuppressWarnings("unused") L1687: public Container(T data) {} L1688: } L1689: L1690: public <T extends Container<String>> void testConstructor_parameterTypes() L1691: throws NoSuchMethodException { L1692: @SuppressWarnings("rawtypes") // Reflection API skew L1693: Constructor<Container> constructor...
    github.com/google/guava/guava-tests/test/com/go...
    Mon Oct 21 21:13:09 UTC 2024
      89.1K bytes
  2. ImmutableMap.java

    (for example, if it is a {@code SortedMap} whose L681: * comparator is not <i>consistent with equals</i>), the results of this method are undefined. L682: * L683: * <p>Despite the method name, this method attempts to avoid actually copying the data when it is L684: * safe to do so. The exact circumstances under which a copy will or will not be performed are L685: * undocumented and subject to change. L686: * L687: * @throws NullPointerException if any key or value in {@code map} is null...
    github.com/google/guava/guava/src/com/google/co...
    Wed Oct 30 16:15:19 UTC 2024
      44.6K bytes
  3. bootstrap.min.css

    rgba(0,123,255,.25)}.custom-file-input:disabled~.custom-file-label,.custom-file-input[disabled]~.custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;overflow:hidden;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;border:1px solid...
    github.com/codelibs/fess/src/main/webapp/css/ad...
    Sat Oct 26 01:49:09 UTC 2024
      158.5K bytes
  4. InetAddresses.java

    ress ip) { L733: checkArgument(is6to4Address(ip), "Address '%s' is not a 6to4 address.", toAddrString(ip)); L734: L735: return getInet4Address(Arrays.copyOfRange(ip.getAddress(), 2, 6)); L736: } L737: L738: /** L739: * A simple immutable data class to encapsulate the information to be found in a Teredo address. L740: * L741: * <p>All of the fields in this class are encoded in various portions of the IPv6 address as part L742: * of the protocol. More protocols details can be found...
    github.com/google/guava/android/guava/src/com/g...
    Sat Oct 19 00:26:48 UTC 2024
      47.1K bytes
  5. Iterators.java

    containing the elements of {@code array} in order. The returned iterator is L1050: * a view of the array; subsequent changes to the array will be reflected in the iterator. L1051: * L1052: * <p><b>Note:</b> It is often preferable to represent your data using a collection type, for L1053: * example using {@link Arrays#asList(Object[])}, making this method unnecessary. L1054: * L1055: * <p>The {@code Iterable} equivalent of this method is either {@link Arrays#asList(Object[])}, L1056: * {@link...
    github.com/google/guava/android/guava/src/com/g...
    Wed Oct 30 16:15:19 UTC 2024
      50.3K bytes
  6. CallTest.kt

    .hostnameVerifier(RecordingHostnameVerifier()) L4629: .build() L4630: server.useHttps(handshakeCertificates.sslSocketFactory()) L4631: } L4632: L4633: private fun gzip(data: String): Buffer { L4634: val result = Buffer() L4635: val sink = GzipSink(result).buffer() L4636: sink.writeUtf8(data) L4637: sink.close() L4638: return result L4639: } L4640: L4641: private fun cancelLater( L4642: call: Call, L4643: delay: Long, L4644: ): Thread { L4645: val thread...
    github.com/square/okhttp/okhttp/src/test/java/o...
    Wed Apr 10 19:46:48 UTC 2024
      142.5K bytes
  7. baseline-prof.txt

    ReaderRunnable;-><init>(Lokhttp3/internal/http2/Http2Connection;Lokhttp3/internal/http2/Http2Reader;)V L901:HSPLokhttp3/internal/http2/Http2Connection$ReaderRunnable;->ackSettings()V L902:HSPLokhttp3/internal/http2/Http2Connection$ReaderRunnable;->data(ZILokio/BufferedSource;I)V L903:HSPLokhttp3/internal/http2/Http2Connection$ReaderRunnable;->headers(ZIILjava/util/List;)V L904:HSPLokhttp3/internal/http2/Http2Connection$ReaderRunnable;->invoke()Ljava/lang/Object; L905:HSPLokhttp3/internal/http2/H...
    github.com/square/okhttp/okhttp-android/src/mai...
    Mon Mar 21 11:22:00 UTC 2022
      127.9K bytes
  8. DiskLruCacheTest.kt

    L376: a.setString(1, "a2") L377: a.commit() L378: assertAbsent("a") L379: } L380: L381: /** L382: * Each read sees a snapshot of the file at the time read was called. This means that two reads of L383: * the same key can see different data. L384: */ L385: @ParameterizedTest L386: @ArgumentsSource(FileSystemParamProvider::class) L387: fun readAndWriteOverlapsMaintainConsistency(parameters: Pair<FileSystem, Boolean>) { L388: setUp(parameters.first, parameters.second) L389: ...
    github.com/square/okhttp/okhttp/src/test/java/o...
    Mon Apr 15 14:55:09 UTC 2024
      75.8K bytes
  9. Futures.java

    L114: // For a (long) discussion about this specific issue and the general futility of life. L115: // L116: // For the time being we are OK with the problem discussed above since it requires a caller to L117: // introduce a very specific kind of data-race. And given the other operations performed by these L118: // methods that involve volatile read/write operations, in practice there is no issue. Also, the L119: // way in such a visibility issue would surface is most likely as a failure of cancel()...
    github.com/google/guava/guava/src/com/google/co...
    Fri Oct 25 13:13:32 UTC 2024
      64.4K bytes
  10. TypeTokenTest.java

    .addEqualityGroup(new TypeToken<ArrayList<String>>() {}.constructor(oneArgConstructor)) L1682: .testEquals(); L1683: } L1684: L1685: private static class Container<T> { L1686: @SuppressWarnings("unused") L1687: public Container(T data) {} L1688: } L1689: L1690: public <T extends Container<String>> void testConstructor_parameterTypes() L1691: throws NoSuchMethodException { L1692: @SuppressWarnings("rawtypes") // Reflection API skew L1693: Constructor<Container> constructor...
    github.com/google/guava/android/guava-tests/tes...
    Mon Oct 21 21:13:09 UTC 2024
      89.1K bytes
Back to top