- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 661 for filters (0.05 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/filter/OrArtifactFilter.java
public OrArtifactFilter() { this.filters = new LinkedHashSet<>(); } public OrArtifactFilter(Collection<ArtifactFilter> filters) { this.filters = new LinkedHashSet<>(filters); } @Override public boolean include(Artifact artifact) { for (ArtifactFilter filter : filters) { if (filter.include(artifact)) { return true;
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryProcessor.java
} /** * Adds a filter to the processing pipeline. * After adding a filter, the filter chain is recreated to include the new filter. * * @param filter the filter to add to the processing pipeline */ public void addFilter(final Filter filter) { filterList.add(filter); createFilterChain(); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/path/DefaultPathTranslator.java
} if (build.getFilters() != null) { List<String> filters = new ArrayList<>(); for (String filter : build.getFilters()) { filters.add(alignToBaseDirectory(filter, basedir)); } build.setFilters(filters); } build.setOutputDirectory(alignToBaseDirectory(build.getOutputDirectory(), basedir));
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 7.2K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlFilterService.java
/** * Field name for filter type. */ private static final String FILTER_TYPE = "filterType"; /** * Filter type for include filters. */ private static final String INCLUDE = "include"; /** * Filter type for exclude filters. */ private static final String EXCLUDE = "exclude"; /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/parser/QueryParser.java
} /** * Adds a filter to the query processing chain. * The filter chain is recreated after adding the filter. * * @param filter the filter to add */ public void addFilter(final Filter filter) { filterList.add(filter); createFilterChain(); } /** * Creates the filter chain by combining all registered filters.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/DosFileFilter.java
* Creates a DOS file filter with the specified wildcard and attributes. * This filter can be considerably more efficient than other file filters * as the specified wildcard and attributes are passed to the server for * filtering there (although attributes are largely ignored by servers * they are filtered locally by the default accept method). * * @param wildcard the wildcard pattern for matching file names (e.g., "*.txt")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/UrlFilterService.java
/** * Service interface for managing URL filters. * Provides methods to add and remove include/exclude URL filters, * as well as retrieve the patterns of these filters. */ public interface UrlFilterService { /** * Adds a URL to the include filter list for the specified session. * * @param sessionId the ID of the session for which the URL filter is being added
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 3.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/QueryHelper.java
/** * Adds a boost function with a filter to modify document scoring during search. * This method adds a boost function that applies only to documents matching the filter. * * @param filter the query filter to determine which documents the boost applies to * @param scoreFunction the score function to add for boosting */ public void addBoostFunction(final QueryBuilder filter, final ScoreFunctionBuilder<?> scoreFunction) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeTest.java
// Verify structure: // Offset 0-3: Completion Filter (4 bytes) // Offset 4-5: FID (2 bytes) // Offset 6: Watch Tree (1 byte) // Offset 7: Reserved (1 byte) assertEquals(8, bytesWritten); // Check completion filter assertEquals(0x12345678, SMBUtil.readInt4(dst, 10)); // Check FID
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/FailureUrlPager.java
// Default constructor } /** URL filter for searching failure URLs. */ //@Maxbytelength(maxbytelength = 1000) public String url; /** Minimum error count filter for searching failure URLs. */ //@IntRange(min = 0, max = 2147483647) public String errorCountMin; /** Maximum error count filter for searching failure URLs. */ //@IntRange(min = 0, max = 2147483647)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7K bytes - Viewed (0)