- Sort Score
- Num 10 results
- Language All
Results 121 - 130 of 166 for Filtering (0.06 seconds)
-
cmd/object-api-interface.go
FastGetObjInfo bool // Only for S3 Head/Get Object calls for now NoAuditLog bool // Only set for decom, rebalance, to avoid double audits. } // WalkOptions provides filtering, marker and other Walk() specific options. type WalkOptions struct { Filter func(info FileInfo) bool // return WalkFilter returns 'true/false' Marker string // set to skip until this object
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 17.5K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/Sets.java
if (unfiltered instanceof SortedSet) { return filter((SortedSet<E>) unfiltered, predicate); } if (unfiltered instanceof FilteredSet) { // Support clear(), removeAll(), and retainAll() when filtering a filtered // collection. FilteredSet<E> filtered = (FilteredSet<E>) unfiltered; Predicate<E> combinedPredicate = Predicates.and(filtered.predicate, predicate);
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Sep 22 18:35:44 GMT 2025 - 81.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Nov 20 13:56:35 GMT 2025 - 22.7K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
/** * Base path for thumbnail storage. */ protected final Path basePath; /** * Image file extension for filtering. */ protected final String imageExtention; /** * OpenSearch client for document validation. */ protected final SearchEngineClient searchEngineClient;Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 27K bytes - Click Count (0) -
api/maven-api-model/src/main/mdo/maven.mdo
</code> </codeSegment> <codeSegment> <version>4.0.0/4.0.99</version> <code> <![CDATA[ public void setFiltering(boolean filtering) { setFiltering(String.valueOf(filtering)); } ]]> </code> </codeSegment> <codeSegment> <version>4.0.0+</version> <code> <![CDATA[Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Nov 26 03:07:35 GMT 2025 - 133.3K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java
assertPathSuffixEquals("main", pom.getValue("build/resources[1]/targetPath")); assertEquals(Boolean.TRUE, pom.getValue("build/resources[1]/filtering")); assertEquals(1, ((List<?>) pom.getValue("build/resources[1]/includes")).size()); assertPathSuffixEquals("main.included", pom.getValue("build/resources[1]/includes[1]"));
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 94.8K bytes - Click Count (0) -
tests/test_response_model_as_return_annotation.py
}, } }, "/response_model_filtering_model-annotation_submodel-return_submodel": { "get": { "summary": "Response Model Filtering Model Annotation Submodel Return Submodel", "operationId": "response_model_filtering_model_annotation_submodel_return_submodel_response_model_filtering_model_annotation_submodel_return_submodel_get",Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Sat Dec 27 12:54:56 GMT 2025 - 47.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
/** Service for managing URL crawling queue */ @Resource protected UrlQueueService<OpenSearchUrlQueue> urlQueueService; /** Service for URL filtering operations */ @Resource protected UrlFilterService urlFilterService; /** Behavior class for click log operations */ @Resource protected ClickLogBhv clickLogBhv;Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 32.9K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java
org = resource.getTargetPath(); val = interpolate(org); if (org != val) { resource.setTargetPath(val); } // Filtering org = resource.getFiltering(); val = interpolate(org); if (org != val) { resource.setFiltering(val); } }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 43.1K bytes - Click Count (0) -
cmd/common-main.go
os.Setenv("CONSOLE_PROMETHEUS_URL", value) if value := env.Get(config.EnvMinIOPrometheusJobID, "minio-job"); value != "" { os.Setenv("CONSOLE_PROMETHEUS_JOB_ID", value) // Support additional labels for more granular filtering. if value := env.Get(config.EnvMinIOPrometheusExtraLabels, ""); value != "" { os.Setenv("CONSOLE_PROMETHEUS_EXTRA_LABELS", value) } } // Support Prometheus Auth Token
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 32.5K bytes - Click Count (3)