Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,599 for matchLen (0.12 sec)

  1. pkg/workloadapi/security/authorization.proto

      // If set to NAMESPACE, the 'namespace' field value will be used.
      Scope scope = 3;
      // The action to take if the request is matched with the rules.
      // Default is ALLOW if not specified.
      Action action = 4;
      // Set of RBAC policy groups each containing its rules.
      // If at least one of the groups is matched the policy action will
      // take place.
      // Groups are OR-ed.
      repeated Group groups = 5;
    }
    
    message Group {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 20:45:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/filter/impl/UrlFilterImpl.java

            if (!includeList.isEmpty()) {
                boolean match = false;
                for (final Pattern pattern : includeList) {
                    final Matcher matcher = pattern.matcher(url);
                    if (matcher.matches()) {
                        match = true;
                    }
                }
                if (!match) {
                    return false;
                }
            }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/Splitter.java

        checkArgument(
            !separatorPattern.matcher("").matches(),
            "The pattern may not match the empty string: %s",
            separatorPattern);
    
        return new Splitter(
            new Strategy() {
              @Override
              public SplittingIterator iterator(final Splitter splitter, CharSequence toSplit) {
                final CommonMatcher matcher = separatorPattern.matcher(toSplit);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  4. operator/cmd/mesh/test-util_test.go

    	return ret
    }
    
    // nameEquals returns the object in o whose name matches "name", or nil if no object name matches.
    func (o *ObjectSet) nameEquals(name string) *object.K8sObject {
    	for k, v := range o.objMap {
    		_, _, objName := object.FromHash(k)
    		if objName == name {
    			return v
    		}
    	}
    	return nil
    }
    
    // kind returns a subset of o where kind matches the given value.
    func (o *ObjectSet) kind(kind string) *ObjectSet {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  5. platforms/jvm/jvm-services/src/main/java/org/gradle/jvm/toolchain/internal/DefaultOsXJavaHomeCommand.java

        static Set<File> parse(Reader output) {
            BufferedReader reader = new BufferedReader(output);
            return reader.lines().flatMap(line -> {
                Matcher matcher = INSTALLATION_PATTERN.matcher(line);
                if (matcher.matches()) {
                    String javaHome = matcher.group(1);
                    return Stream.of(javaHome);
                }
                return Stream.empty();
            }).map(File::new).collect(Collectors.toSet());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. src/path/filepath/match.go

    	}
    }
    
    // glob searches for files matching pattern in the directory dir
    // and appends them to matches. If the directory cannot be
    // opened, it returns the existing matches. New matches are
    // added in lexicographical order.
    func glob(dir, pattern string, matches []string) (m []string, e error) {
    	m = matches
    	fi, err := os.Stat(dir)
    	if err != nil {
    		return // ignore I/O error
    	}
    	if !fi.IsDir() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/validator_test.go

    		},
    	}
    	for _, tc := range cases {
    		t.Run(tc.name, func(t *testing.T) {
    			var matcher matchconditions.Matcher
    			if tc.matcher == nil {
    				matcher = &fakeCELMatcher{matches: true}
    			} else {
    				matcher = tc.matcher
    			}
    			v := validator{
    				failPolicy: tc.failPolicy,
    				celMatcher: matcher,
    				validationFilter: &fakeCelFilter{
    					evaluations: tc.evaluations,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/SourceMetaDataVisitor.java

            findAnnotations(methodDeclaration, methodMetaData);
            extractParameters(methodDeclaration, methodMetaData);
    
            Matcher matcher = GETTER_METHOD_NAME.matcher(name);
            if (matcher.matches()) {
                int startName = matcher.start(2);
                String propName = name.substring(startName, startName + 1).toLowerCase() + name.substring(startName + 1);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 21 13:27:02 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/LogContent.java

            }
            List<String> result = new ArrayList<String>(lines.size());
            for (String line : lines) {
                java.util.regex.Matcher matcher = DEBUG_PREFIX.matcher(line);
                if (matcher.lookingAt()) {
                    result.add(line.substring(matcher.end()));
                } else {
                    result.add(line);
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/node_matchers.cc

          DCHECK(!matcher->op);
          matcher->op = prop.op();
        }
    
        if (prop.constant_value()) {
          DCHECK(!matcher->constant_value);
          matcher->constant_value = prop.constant_value();
        }
    
        if (prop.assigned_device()) {
          DCHECK(!matcher->assigned_device);
          matcher->assigned_device = prop.assigned_device();
        }
    
        if (prop.inputs()) {
          DCHECK(!matcher->input_matchers);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 03 16:15:20 UTC 2022
    - 16.8K bytes
    - Viewed (0)
Back to top