- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 177 for LookUp (0.04 seconds)
-
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/ParserRequest.java
} } private static final Lookup EMPTY_LOOKUP = new Lookup() { @Override public <T> T lookup(Class<T> type) { throw new LookupException("empty lookup"); } @Override public <T> T lookup(Class<T> type, String name) { throw new LookupException("empty lookup"); } @OverrideCreated: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sat Jun 07 06:22:47 GMT 2025 - 15.9K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/toolchain/ToolchainManagerFactory.java
@Singleton @Deprecated(since = "4.0.0") public class ToolchainManagerFactory { private final Lookup lookup; private final Logger logger; @Inject ToolchainManagerFactory(Lookup lookup) { this(lookup, null); } protected ToolchainManagerFactory(Lookup lookup, Logger logger) { this.lookup = lookup; this.logger = logger; } @ProvidesCreated: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 31 10:58:52 GMT 2025 - 11K bytes - Click Count (0) -
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) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultTypeRegistry.java
private final Lookup lookup; private final LanguageRegistry languageRegistry; private final ConcurrentHashMap<String, Type> usedTypes; private final LegacyArtifactHandlerManager manager; @Inject public DefaultTypeRegistry(Lookup lookup, LanguageRegistry languageRegistry, LegacyArtifactHandlerManager manager) { this.lookup = requireNonNull(lookup, "lookup cannot be null");Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed May 14 04:47:58 GMT 2025 - 4K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/configuration/internal/EnhancedConfigurationConverter.java
final Object bean = instantiateObject(implType); if (null == value) { processConfiguration(lookup, bean, loader, configuration, evaluator, listener); } else { // Use optimized helper for better performance new EnhancedCompositeBeanHelper(lookup, loader, evaluator, listener) .setDefault(bean, value, configuration); }
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Jul 17 07:40:49 GMT 2025 - 6.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/query/QueryFieldConfig.java
protected String[] searchFields; /** Set of fields that can be searched against for O(1) lookup */ protected Set<String> searchFieldSet; /** Array of fields that can be used for faceted search */ protected String[] facetFields; /** Set of fields that can be used for faceted search for O(1) lookup */ protected Set<String> facetFieldSet;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 21.9K bytes - Click Count (0) -
android/guava/src/com/google/common/cache/CacheStats.java
* * <p>Cache statistics are incremented according to the following rules: * * <ul> * <li>When a cache lookup encounters an existing cache entry {@code hitCount} is incremented. * <li>When a cache lookup first encounters a missing cache entry, a new entry is loaded. * <ul> * <li>After successfully loading an entry {@code missCount} and {@code loadSuccessCount}
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Jul 08 18:32:10 GMT 2025 - 12.6K bytes - Click Count (0) -
guava/src/com/google/common/cache/CacheStats.java
* * <p>Cache statistics are incremented according to the following rules: * * <ul> * <li>When a cache lookup encounters an existing cache entry {@code hitCount} is incremented. * <li>When a cache lookup first encounters a missing cache entry, a new entry is loaded. * <ul> * <li>After successfully loading an entry {@code missCount} and {@code loadSuccessCount}
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Jul 08 18:32:10 GMT 2025 - 12.6K bytes - Click Count (0) -
src/main/java/jcifs/NameServiceClient.java
*/ NetbiosAddress[] getNodeStatus(NetbiosAddress nbtAddress) throws UnknownHostException; /** * Lookup addresses for the given <code>hostname</code>. * * @param hostname the hostname to resolve * @param possibleNTDomainOrWorkgroup if true, perform additional master browser lookup * @return found addresses * @throws UnknownHostException if the hostname cannot be resolved */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 8.4K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultSession.java
@Nonnull RepositorySystem repositorySystem, @Nullable List<RemoteRepository> remoteRepositories, @Nonnull MavenRepositorySystem mavenRepositorySystem, @Nonnull Lookup lookup, @Nonnull RuntimeInformation runtimeInformation) { super( requireNonNull(session).getRepositorySession(), repositorySystem, remoteRepositories,Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 8.9K bytes - Click Count (0)