Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 147 for unfiltered (0.57 sec)

  1. guava/src/com/google/common/util/concurrent/FutureCallback.java

       *
       * <p>If the future's {@link Future#get() get} method throws an {@link ExecutionException}, then
       * the cause is passed to this method. Any other thrown object is passed unaltered.
       */
      void onFailure(Throwable t);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 05 22:27:35 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  2. src/main/config/openapi/openapi-user.yaml

              description: Sorted field name
              required: false
              schema:
                type: string
                example: score
            - name: fields.label
              in: query
              description: Filtered label name
              required: false
              style: form
              explode: true
              schema:
                type: array
                items:
                  type: string
                example: [name]
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 06:31:27 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/TaskCollectionExtensions.kt

    
    /**
     * Returns a collection containing the objects in this collection of the given type. The
     * returned collection is live, so that when matching objects are later added to this
     * collection, they are also visible in the filtered collection.
     *
     * @param S The type of objects to find.
     * @return The matching objects. Returns an empty collection if there are no such objects
     * in this collection.
     * @see [TaskCollection.withType]
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. build-logic/jvm/src/main/kotlin/gradlebuild/propagated-env-variables.kt

        environment = makePropagatedEnvironment()
        environment.forEach { (key, _) ->
            if (credentialsKeywords.any { key.contains(it, true) }) {
                throw IllegalArgumentException("Found sensitive data in filtered environment variables: $key")
            }
        }
    }
    
    
    private
    fun makePropagatedEnvironment(): Map<String, String?> {
        val result = HashMap<String, String?>()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 18 01:52:16 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/FilteringProvider.java

            provider.getProducer().visitContentProducerTasks(producer -> {
                if (!producer.getState().getExecuted()) {
                    throw new InvalidUserCodeException(
                        String.format("Querying the filtered value of %s before %s has completed is not supported", provider, producer)
                    );
                }
            });
        }
    
        @Override
        protected String toStringNoReentrance() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 23:22:41 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

            crawlingInfoParamBhv.queryDelete(cb1 -> cb1.query().filtered((cq, cf) -> {
                cq.matchAll();
                if (!idList.isEmpty()) {
                    cf.not(subCf -> subCf.setCrawlingInfoId_InScope(idList));
                }
            }));
            crawlingInfoBhv.queryDelete(cb2 -> cb2.query().filtered((cq, cf) -> {
                cq.matchAll();
                if (!idList.isEmpty()) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/collect/testing/FeatureSpecificTestSuiteBuilder.java

      }
    
      private TestSuite filterSuite(TestSuite suite) {
        TestSuite filtered = new TestSuite(suite.getName());
        Enumeration<?> tests = suite.tests();
        while (tests.hasMoreElements()) {
          Test test = (Test) tests.nextElement();
          if (matches(test)) {
            filtered.addTest(test);
          }
        }
        return filtered;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DomainObjectCollectionExtensions.kt

    
    /**
     * Returns a collection containing the objects in this collection of the given type. The
     * returned collection is live, so that when matching objects are later added to this
     * collection, they are also visible in the filtered collection.
     *
     * @param S The type of objects to find.
     * @return The matching objects. Returns an empty collection if there are no such objects
     * in this collection.
     * @see [DomainObjectCollection.withType]
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsElevateWordToLabelCQ.java

            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void filtered(FilteredCall<ElevateWordToLabelCQ, ElevateWordToLabelCQ> filteredLambda) {
            filtered(filteredLambda, null);
        }
    
        public void filtered(FilteredCall<ElevateWordToLabelCQ, ElevateWordToLabelCQ> filteredLambda,
                ConditionOptionCall<BoolQueryBuilder> opLambda) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileCollectionStructureVisitor.java

         */
        void visitCollection(FileCollectionInternal.Source source, Iterable<File> contents);
    
        /**
         * Visits a file tree at a root file on the file system (potentially filtered).
         */
        void visitFileTree(File root, PatternSet patterns, FileTreeInternal fileTree);
    
        /**
         * Visits a file tree whose content is generated from the contents of a file.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top