Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 101 for unfiltered (0.05 sec)

  1. guava-testlib/src/com/google/common/collect/testing/SortedSetTestSuiteBuilder.java

          derivedSuites.add(createSubsetSuite(parentBuilder, Bound.INCLUSIVE, Bound.EXCLUSIVE));
        }
    
        return derivedSuites;
      }
    
      /**
       * Creates a suite whose set has some elements filtered out of view.
       *
       * <p>Because the set may be ascending or descending, this test must derive the relative order of
       * these extreme values rather than relying on their regular sort ordering.
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 4.9K 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu May 09 06:31:27 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/user/cbean/cq/bs/BsGroupCQ.java

            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void filtered(FilteredCall<GroupCQ, GroupCQ> filteredLambda) {
            filtered(filteredLambda, null);
        }
    
        public void filtered(FilteredCall<GroupCQ, GroupCQ> filteredLambda, ConditionOptionCall<BoolQueryBuilder> opLambda) {
            bool((must, should, mustNot, filter) -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 20.1K bytes
    - Viewed (0)
  4. 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsWebAuthenticationCQ.java

            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void filtered(FilteredCall<WebAuthenticationCQ, WebAuthenticationCQ> filteredLambda) {
            filtered(filteredLambda, null);
        }
    
        public void filtered(FilteredCall<WebAuthenticationCQ, WebAuthenticationCQ> filteredLambda,
                ConditionOptionCall<BoolQueryBuilder> opLambda) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 95.5K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/mylasta/direction/FessConfigImplTest.java

                        return "opensearch";
                    case "test.property":
                        return "config-value";
                    case "filter.null":
                        // This would be filtered to null by PropertyFilter in real scenario
                        throw new ConfigPropertyNotFoundException("filter.null");
                    default:
                        throw new ConfigPropertyNotFoundException(propertyKey);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

            envMap.put("", "value");
            envMap.put("VALID_KEY", "valid_value");
    
            final Map<String, String> filtered = systemHelper.getFilteredEnvMap(".*");
            assertEquals(1, filtered.size());
            assertEquals("valid_value", filtered.get("VALID_KEY"));
        }
    
        public void test_normalizeConfigPath_edgeCases() {
            assertEquals("", systemHelper.normalizeConfigPath("   "));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/util/JvmUtil.java

         * Format: "version:option" or "version-:option" (for version and above).
         *
         * @param values the array of JVM options to filter
         * @return the filtered array of JVM options applicable to the current Java version
         */
        public static String[] filterJvmOptions(final String[] values) {
            final int version = getJavaVersion();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsKeyMatchCQ.java

            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void filtered(FilteredCall<KeyMatchCQ, KeyMatchCQ> filteredLambda) {
            filtered(filteredLambda, null);
        }
    
        public void filtered(FilteredCall<KeyMatchCQ, KeyMatchCQ> filteredLambda, ConditionOptionCall<BoolQueryBuilder> opLambda) {
            bool((must, should, mustNot, filter) -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 68.6K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/SortedMapTestSuiteBuilder.java

        DESCENDING;
    
        @Override
        public Set<Feature<? super @Nullable Void>> getImpliedFeatures() {
          return emptySet();
        }
      }
    
      /**
       * Creates a suite whose map has some elements filtered out of view.
       *
       * <p>Because the map may be ascending or descending, this test must derive the relative order of
       * these extreme values rather than relying on their regular sort ordering.
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top