Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,599 for matchLen (0.21 sec)

  1. android/guava/src/com/google/common/base/JdkPattern.java

      }
    
      private static final class JdkMatcher extends CommonMatcher {
        final Matcher matcher;
    
        JdkMatcher(Matcher matcher) {
          this.matcher = Preconditions.checkNotNull(matcher);
        }
    
        @Override
        public boolean matches() {
          return matcher.matches();
        }
    
        @Override
        public boolean find() {
          return matcher.find();
        }
    
        @Override
        public boolean find(int index) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/dependencies/GradlePluginVariantsSupportTest.groovy

            when:
            def consumer = versionAttribute(currentGradleVersion)
            def producer = versionAttribute('7.0')
    
            then:
            accepts == (schema.matcher().matches([producer], consumer, ep) == [producer])
            accepts == schema.matcher().isMatching(producer, consumer)
    
            where:
            currentGradleVersion       | acceptsOrRejects
            '7.0'                      | 'accepts'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/versionmapping/DefaultVersionMappingStrategy.java

            if (!attributeBasedMappings.isEmpty()) {
                AttributeMatcher matcher = schema.matcher();
                Set<ImmutableAttributes> candidates = attributeBasedMappings.keySet();
                List<ImmutableAttributes> matches = matcher.matches(candidates, variantAttributes, AttributeMatchingExplanationBuilder.NO_OP);
                if (matches.size() == 1) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/DefaultRepositoryContentDescriptor.java

                for (SpecMatcher matcher : matchers) {
                    boolean matches;
                    if (details.isVersionListing()) {
                        matches = matcher.matches(details.getModuleId());
                    } else {
                        matches = matcher.matches(details.getComponentId());
                    }
                    if (matches) {
                        return true;
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/JdkPattern.java

      }
    
      private static final class JdkMatcher extends CommonMatcher {
        final Matcher matcher;
    
        JdkMatcher(Matcher matcher) {
          this.matcher = Preconditions.checkNotNull(matcher);
        }
    
        @Override
        public boolean matches() {
          return matcher.matches();
        }
    
        @Override
        public boolean find() {
          return matcher.find();
        }
    
        @Override
        public boolean find(int index) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/rules/rules.go

    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apiserver/pkg/admission"
    )
    
    // Matcher determines if the Attr matches the Rule.
    type Matcher struct {
    	Rule v1.RuleWithOperations
    	Attr admission.Attributes
    }
    
    // Matches returns if the Attr matches the Rule.
    func (r *Matcher) Matches() bool {
    	return r.scope() &&
    		r.operation() &&
    		r.group() &&
    		r.version() &&
    		r.resource()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 21:38:55 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/api/meta/priority.go

    // when multiple matches are possible
    type PriorityRESTMapper struct {
    	// Delegate is the RESTMapper to use to locate all the Kind and Resource matches
    	Delegate RESTMapper
    
    	// ResourcePriority is a list of priority patterns to apply to matching resources.
    	// The list of all matching resources is narrowed based on the patterns until only one remains.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 23:44:02 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/util/PrunedTag.java

                final Matcher matcher = pattern.matcher(v.trim());
                if (matcher.matches()) {
                    final PrunedTag tag = new PrunedTag(matcher.group(1));
                    if (matcher.group(2) != null) {
                        final String attrPair = matcher.group(2).substring(1, matcher.group(2).length() - 1);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/internal/ScalaRuntimeHelper.java

         */
        @Nullable
        public static File findScalaJar(Iterable<File> classpath, String appendix) {
            for (File file : classpath) {
                Matcher matcher = SCALA_JAR_PATTERN.matcher(file.getName());
                if (matcher.matches() && matcher.group(1).equals(appendix)) {
                    return file;
                }
            }
            return 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. istioctl/pkg/writer/envoy/configdump/listener.go

    		port := retrieveListenerPort(l)
    		if filter.Verbose {
    
    			matches := retrieveListenerMatches(l)
    			sort.Slice(matches, func(i, j int) bool {
    				return matches[i].destination > matches[j].destination
    			})
    			for _, match := range matches {
    				if includeConfigType {
    					name := fmt.Sprintf("listener/%s", l.Name)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 18.1K bytes
    - Viewed (0)
Back to top