Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 4,161 for match0 (0.28 sec)

  1. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/versionmapping/DefaultVersionMappingStrategy.java

                // provided by plugins
                AttributeMatcher matcher = schema.matcher();
                Set<ImmutableAttributes> candidates = defaultConfigurations.keySet();
                List<ImmutableAttributes> matches = matcher.matches(candidates, variantAttributes, AttributeMatchingExplanationBuilder.NO_OP);
                for (ImmutableAttributes match : matches) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  2. releasenotes/notes/telemetry-implicit-match-all.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 06 09:45:48 UTC 2023
    - 269 bytes
    - Viewed (0)
  3. releasenotes/notes/inbound-patch.yaml

    apiVersion: release-notes/v2
    kind: bug-fix 
    area: networking
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 10 17:35:32 UTC 2021
    - 173 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/matching/matching_test.go

    				}
    			}
    
    			if matches != testcase.expectMatches {
    				t.Fatalf("expected matches = %v; got %v", testcase.expectMatches, matches)
    			}
    
    			expectResource := testcase.expectMatchResource
    			if !expectResource.Empty() && !matches {
    				t.Fatalf("expectResource is non-empty, but did not match")
    			} else if expectResource.Empty() {
    				// Test for exact match by default. Tests that expect an equivalent
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/ResourceVersionLister.java

                        .filter(version -> regexPattern.matcher(currentVersionListPattern.getPath().replace(REVISION_TOKEN, version)).matches())
                        .collect(Collectors.toList());
                    if (!matching.isEmpty()) {
                        LOGGER.debug("Filtered out {} from results for overlapping match with {}", matching, otherVersionListPattern);
                        remaining.removeAll(matching);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/configuration/internal/DefaultDynamicCallContextTrackerTest.groovy

            def latch1 = new CountDownLatch(1)
            def latch2 = new CountDownLatch(1)
            def latch3 = new CountDownLatch(1)
            Runnable work1 = {
                tracker.enterDynamicCall(latch1)
                latch1.countDown()
                latch2.await()
                tracker.leaveDynamicCall(latch1)
                latch3.countDown()
            }
            Runnable work2 = {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 14 11:11:17 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/match/match_test.go

    				inner := NewDestinationIP()
    				inner.OnNoMatch = ToMatcher(leaf.Matcher)
    
    				root := NewDestinationPort()
    				root.OnNoMatch = ToMatcher(inner.Matcher)
    				return root
    			},
    			want: func() *matcher.Matcher {
    				// src port
    				// 15001: chain
    				want := NewSourceIP()
    				want.Map["1.2.3.4"] = ToChain("chain")
    				return want.Matcher
    			},
    		},
    		{
    			name: "empty map at depths = 1 and 2",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. pilot/pkg/simulation/traffic.go

    var (
    	ErrNoListener          = errors.New("no listener matched")
    	ErrNoFilterChain       = errors.New("no filter chains matched")
    	ErrNoRoute             = errors.New("no route matched")
    	ErrTLSRedirect         = errors.New("tls required, sending 301")
    	ErrNoVirtualHost       = errors.New("no virtual host matched")
    	ErrMultipleFilterChain = errors.New("multiple filter chains matched")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/internal/ScalaRuntimeHelper.java

         * is expected to match the pattern 'scala-[component]-[version].jar'.
         *
         * @param scalaJar a Scala Jar file
         * @return the version of the Scala Jar file
         */
        @Nullable
        public static String getScalaVersion(File scalaJar) {
            Matcher matcher = SCALA_JAR_PATTERN.matcher(scalaJar.getName());
            return matcher.matches() ? matcher.group(2) : null;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/ModuleVersionNotFoundExceptionTest.groovy

    Versions that do not match:
      - 0.9
      - 0.10
    Versions rejected by attribute matching:
      - 1.1:
          - Attribute 'color' matched. Requested 'red', was: 'red'
          - Attribute 'shape' didn't match. Requested 'square', was: 'circle'
      - 1.0:
          - Attribute 'color' didn't match. Requested 'red', was: 'green'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.8K bytes
    - Viewed (0)
Back to top