Search Options

Results per page
Sort
Preferred Languages
Advance

Results 421 - 430 of 615 for sata (0.02 sec)

  1. CacheStrategy.kt

    out whether to use the network, the cache, or L40: * both. L41: * L42: * Selecting a cache strategy may add conditions to the request (like the "If-Modified-Since" header L43: * for conditional GETs) or warnings to the cached response (if the cached data is potentially L44: * stale). L45: */ L46:class CacheStrategy internal constructor( L47: /** The request to send on the network, or null if this call doesn't use the network. */ L48: val networkRequest: Request?, L49: /** The cached response to...
    github.com/square/okhttp/okhttp/src/main/kotlin...
    Mon Apr 15 13:24:48 UTC 2024
      12K bytes
  2. SequentialExecutor.java

    L117: // it. To preserve FIFO order and failure atomicity of rejected execution when the same L118: // Runnable is executed more than once, allocate a wrapper that we know is safe to remove by L119: // object identity. L120: // A data structure that returned a removal handle from add() would allow eliminating this L121: // allocation. L122: submittedTask = L123: new Runnable() { L124: @Override L125: public void run() { L126: ...
    github.com/google/guava/android/guava/src/com/g...
    Thu Feb 01 21:46:34 UTC 2024
      10.6K bytes
  3. SequentialExecutor.java

    L117: // it. To preserve FIFO order and failure atomicity of rejected execution when the same L118: // Runnable is executed more than once, allocate a wrapper that we know is safe to remove by L119: // object identity. L120: // A data structure that returned a removal handle from add() would allow eliminating this L121: // allocation. L122: submittedTask = L123: new Runnable() { L124: @Override L125: public void run() { L126: ...
    github.com/google/guava/guava/src/com/google/co...
    Thu Feb 01 21:46:34 UTC 2024
      10.6K bytes
  4. LittleEndianByteArray.java

    input to read L62: * @return a long of a concatenated 8 bytes L63: */ L64: static long load64Safely(byte[] input, int offset, int length) { L65: long result = 0; L66: // Due to the way we shift, we can stop iterating once we've run out of data, the rest L67: // of the result already being filled with zeros. L68: L69: // This loop is critical to performance, so please check HashBenchmark if altering it. L70: int limit = min(length, 8); L71: for (int i = 0; i < limit; i++) { L72:...
    github.com/google/guava/guava/src/com/google/co...
    Sat Oct 19 00:26:48 UTC 2024
      9.8K bytes
  5. html5shiv.min.js

    ");var a=b.createDocumentFragment();return"undefined"==typeof a.cloneNode||"undefined"==typeof a.createDocumentFragment||"undefined"==typeof a.createElement}()}catch(c){k=!0,l=!0}}();var t={elements:n.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output picture progress section summary template time video",version:m,shivCSS:n.shivCSS!==!1,supportsUnknownElements:l,shivMethods:n.shivMethods!==!1,type:"default...
    github.com/codelibs/fess/src/main/webapp/css/ad...
    Sun Dec 31 23:16:54 UTC 2017
      2.7K bytes
  6. ClusterException.java

    ting; L18: L19:import com.google.common.annotations.GwtCompatible; L20:import java.util.ArrayList; L21:import java.util.Arrays; L22:import java.util.Collection; L23:import java.util.Collections; L24: L25:/** L26: * An {@link ClusterException} is a data structure that allows for some code to "throw multiple L27: * exceptions", or something close to it. The prototypical code that calls for this class is L28: * presented below: L29: * L30: * <pre> L31: * void runManyThings({@literal List<ThingToRun>}...
    github.com/google/guava/android/guava-testlib/s...
    Wed Apr 26 20:07:17 UTC 2023
      4K bytes
  7. LinkedListMultimap.java

    (); L881: keyToKeyList = Maps.newLinkedHashMap(); L882: int size = stream.readInt(); L883: for (int i = 0; i < size; i++) { L884: @SuppressWarnings("unchecked") // reading data stored by writeObject L885: K key = (K) stream.readObject(); L886: @SuppressWarnings("unchecked") // reading data stored by writeObject L887: V value = (V) stream.readObject(); L888: put(key, value); L889: } L890: } L891: L892: @GwtIncompatible // java serialization not supported L893:...
    github.com/google/guava/guava/src/com/google/co...
    Fri Oct 13 14:11:58 UTC 2023
      27.5K bytes
  8. ConcurrentHashMultiset.java

    count(@CheckForNull Object element) { L146: AtomicInteger existingCounter = safeGet(countMap, element); L147: return (existingCounter == null) ? 0 : existingCounter.get(); L148: } L149: L150: /** L151: * {@inheritDoc} L152: * L153: * <p>If the data in the multiset is modified by any other threads during this method, it is L154: * undefined which (if any) of these modifications will be reflected in the result. L155: */ L156: @Override L157: public int size() { L158: long sum = 0L; L159:...
    github.com/google/guava/android/guava/src/com/g...
    Wed Oct 30 16:15:19 UTC 2024
      21.1K bytes
  9. MediaType.java

    * constant ({@code application/cbor}) is used for the Concise Binary Object Representation (CBOR) L465: * data format. L466: * L467: * @since NEXT L468: */ L469: public static final MediaType CBOR = createConstant(APPLICATION_TYPE, "cbor"); L470: L471: /** L472: * Media type for the <a href="https://tools.ietf.org/html/rfc7946">GeoJSON Format</a>, a L473: * geospatial data interchange format based on JSON. L474: * L475: * @since 28.0 L476: */ L477: public static final MediaType...
    github.com/google/guava/guava/src/com/google/co...
    Thu Sep 26 19:15:09 UTC 2024
      47.5K bytes
  10. Table.java

    given row key may be viewed as a {@link Map} whose keys are L36: * the columns. The reverse is also available, associating a column with a row key / value map. Note L37: * that, in some implementations, data access by column key may have fewer supported operations or L38: * worse performance than data access by row key. L39: * L40: * <p>The methods returning collections or maps always return views of the underlying table. L41: * Updating the table can change the contents of those collections, and updating...
    github.com/google/guava/guava/src/com/google/co...
    Sat Jun 17 14:40:53 UTC 2023
      10.7K bytes
Back to top