Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for exact_match (0.33 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/GraphVariantSelector.java

                return MatchResult.EXACT_MATCH;
            }
            for (Capability capability : capabilitiesSet) {
                capability = unwrap(capability);
                if (group.equals(capability.getGroup()) && name.equals(capability.getName())) {
                    boolean exactMatch = capabilitiesSet.size() == 1;
                    return exactMatch ? MatchResult.EXACT_MATCH : MatchResult.MATCHES_ALL;
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/bridge_logger.cc

                                           const std::vector<std::string>& filter,
                                           bool exact_match) {
      if (filter.empty()) return true;
      for (const std::string& filter_str : filter) {
        if (str == filter_str) return true;
        if (!exact_match && str.find(filter_str) != std::string::npos) return true;
      }
      return false;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 06 22:29:51 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/bridge_logger.h

      // Returns `true` iff any of the strings in `filter` matches `str`, either
      // exactly or as a substring, depending on `exact_match`.
      static bool MatchesFilter(const std::string& str,
                                const std::vector<std::string>& filter,
                                bool exact_match);
    
      // Only log pass invocations whose pass name exactly matches any string in
      // `pass_filter_` (or when `pass_filter_` is empty).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 06 22:29:51 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. istioctl/pkg/authz/testdata/configdump.yaml

                           "or_rules": {
                            "rules": [
                             {
                              "header": {
                               "name": ":method",
                               "exact_match": "GET"
                              }
                             }
                            ]
                           }
                          },
                          {
                           "or_rules": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 14:20:23 UTC 2023
    - 206.7K bytes
    - Viewed (1)
  5. okhttp/src/main/kotlin/okhttp3/internal/publicsuffix/PublicSuffixDatabase.kt

        // will look like: [foo, bar, com], [bar, com], [com]. The longest matching rule wins.
        var exactMatch: String? = null
        for (i in domainLabelsUtf8Bytes.indices) {
          val rule = publicSuffixListBytes.binarySearch(domainLabelsUtf8Bytes, i)
          if (rule != null) {
            exactMatch = rule
            break
          }
        }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/mux/pathrecorder_test.go

    	assert.Equal(t, 1, precisePrefixCount)
    	http.Get(s.URL + "/publicPrefix/but-more-precise/more-stuff")
    	assert.Equal(t, 2, precisePrefixCount)
    
    	http.Get(s.URL + "/publicPrefix/exactmatch")
    	assert.Equal(t, 1, exactMatchCount)
    	http.Get(s.URL + "/publicPrefix/exactmatch/")
    	assert.Equal(t, 4, publicPrefixCount)
    	http.Get(s.URL + "/otherPublic/exactmatchslash")
    	assert.Equal(t, 3, fallThroughCount)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 16:15:13 UTC 2017
    - 4.4K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/graph/nodes/AbstractRenderableDependencyResult.java

            return getActual();
        }
    
        @Override
        public String getName() {
            ComponentSelector requested = getRequested();
            ComponentIdentifier selected = getActual();
    
            if(exactMatch(requested, selected)) {
                return getSimpleName();
            }
    
            if(requested instanceof ModuleComponentSelector && selected instanceof ModuleComponentIdentifier) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 06 01:35:57 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/graph/nodes/InvertedRenderableModuleResult.java

                }
            }
            return new LinkedHashSet<>(children.values());
        }
    
        @Override
        public String getDescription() {
            if (dependencyResult != null) {
                if (!exactMatch(dependencyResult.getRequested(), dependencyResult.getSelected().getId())) {
                    return "(requested " + dependencyResult.getRequested() + ")";
                }
            }
            return null;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 27 14:58:38 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  9. samples/ratelimit/local-rate-limit-service.yaml

                  - actions:
                      - remote_address: {}
                  - actions:
                      - header_value_match:
                          descriptor_value: "productpage"
                          expect_match: true
                          headers:
                            - name: :path
                              string_match:
                                prefix: /productpage
                                ignore_case: true
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 31 08:22:09 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/graph/nodes/AbstractRenderableDependency.java

            return Collections.emptySet();
        }
    
        @Override
        public List<Section> getExtraDetails() {
            return Collections.emptyList();
        }
    
        protected boolean exactMatch(ComponentSelector requested, ComponentIdentifier selected) {
            if (requested instanceof ModuleComponentSelector) {
                VersionConstraint versionConstraint = ((ModuleComponentSelector) requested).getVersionConstraint();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 10 22:44:30 UTC 2022
    - 2.3K bytes
    - Viewed (0)
Back to top