- Sort Score
- Result 10 results
- Languages All
Results 311 - 320 of 614 for sata (0.02 sec)
-
HashBiMap.java
hashTableVToK[valueBucket]; L411: hashTableVToK[valueBucket] = entry; L412: } L413: L414: /** L415: * Updates the K-to-V hash table to remove the entry at the specified index, which is assumed to L416: * be present. Does not update any other data structures. L417: */ L418: private void deleteFromTableKToV(int entry, int keyHash) { L419: checkArgument(entry != ABSENT); L420: int keyBucket = bucket(keyHash); L421: L422: if (hashTableKToV[keyBucket] == entry) { L423: hashTableKToV[keyBucket]...github.com/google/guava/android/guava/src/com/g...Mon Mar 06 16:06:58 UTC 2023 36.4K bytes -
README.md
L1:OkHttp L2:====== L3: L4:See the [project website][okhttp] for documentation and APIs. L5: L6:HTTP is the way modern applications network. It’s how we exchange data & media. Doing HTTP L7:efficiently makes your stuff load faster and saves bandwidth. L8: L9:OkHttp is an HTTP client that’s efficient by default: L10: L11: * HTTP/2 support allows all requests to the same host to share a socket. L12: * Connection pooling reduces request latency (if HTTP/2 isn’t available). L13: * Transparent GZIP shrinks...github.com/square/okhttp/README.mdWed Dec 20 23:27:07 UTC 2023 6.2K bytes -
CollectionBenchmarkSampleData.java
com.google.common.base.Preconditions.checkNotNull; L20:import static java.util.Collections.shuffle; L21: L22:import java.util.List; L23:import java.util.Set; L24:import org.checkerframework.checker.nullness.qual.Nullable; L25: L26:/** L27: * Package up sample data for common collections benchmarking. L28: * L29: * @author Nicholaus Shupe L30: */ L31:class CollectionBenchmarkSampleData { L32: private final boolean isUserTypeFast; L33: private final SpecialRandom random; L34: private final double hitRate; L35:...github.com/google/guava/android/guava-tests/tes...Wed Oct 30 16:15:19 UTC 2024 4.1K bytes -
FessMessages.java
/** The key of the message: Failed to create a new data. */ L390: public static final String ERRORS_crud_failed_to_create_instance = "{errors.crud_failed_to_create_instance}"; L391: L392: /** The key of the message: Failed to create a new data. ({0}) */ L393: public static final String ERRORS_crud_failed_to_create_crud_table = "{errors.crud_failed_to_create_crud_table}"; L394: L395: /** The key of the message: Failed to update the data. ({0}) */ L396: public static final String ERR...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 119.9K bytes -
FessCrawlerConfig.java
L24: return ComponentUtil.getFessConfig().getIndexDocumentCrawlerIndex() + ".queue"; L25: } L26: L27: @Override L28: public String getDataIndex() { L29: return ComponentUtil.getFessConfig().getIndexDocumentCrawlerIndex() + ".data"; L30: } L31: L32: @Override L33: public String getFilterIndex() { L34: return ComponentUtil.getFessConfig().getIndexDocumentCrawlerIndex() + ".filter"; L35: } L36: L37: @Override L38: public int getQueueShards() { L39: ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.1K bytes -
SynchronizedTableTest.java
static final long serialVersionUID = 0; L164: } L165: L166: @Override L167: protected Table<String, Integer, Character> create(@Nullable Object... data) { L168: TestTable<String, Integer, Character> table = new TestTable<>(); L169: Table<String, Integer, Character> synced = Synchronized.table(table, table.mutex); L170: populate(synced, data); L171: return synced; L172: } L173:}...github.com/google/guava/android/guava-tests/tes...Tue Aug 06 17:23:04 UTC 2024 4.6K bytes -
Cache.kt
L53:import okio.buffer L54: L55:/** L56: * Caches HTTP and HTTPS responses to the filesystem so they may be reused, saving time and L57: * bandwidth. L58: * L59: * The Cache instance must have exclusive access to the [directory], since the internal data structures L60: * may cause corruption or runtime errors if not. It may however be shared amongst multiple OkHttpClient L61: * instances. L62: * L63: * ## Cache Optimization L64: * L65: * To measure cache effectiveness, this class tracks three statistics:...github.com/square/okhttp/okhttp/src/main/kotlin...Wed Apr 10 19:46:48 UTC 2024 26.8K bytes -
admin_esreq.jsp
<h1> L22: <la:message key="labels.esreq_configuration" /> L23: </h1> L24: </div> L25: </div> L26: </div> L27: </div> L28: <section class="content"> L29: <la:form action="/admin/esreq/upload/" enctype="multipart/form-data"> L30: <div class="col-md-12"> L31: <la:info id="msg" message="true"> L32: <div class="alert alert-info">${msg}</div> L33: </la:info> L34: <la:errors /> L35: </div> L36: <div class="col-md-12"> L37: <div class="card...github.com/codelibs/fess/src/main/webapp/WEB-IN...Thu Feb 20 09:26:42 UTC 2020 2.3K bytes -
AnyValue.kt
L15: */ L16:package okhttp3.tls.internal.der L17: L18:import okio.ByteString L19: L20:/** L21: * A value whose type is not specified statically. Use this with [Adapters.any] which will attempt L22: * to resolve a concrete type. L23: */ L24:internal data class AnyValue( L25: var tagClass: Int, L26: var tag: Long, L27: var constructed: Boolean = false, L28: var length: Long = -1L, L29: val bytes: ByteString, L30:) { L31: // Avoid Long.hashCode(long) which isn't available on Android 5. L32: override...github.com/square/okhttp/okhttp-tls/src/main/ko...Mon Jan 08 01:13:22 UTC 2024 1.3K bytes -
Streams.java
fficiently splittable</a> L455: * if and only if {@code stream} was efficiently splittable and its underlying spliterator L456: * reported {@link Spliterator#SUBSIZED}. This is generally the case if the underlying stream L457: * comes from a data structure supporting efficient indexed random access, typically an array or L458: * list. L459: * L460: * <p>The order of the resulting stream is defined if and only if the order of the original stream L461: * was defined. L462: */ L463:...github.com/google/guava/android/guava/src/com/g...Thu Oct 31 14:20:11 UTC 2024 37.4K bytes