- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 72 for lookup (0.08 sec)
-
src/main/java/org/codelibs/fess/query/QueryProcessor.java
// Default constructor } private static final Logger logger = LogManager.getLogger(QueryProcessor.class); /** * Map of query commands indexed by query class simple names. * Used to lookup appropriate command handlers for different query types. */ protected Map<String, QueryCommand> queryCommandMap = new HashMap<>(); /** * List of filters that will be applied during query processing.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 7.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/EntraIdCredential.java
this.roles = roles; } /** * Resets permissions to force recalculation on next getPermissions() call. * This is called after asynchronous parent group lookup completes. */ public void resetPermissions() { this.permissions = null; } }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 7.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtAddress.java
NbtAddress addr; if (name.hexCode == 0x1d && svr == null) { svr = CLIENT.baddr; // bit of a hack but saves a lookup } name.srcHashCode = svr != null ? svr.hashCode() : 0; addr = getCachedAddress(name); if (addr == null) { addr = (NbtAddress) checkLookupTable(name);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.7K bytes - Viewed (0) -
src/main/java/jcifs/netbios/UniAddress.java
dots++; i++; } } } return false; } /** * Perform DNS SRV lookup on successively shorter suffixes of name * and return successful suffix or throw an UnknownHostException. * import javax.naming.*; * import javax.naming.directory.*;Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/Kerb5Authenticator.java
// While we could look up the domain controller/KDC we cannot really make the java kerberos implementation // use a KDC of our choice. // A potential workaround would be to try to get the server FQDN by reverse lookup, but this might have // security implications and also is not how Microsoft does it.Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 13.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Dfs.java
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 14.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryCommand.java
} return SortBuilders.fieldSort(field).order(order); } /** * Checks if the specified field is a search field. * Uses O(1) Set lookup for improved performance. * @param field The field name to check. * @return True if the field is a search field, false otherwise. */ protected boolean isSearchField(final String field) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sun Nov 23 11:39:05 UTC 2025 - 11.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/converter/AnalyzerConverterTest.java
try { List<String> results = langConverter.convert("test", "content"); assertNotNull(results); } catch (Exception e) { // Null language might cause issues with analyzer lookup assertNotNull(e); } } @Test public void testConvertWithNumbersAndSymbols() throws IOException { // Test convert with numbers and symbolsRegistered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 12.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
* This method handles the resolution of SPNEGO credentials by checking * if the user is an admin user or needs to be authenticated through LDAP. * * @param resolver The credential resolver to use for user lookup */ @Override public void resolveCredential(final LoginCredentialResolver resolver) { resolver.resolve(SpnegoCredential.class, credential -> {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 17.8K bytes - Viewed (3) -
src/main/java/jcifs/smb/SmbResourceLocatorImpl.java
this.addresses = this.ctx.getNameServiceClient().getAllByName(host, false); } } catch (final UnknownHostException e) { throw new CIFSException("Failed to lookup address for name " + host, e); } } return getNextAddress(); } Address getNextAddress() { Address addr = null;
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 23.6K bytes - Viewed (0)