Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 121 - 130 of 191 for filtering (0.07 seconds)

  1. TESTING.asciidoc

    - In order to set an Elasticsearch setting, provide a setting with the following prefix: `-Dtests.es.`
    
    === Test case filtering.
    
    You can run a single test, provided that you specify the Gradle project. See the documentation on
    https://docs.gradle.org/current/userguide/userguide_single.html#simple_name_pattern[simple name pattern filtering].
    
    Run a single test case in the `server` project:
    
    ----------------------------------------------------------
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Jun 07 13:55:20 GMT 2021
    - 32.5K bytes
    - Click Count (0)
  2. cmd/metrics-v3-types.go

    	}
    }
    
    // SetHistogram - sets values for the given MetricName using the provided
    // histogram.
    //
    // `filterByLabels` is a map of label names to list of allowed label values to
    // filter by. Note that this filtering happens before any renaming of labels.
    //
    // `renameLabels` is a map of label names to rename. The keys are the original
    // label names and the values are the new label names.
    //
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Feb 28 19:33:08 GMT 2025
    - 15.6K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientRebuildTest.java

            assertEquals(0, testClient.insertBulkDataCalls.size());
        }
    
        // ==========================================================================
        // reindexConfigIndices - index filtering
        // ==========================================================================
    
        @Test
        public void test_reindexConfigIndices_onlyConfigTarget() {
            testClient.existsIndexResult = true;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 28.6K bytes
    - Click Count (0)
  4. 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 Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 81.4K bytes
    - Click Count (0)
  5. 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: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 01 12:47:47 GMT 2026
    - 27.2K bytes
    - Click Count (0)
  6. api/maven-api-model/src/main/mdo/maven.mdo

                <![CDATA[
        public boolean isFiltering() {
            return (getFiltering() != null) ? Boolean.parseBoolean(getFiltering()) : false;
        }
                ]]>
              </code>
            </codeSegment>
            <codeSegment>
              <version>4.0.0/4.0.99</version>
              <code>
                <![CDATA[
        public void setFiltering(boolean filtering) {
            setFiltering(String.valueOf(filtering));
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Feb 17 09:48:21 GMT 2026
    - 133.5K bytes
    - Click Count (0)
  7. 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 Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 50.3K bytes
    - Click Count (0)
  8. 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: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 32.9K bytes
    - Click Count (0)
  9. 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 Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 83K bytes
    - Click Count (0)
  10. 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 Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Feb 25 08:27:34 GMT 2025
    - 43.1K bytes
    - Click Count (0)
Back to Top