- Sort Score
- Result 10 results
- Languages All
Results 811 - 820 of 1,597 for complements (0.17 sec)
-
src/main/java/org/codelibs/fess/query/DefaultQueryBuilder.java
import org.opensearch.index.query.QueryBuilderVisitor; import org.opensearch.index.query.QueryRewriteContext; import org.opensearch.index.query.QueryShardContext; public class DefaultQueryBuilder implements QueryBuilder { private final QueryBuilder queryBuilder; private final QueryType queryType; public DefaultQueryBuilder(final QueryBuilder queryBuilder) { this.queryBuilder = queryBuilder;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 4.1K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/type/DefaultType.java
* Default implementation of {@link Type} and Resolver {@link ArtifactType}. * * @since 4.0.0 * @deprecated since 4.0.0, use {@code maven-api-impl} jar instead */ @Deprecated(since = "4.0.0") public class DefaultType implements Type, ArtifactType { private final String id; private final Language language; private final String extension; private final String classifier; private final boolean includesDependencies;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.6K bytes - Viewed (0) -
android/guava/src/com/google/common/io/PatternFilenameFilter.java
* and immutable. * * @author Apple Chow * @since 1.0 */ @J2ktIncompatible @GwtIncompatible @ElementTypesAreNonnullByDefault public final class PatternFilenameFilter implements FilenameFilter { private final Pattern pattern; /** * Constructs a pattern file name filter object. * * @param patternStr the pattern string on which to filter file names
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed May 17 14:35:11 UTC 2023 - 2.8K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/FakeTimeLimiter.java
* * @author Kevin Bourrillion * @author Jens Nyman * @since 1.0 */ @J2ktIncompatible @GwtIncompatible @ElementTypesAreNonnullByDefault public final class FakeTimeLimiter implements TimeLimiter { @CanIgnoreReturnValue // TODO(kak): consider removing this @Override public <T> T newProxy( T target, Class<T> interfaceType, long timeoutDuration, TimeUnit timeoutUnit) { checkNotNull(target);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Dec 14 20:35:03 UTC 2023 - 3.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableMapValues.java
} // No longer used for new writes, but kept so that old data can still be read. @GwtIncompatible // serialization @J2ktIncompatible @SuppressWarnings("unused") private static class SerializedForm<V> implements Serializable { final ImmutableMap<?, V> map; SerializedForm(ImmutableMap<?, V> map) { this.map = map; } Object readResolve() { return map.values(); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Nov 30 21:54:06 UTC 2023 - 3.6K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/activation/PropertyProfileActivator.java
* * @see ActivationProperty * @deprecated use {@link org.apache.maven.api.services.ModelBuilder} instead */ @Named("property") @Singleton @Deprecated(since = "4.0.0") public class PropertyProfileActivator implements ProfileActivator { @Override public boolean isActive(Profile profile, ProfileActivationContext context, ModelProblemCollector problems) { Activation activation = profile.getActivation();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.6K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/type/DefaultTypeProvider.java
import org.apache.maven.api.Language; import org.apache.maven.api.Type; import org.apache.maven.api.spi.TypeProvider; @Named @Deprecated(since = "4.0.0") public class DefaultTypeProvider implements TypeProvider { @SuppressWarnings({"rawtypes", "unchecked"}) @Override public Collection<Type> provides() { return (Collection) types(); } public Collection<DefaultType> types() {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.1K bytes - Viewed (0) -
compat/maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/io/DefaultToolchainsReader.java
* * @since 3.3.0 * @deprecated since 4.0.0, use {@link MavenToolchainsStaxReader} instead */ @Named @Singleton @Deprecated(since = "4.0.0") public class DefaultToolchainsReader implements ToolchainsReader { @Override public PersistedToolchains read(File input, Map<String, ?> options) throws IOException { Objects.requireNonNull(input, "input cannot be null");
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/handler/DefaultArtifactHandler.java
* under the License. */ package org.apache.maven.artifact.handler; import static java.util.Objects.requireNonNull; /** */ public class DefaultArtifactHandler implements ArtifactHandler { private final String type; private String extension; private String classifier; private String directory; private String packaging;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.1K bytes - Viewed (0) -
build-logic/documentation/src/test/groovy/gradlebuild/docs/model/SimpleClassMetaDataRepositoryTest.groovy
def newRepo = new SimpleClassMetaDataRepository<TestDomainObject>() newRepo.load(file) then: newRepo.find('class') == value } } class TestDomainObject implements Attachable<TestDomainObject>, Serializable { def value TestDomainObject(String value) { this.value = value } @Override boolean equals(Object o) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Sat Apr 06 02:21:33 UTC 2024 - 3.8K bytes - Viewed (0)