- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 146 for store64 (0.1 seconds)
-
android/guava/src/com/google/common/hash/LittleEndianByteArray.java
} return result; } /** * Store 8 bytes into the provided array at the indicated offset, using the value provided. * * @param sink the output byte array * @param offset the offset into the array at which to start writing * @param value the value to write */ static void store64(byte[] sink, int offset, long value) { // We don't want to assert in production code.Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Apr 01 17:27:13 GMT 2026 - 10.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/ds/DataStoreFactoryTest.java
} // Test multiple data store registration @Test public void test_multipleDataStores() { TestDataStore dataStore1 = new TestDataStore("Store1"); TestDataStore2 dataStore2 = new TestDataStore2("Store2"); dataStoreFactory.add("store1", dataStore1); dataStoreFactory.add("store2", dataStore2);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 18.2K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/DiskLruCache.kt
* bytes in length. * * The cache stores its data in a directory on the filesystem. This directory must be exclusive to * the cache; the cache may delete or overwrite files from its directory. It is an error for * multiple processes to use the same cache directory at the same time. * * This cache limits the number of bytes that it will store on the filesystem. When the number of
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Jan 27 09:00:39 GMT 2026 - 34.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackTest.java
// Test store method DataStoreParams params = new DataStoreParams(); Map<String, Object> data = new HashMap<>(); data.put("key1", "value1"); callback.store(params, data); assertEquals(1L, callback.getDocumentSize()); assertEquals(100L, callback.getExecuteTime()); // Test multiple stores callback.store(params, data);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 12.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/job/ScriptExecutorJobTest.java
params.put(Constants.JOB_LOG_ID, "should-not-be-stored"); final MockJobRuntime runtime = MockJobRuntime.of(ScriptExecutorJob.class, op -> op.params(() -> params)); final TestableScriptExecutorJob job = new TestableScriptExecutorJob(); job.process(runtime); // When logging is disabled, store() is never called assertNull(storedJobLog.get()); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:55:54 GMT 2026 - 13.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/exec/Crawler.java
logger.warn("Failed to store crawling information: sessionId={}", options.sessionId, e); } try { return crawler.doCrawl(options); } finally { try { crawlingInfoHelper.store(options.sessionId, false); } catch (final Exception e) { logger.warn("Failed to store crawling information: sessionId={}", options.sessionId, e);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 32.4K bytes - Click Count (0) -
build-logic/src/main/kotlin/BndBuildAction.kt
if (builder.getProperty(Constants.COMPRESSION) == null) { builder.setProperty( Constants.COMPRESSION, when (entryCompression) { ZipEntryCompression.STORED -> Jar.Compression.STORE.name else -> Jar.Compression.DEFLATE.name }, ) } bundleJar.updateModified(archiveFile.lastModified(), "time of Jar task generated jar")
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Thu Feb 05 09:17:33 GMT 2026 - 8.9K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/CacheStrategy.kt
if (request.isHttps && cacheResponse.handshake == null) { return CacheStrategy(request, null) } // If this response shouldn't have been stored, it should never be used as a response source. // This check should be redundant as long as the persistence store is well-behaved and the // rules are constant. if (!isCacheable(cacheResponse, request)) { return CacheStrategy(request, null) }
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Jan 27 09:00:39 GMT 2026 - 12.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java
String sessionCountId1 = crawlingConfigHelper.store(sessionId, crawlingConfigHelper.getCrawlingConfig("W1")); assertEquals("testSession-1", sessionCountId1); String sessionCountId2 = crawlingConfigHelper.store(sessionId, crawlingConfigHelper.getCrawlingConfig("W2")); assertEquals("testSession-2", sessionCountId2);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 35.3K bytes - Click Count (0) -
android/guava/src/com/google/thirdparty/publicsuffix/PublicSuffixTrie.java
import java.util.List; import org.jspecify.annotations.Nullable; /** * A memory-efficient binary trie structure for public suffix lookups. The trie is stored as a * series of 16-bit characters in a String. * * <p>The trie data is stored in a {@link CharSequence} where each node takes 3 characters: * * <ol> * <li>The offset of the label in the {@code stringPool}.Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 03 21:21:59 GMT 2026 - 9.1K bytes - Click Count (0)