Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,599 for matchLen (0.13 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/sftp/SFTPServer.groovy

                buffer.rpos(pos)
    
                def matched = expectations.find { it.matches(buffer, type, id) }
                if (matched) {
                    if (matched.failing) {
                        sendStatus(prepareReply(new ByteArrayBuffer()), id, SftpConstants.SSH_FX_FAILURE, "Failure")
                        buffer.rpos(originalBufferPosition + length)
                    } else if (matched.missing) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_dispatcher.go

    		matches, matchGVR, matchGVK, err := d.matcher.DefinitionMatches(a, o, policyAccessor)
    		if err != nil {
    			// There was an error evaluating if this policy matches anything.
    			utilruntime.HandleError(err)
    			relevantHooks = append(relevantHooks, PolicyInvocation[P, B, E]{
    				Policy: hook.Policy,
    				Error:  err,
    			})
    			continue
    		} else if !matches {
    			continue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/CharMatcher.java

      public abstract boolean matches(char c);
    
      // Non-static factories
    
      /** Returns a matcher that matches any character not matched by this matcher. */
      // @Override under Java 8 but not under Java 7
      public CharMatcher negate() {
        return new Negated(this);
      }
    
      /**
       * Returns a matcher that matches any character matched by both this matcher and {@code other}.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/language/doc.go

    // locale-specific data for your supported languages.
    // Match and MatchString both return the index of the matched supported tag
    // to simplify associating such data with the matched tag.
    //
    // # Canonicalization
    //
    // If one uses the Matcher to compare languages one does not need to
    // worry about canonicalization.
    //
    // The meaning of a Tag varies per application. The language package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/CharMatcher.java

      public abstract boolean matches(char c);
    
      // Non-static factories
    
      /** Returns a matcher that matches any character not matched by this matcher. */
      // @Override under Java 8 but not under Java 7
      @Override
      public CharMatcher negate() {
        return new Negated(this);
      }
    
      /**
       * Returns a matcher that matches any character matched by both this matcher and {@code other}.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    					matched = false
    					break
    				} else if l != v {
    					matched = false
    					break
    				}
    			}
    
    			// Empty selector matches everything
    			if len(paramRef.Selector.MatchExpressions) == 0 && len(paramRef.Selector.MatchLabels) == 0 {
    				matched = true
    			}
    
    			if !matched {
    				continue
    			}
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/toolchain/RequirementMatcherFactoryTest.java

            RequirementMatcher matcher;
            matcher = RequirementMatcherFactory.createVersionMatcher("1.5.2");
            assertFalse(matcher.matches("1.5"));
            assertTrue(matcher.matches("1.5.2"));
            assertFalse(matcher.matches("[1.4,1.5)"));
            assertFalse(matcher.matches("[1.5,1.5.2)"));
            assertFalse(matcher.matches("(1.5.2,1.6)"));
            assertTrue(matcher.matches("(1.4,1.5.2]"));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/match/matchers.go

    // Any doesn't filter out any echos.
    var Any Matcher = func(_ echo.Instance) bool {
    	return true
    }
    
    // And is an aggregate Matcher that requires all matches return true.
    func And(ms ...Matcher) Matcher {
    	return func(i echo.Instance) bool {
    		for _, m := range ms {
    			if m != nil && !m(i) {
    				return false
    			}
    		}
    		return true
    	}
    }
    
    // Or is an aggregate Matcher that requires at least one matches return true.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/util/internal/NameMatcherTest.groovy

            matches("NA", "name")
            matches("somena", "someName")
            matches("somena", "SomeName")
            matches("somena", "SomeName")
            matches("some na", "Some Name")
        }
    
        def "selects item with matching camel case prefix"() {
            expect:
            matches("sN", "someName")
            matches("soN", "someName")
            matches("SN", "someName")
            matches("SN", "SomeName")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 05 22:49:56 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/DefaultAttributeMatcherTest.groovy

            expect:
            matcher.matches([candidate1, candidate2], requested, explanationBuilder) == [candidate1, candidate2]
    
            matcher.matches([candidate1], requested, explanationBuilder) == [candidate1]
            matcher.isMatching(candidate1, requested)
    
            matcher.matches([candidate2], requested, explanationBuilder) == [candidate2]
            matcher.isMatching(candidate2, requested)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 24.8K bytes
    - Viewed (0)
Back to top