Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,599 for matchLen (0.21 sec)

  1. staging/src/k8s.io/apiserver/pkg/quota/v1/interfaces.go

    	Handles(operation admission.Attributes) bool
    	// Matches returns true if the specified quota matches the input item
    	Matches(resourceQuota *corev1.ResourceQuota, item runtime.Object) (bool, error)
    	// MatchingScopes takes the input specified list of scopes and input object and returns the set of scopes that matches input object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 30 21:02:09 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/idl/groovy/build.gradle

        def processIdlFile(File idlFile, File headerFile, File sourceFile) {
            def pattern = ~/(?s).*HEADER <<<(.*)>>>.*SOURCE <<<(.*)>>>.*/
            def matcher = pattern.matcher(idlFile.text)
            assert matcher.matches()
            headerFile.text = matcher.group(1)
            sourceFile.text = matcher.group(2)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/NodePredicate.java

        private final Predicate<? super MutableModelNode> matcher;
    
        private NodePredicate(Predicate<? super MutableModelNode> matcher) {
            this.matcher = matcher;
        }
    
        public ModelSpec scope(ModelPath scope) {
            return scope(scope, matcher);
        }
    
        protected abstract ModelSpec scope(ModelPath scope, Predicate<? super MutableModelNode> matcher);
    
        public static NodePredicate allLinks() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/matchconditions/interface.go

    	"k8s.io/apiserver/pkg/admission"
    	"k8s.io/apiserver/pkg/authorization/authorizer"
    )
    
    type MatchResult struct {
    	Matches             bool
    	Error               error
    	FailedConditionName string
    }
    
    // Matcher contains logic for converting Evaluations to bool of matches or does not match
    type Matcher interface {
    	// Match is used to take cel evaluations and convert into decisions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 28 19:30:04 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/ReadelfBinaryInfo.groovy

            String matchingLine = lines.find {
                pattern.matcher(it).matches()
            }
            if (matchingLine == null) {
                return null;
            }
            final Matcher matcher = pattern.matcher(matchingLine)
            assert matcher.matches()
            return matcher.group(1)
        }
    
        static ArchitectureInternal readArch(List<String> lines) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 15:17:55 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/ResourceFilterMatcher.java

         *
         * @param arguments the arguments or null if the matcher should have child matchers instead
         */
        void setArguments(String arguments);
    
        /**
         * The child matchers of this matcher, e.g. when this is an OR-matcher.
         */
        Set<ResourceFilterMatcher> getChildren();
    
        /**
         * Adds a child/nested matcher to this matcher.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/object/matcher_test.go

    				Values:   []string{"1"},
    			},
    		},
    	}
    	matcher := &object.Matcher{}
    	allScopes := v1.AllScopes
    	testcases := []struct {
    		name string
    
    		objectSelector *metav1.LabelSelector
    		attrs          admission.Attributes
    
    		expectCall bool
    	}{
    		{
    			name:           "empty object selector matches everything",
    			objectSelector: &metav1.LabelSelector{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 26 00:41:14 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  8. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/JUnitTestClassExecutionResult.groovy

        }
    
        TestClassExecutionResult assertStdout(Matcher<? super String> matcher) {
            def stdout = testClassNode.'system-out'[0].text();
            assertThat(stdout, matcher)
            this
        }
    
        TestClassExecutionResult assertStderr(Matcher<? super String> matcher) {
            def stderr = testClassNode.'system-err'[0].text();
            assertThat(stderr, matcher)
            this
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-groovy/src/main/java/org/gradle/api/internal/plugins/GroovyJarFile.java

                }
            } catch (IOException e) {
                // Let the code use the original File otherwise
            }
            Matcher matcher = FILE_NAME_PATTERN.matcher(file.getName());
            return matcher.matches() ? new GroovyJarFile(file, matcher) : null;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 19:14:26 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/util/internal/DefaultGradleVersion.java

            this.stage = parseStage(matcher);
            this.snapshot = parseSnapshot(matcher);
        }
    
        private Long parseSnapshot(Matcher matcher) {
            if ("snapshot".equals(matcher.group(5)) || isCommitVersion(matcher)) {
                return 0L;
            } else if (matcher.group(8) == null) {
                return null;
            } else if ("SNAPSHOT".equals(matcher.group(8))) {
                return 0L;
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top