- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 138 for fibber (0.05 sec)
-
fess-crawler-opensearch/src/main/resources/mapping/filter.json
Shinsuke Sugaya <******@****.***> 1730954650 +0900
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Nov 07 04:44:10 UTC 2024 - 192 bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/artifact/resolver/filter/ScopeArtifactFilterTest.java
ScopeArtifactFilter filter = new ScopeArtifactFilter(Artifact.SCOPE_TEST); assertTrue(filter.include(newArtifact(Artifact.SCOPE_COMPILE))); assertTrue(filter.include(newArtifact(Artifact.SCOPE_SYSTEM))); assertTrue(filter.include(newArtifact(Artifact.SCOPE_PROVIDED))); assertTrue(filter.include(newArtifact(Artifact.SCOPE_RUNTIME))); assertTrue(filter.include(newArtifact(Artifact.SCOPE_TEST)));
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.8K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/FilteredCollectionsTestUtil.java
assertFalse(filter(createUnfiltered(contents), EVEN).contains(new Object())); } } public void testAddAllFailsAtomically() { ImmutableList<Integer> toAdd = ImmutableList.of(2, 4, 3); for (List<Integer> contents : SAMPLE_INPUTS) { C filtered = filter(createUnfiltered(contents), EVEN); C filteredToModify = filter(createUnfiltered(contents), EVEN);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 13K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/ArtifactFilterManager.java
*/ package org.apache.maven; import java.util.Set; import org.apache.maven.artifact.resolver.filter.ArtifactFilter; /** * ArtifactFilterManager */ @Deprecated public interface ArtifactFilterManager { /** * Returns a filter for core + extension artifacts. * * @return the artifact filter * @deprecated use {@code META-INF/maven/extension.xml} to define artifacts exported by Maven core and plugin
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.8K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/MultimapsCollectionTest.java
@SuppressWarnings("unchecked") Entry<String, Integer> entry = (Entry<String, Integer>) o; multimap.put(entry.getKey(), entry.getValue()); } return filter(multimap); } abstract ListMultimap<String, Integer> filter(ListMultimap<String, Integer> multimap); @Override public Collection<Integer> createCollection(Iterable<? extends Integer> values) { return Lists.newArrayList(values);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 28.9K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/filter/OrArtifactFilter.java
public OrArtifactFilter(Collection<ArtifactFilter> filters) { this.filters = new LinkedHashSet<>(filters); } public boolean include(Artifact artifact) { for (ArtifactFilter filter : filters) { if (filter.include(artifact)) { return true; } } return false; } public void add(ArtifactFilter artifactFilter) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/resolver/filter/CumulativeScopeArtifactFilter.java
* under the License. */ package org.apache.maven.artifact.resolver.filter; import java.util.Collection; import java.util.HashSet; import java.util.Set; /** * Filter to only retain objects in the given scope or better. This implementation allows the accumulation of multiple * scopes and their associated implied scopes, so that the user can filter apply a series of implication rules in a
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultArtifactResolver.java
ArtifactFilter filter) throws ArtifactResolutionException, ArtifactNotFoundException { return resolveTransitively( artifacts, originatingArtifact, Collections.emptyMap(), localRepository, remoteRepositories, source, filter); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 24.8K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/factory/complex.xml
<modelVersion>4.0.0</modelVersion> <groupId>test</groupId> <artifactId>test</artifactId> <version>0.1-SNAPSHOT</version> <packaging>pom</packaging> <properties> <my.filter.value>hello</my.filter.value> </properties> <profiles> <profile> <id>two-conditions</id> <activation> <file> <exists>simple.xml</exists>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionRequest.java
public ArtifactResolutionRequest setCollectionFilter(ArtifactFilter filter) { this.collectionFilter = filter; return this; } /** * Gets the artifact filter that controls downloading of artifact files. This filter operates on those artifacts * that have been included by the {@link #getCollectionFilter()}. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 8.2K bytes - Viewed (0)