- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 43 for LookUp (0.05 seconds)
-
src/test/java/org/codelibs/fess/query/QueryFieldConfigSetBasedLookupTest.java
// Set-based lookup should be significantly faster // Note: This is a rough check - exact performance depends on JVM, hardware, etc. // We expect Set lookup to be at least as fast as array lookup for large datasets assertTrue("Set-based lookup should be faster or comparable to array-based lookup for large datasets",Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 19.4K bytes - Click Count (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/FakeDns.kt
hostAddresses.remove(hostname) return this } @Throws(UnknownHostException::class) fun lookup( hostname: String, index: Int, ): InetAddress = hostAddresses[hostname]!![index] @Throws(UnknownHostException::class) override fun lookup(hostname: String): List<InetAddress> { requestedHosts.add(hostname) return hostAddresses[hostname] ?: throw UnknownHostException() }
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Feb 04 20:20:29 GMT 2026 - 2.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/query/QueryCommandTemplateMethodTest.java
queryFieldConfig.setSearchFields(fields); // Test field at the end (worst case for array lookup, but same for Set) String testField = "field999"; // Warm up for (int i = 0; i < 100; i++) { queryCommand.isSearchField(testField); } // Measure Set-based lookup long startTime = System.nanoTime(); for (int i = 0; i < 10000; i++) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 12.5K bytes - Click Count (0) -
src/cmd/asm/internal/arch/arch.go
return word == "JMP" || word == "CALL" || word == "Call" || word == "Br" || word == "BrIf" } func archX86(linkArch *obj.LinkArch) *Arch { register := make(map[string]int16) // Create maps for easy lookup of instruction names etc. for i, s := range x86.Register { register[s] = int16(i + x86.REG_AL) } // Pseudo-registers. register["SB"] = RSB register["FP"] = RFP register["PC"] = RPC
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Fri Mar 20 17:02:17 GMT 2026 - 22K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java
// Retrieve direct groups synchronously (parent group lookup is deferred) processDirectMemberOf(user, groupList, roleList, groupIdsForParentLookup, "https://graph.microsoft.com/v1.0/me/memberOf"); if (logger.isDebugEnabled()) { logger.debug("[updateMemberOf] Direct groups retrieved. Total groups: {}, Total roles: {}, Group IDs for parent lookup: {}",Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 08:03:27 GMT 2026 - 56.8K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2.kt
const val FLAG_COMPRESSED = 0x20 // Used for data. /** Lookup table for valid frame types. */ private val FRAME_NAMES = arrayOf( "DATA", "HEADERS", "PRIORITY", "RST_STREAM", "SETTINGS", "PUSH_PROMISE", "PING", "GOAWAY", "WINDOW_UPDATE", "CONTINUATION", ) /**Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Jan 27 09:00:39 GMT 2026 - 5.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/SsoProcessExceptionTest.java
// Test deeply nested exception causes Exception level3 = new Exception("Level 3: Database connection failed"); Exception level2 = new Exception("Level 2: User lookup failed", level3); Exception level1 = new Exception("Level 1: Authentication service error", level2); SsoProcessException topLevel = new SsoProcessException("SSO process failed", level1);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 13.8K bytes - Click Count (0) -
android/guava/src/com/google/thirdparty/publicsuffix/PublicSuffixTrie.java
int chunkShift) { this.trieData = new ChunksCharSequence(trieDataChunks, chunkShift); this.stringPool = new ChunksCharSequence(stringPoolChunks, chunkShift); } /** * Performs a lookup for the public suffix of the given labels, considering all public suffix * types. Returns the index of the leftmost label in the public suffix, or -1 if no match found. *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) -
src/test/java/org/codelibs/fess/helper/RelatedQueryHelperTest.java
} @Test public void test_load_sameTermDifferentHosts() { List<RelatedQuery> testData = new ArrayList<>(); testData.add(createRelatedQuery("search", new String[] { "find", "lookup" }, "site1.com")); testData.add(createRelatedQuery("search", new String[] { "query", "discover" }, "site2.com")); mockBhv.setTestData(testData); relatedQueryHelper.load();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 16.7K bytes - Click Count (0) -
build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/model/License.kt
), ), MIT( "MIT License", "https://opensource.org/licenses/MIT", listOf("The MIT License", "MIT License", "MIT"), ); companion object { /** Lookup map built lazily from all [aliases] across all entries. */ val byPomName: Map<String, License> by lazy { entries.flatMap { lic -> lic.aliases.map { alias -> alias to lic } }.toMap() }Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Mar 13 13:24:46 GMT 2026 - 3.9K bytes - Click Count (0)