Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,161 for match0 (0.14 sec)

  1. src/cmd/link/internal/ld/macho.go

    	sr := io.NewSectionReader(f, h.off, h.length)
    	m, err := macho.NewFile(sr)
    	if err != nil {
    		// Not a valid Mach-O file.
    		return nil, nil
    	}
    	return peekMachoPlatform(m)
    }
    
    // peekMachoPlatform returns the first LC_VERSION_MIN_* or LC_BUILD_VERSION
    // load command found in the Mach-O file, if any.
    func peekMachoPlatform(m *macho.File) (*MachoPlatformLoad, error) {
    	for _, cmd := range m.Loads {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/generic/webhook.go

    		if err != nil {
    			return nil, apierrors.NewInternalError(err)
    		}
    
    		matcher := h.GetCompiledMatcher(a.filterCompiler)
    		matchResult := matcher.Match(ctx, versionedAttr, nil, a.authorizer)
    
    		if matchResult.Error != nil {
    			klog.Warningf("Failed evaluating match conditions, failing closed %v: %v", h.GetName(), matchResult.Error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ComponentAttributesDynamicVersionIntegrationTest.groovy

            failure.assertHasCause("""Could not find any version that matches org:test:[1.0,).
    Versions rejected by attribute matching:
      - 1.1:
          - Attribute 'color' didn't match. Requested 'green', was: 'blue'
          - Attribute 'shape' matched. Requested 'circle', was: 'circle'
      - 1.0:
          - Attribute 'color' didn't match. Requested 'green', was: 'red'
          - Attribute 'shape' didn't match. Requested 'circle', was: 'square'""")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  4. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/PublicApi.kt

        private val excludePackagePatterns = listOf(Pattern.compile(".+\\.internal(\\..+)?"))
    
        fun isPublicApiPackage(packageName: String) =
            includePackagePatterns.any { it.matcher(packageName).matches() } &&
                !excludePackagePatterns.any { it.matcher(packageName).matches() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:53 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. src/regexp/example_test.go

    	// Output:
    	// true
    	// true
    	// false
    	// false
    }
    
    func ExampleMatch() {
    	matched, err := regexp.Match(`foo.*`, []byte(`seafood`))
    	fmt.Println(matched, err)
    	matched, err = regexp.Match(`bar.*`, []byte(`seafood`))
    	fmt.Println(matched, err)
    	matched, err = regexp.Match(`a(b`, []byte(`seafood`))
    	fmt.Println(matched, err)
    
    	// Output:
    	// true <nil>
    	// false <nil>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:22:53 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/generic/matcher.go

    Dr. Stefan Schimanski <******@****.***> 1486027168 +0100
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 03 06:33:43 UTC 2017
    - 1.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionRangeSelector.java

            this.comparator = comparator;
    
            Matcher matcher;
            matcher = FINITE_RANGE.matcher(selector);
            if (matcher.matches()) {
                lowerBound = matcher.group(1);
                lowerInclusive = selector.startsWith(OPEN_INC);
                upperBound = matcher.group(2);
                upperInclusive = selector.endsWith(CLOSE_INC);
            } else {
                matcher = LOWER_INFINITE_RANGE.matcher(selector);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/envoyfilter/listener_patch.go

    		return false
    	}
    
    	match := lMatch.FilterChain
    	if match == nil {
    		return true
    	}
    	if match.Name != "" {
    		if match.Name != fc.Name {
    			return false
    		}
    	}
    	if match.Sni != "" {
    		if fc.FilterChainMatch == nil || len(fc.FilterChainMatch.ServerNames) == 0 {
    			return false
    		}
    		sniMatched := false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 15:39:29 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/execution/DefaultTaskSelector.java

                });
            }
            String message = String.format("Cannot locate %s that match '%s' as %s", context.getType(), context.getOriginalPath(),
                matcher.formatErrorMessage("task", searchContext));
    
            throw getProblemsService().getInternalReporter().throwing(spec -> configureProblem(spec, matcher, context)
                .contextualLabel(message)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. cmd/batch-handlers.go

    				if len(batch) < *r.Source.Snowball.Batch {
    					continue
    				}
    				writeFn(batch)
    				batch = batch[:0]
    			}
    			writeFn(batch)
    			xioutil.SafeClose(slowCh)
    		}()
    	} else {
    		slowCh = walkCh
    	}
    
    	workerSize, err := strconv.Atoi(env.Get("_MINIO_BATCH_REPLICATION_WORKERS", strconv.Itoa(runtime.GOMAXPROCS(0)/2)))
    	if err != nil {
    		return err
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
Back to top