Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 362 for Patches (0.1 sec)

  1. subprojects/core/src/main/java/org/gradle/util/internal/NameMatcher.java

            Matcher matcher = boundaryPattern.matcher(name);
            int pos = 0;
            StringBuilder builder = new StringBuilder();
            while (matcher.find()) {
                String prefix = name.substring(pos, matcher.start());
                if (prefix.length() > 0) {
                    builder.append(Pattern.quote(prefix));
                }
                builder.append(Pattern.quote(matcher.group()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 10:15:47 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/util/NameMatcher.java

            Matcher matcher = boundaryPattern.matcher(name);
            int pos = 0;
            StringBuilder builder = new StringBuilder();
            while (matcher.find()) {
                String prefix = name.substring(pos, matcher.start());
                if (prefix.length() > 0) {
                    builder.append(Pattern.quote(prefix));
                }
                builder.append(Pattern.quote(matcher.group()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:48:18 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/deny-groups.yaml

        - namespaces:
          - exact: only-l4-ns
          principals:
          - exact: only-l4-principals
    - rules:
      - matches:
        - {}
      - matches:
        - {}
    - rules:
      - matches:
        - namespaces:
          - exact: when-l4-l7-ns
      - matches:
        - {}
    - rules:
      - matches:
        - namespaces:
          - exact: when-l4-ns
      - matches:
        - notSourceIps:
          - address: FBQUFA==
            length: 32
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 955 bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/swig/swig_test.go

    		}
    		return x
    	}
    	var major, minor, patch int
    	major = atoi(string(matches[1]))
    	if len(matches[2]) > 0 {
    		minor = atoi(string(matches[2][1:]))
    	}
    	if len(matches[3]) > 0 {
    		patch = atoi(string(matches[3][1:]))
    	}
    	if parseError != nil {
    		t.Logf("error parsing swig version %q, continuing anyway: %s", string(matches[0]), parseError)
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:38:14 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. src/net/http/routing_tree.go

    	}
    	if method == "HEAD" {
    		// GET matches HEAD too.
    		if l, m := n.findChild("GET").matchPath(path, nil); l != nil {
    			return l, m
    		}
    	}
    	// No exact match; try patterns with no method.
    	return n.emptyChild.matchPath(path, nil)
    }
    
    // matchPath matches a path.
    // Its return values are the same as [routingNode.match].
    // matchPath calls itself recursively. The matches argument holds the wildcard matches
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. src/index/suffixarray/suffixarray.go

    	if len(s) > 0 && n != 0 {
    		matches := x.lookupAll(s)
    		count := matches.len()
    		if n < 0 || count < n {
    			n = count
    		}
    		// 0 <= n <= count
    		if n > 0 {
    			result = make([]int, n)
    			if matches.int32 != nil {
    				for i := range result {
    					result[i] = int(matches.int32[i])
    				}
    			} else {
    				for i := range result {
    					result[i] = int(matches.int64[i])
    				}
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/allow-groups.yaml

    groups:
    - rules:
      - matches:
        - destinationPorts:
          - 80
      - matches:
        - namespaces:
          - exact: only-l4-ns
          principals:
          - exact: only-l4-principals
    - rules:
      - matches:
        - namespaces:
          - exact: when-l4-ns
      - matches:
        - sourceIps:
          - address: CgoKCg==
            length: 32
    name: groups
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 345 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/fake/fake_example.go

    	}
    	list := &v1.ExampleList{ListMeta: obj.(*v1.ExampleList).ListMeta}
    	for _, item := range obj.(*v1.ExampleList).Items {
    		if label.Matches(labels.Set(item.Labels)) {
    			list.Items = append(list.Items, item)
    		}
    	}
    	return list, err
    }
    
    // Watch returns a watch.Interface that watches the requested examples.
    func (c *FakeExamples) Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error) {
    	return c.Fake.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. src/io/fs/glob_test.go

    	for _, tt := range globTests {
    		matches, err := Glob(tt.fs, tt.pattern)
    		if err != nil {
    			t.Errorf("Glob error for %q: %s", tt.pattern, err)
    			continue
    		}
    		if !slices.Contains(matches, tt.result) {
    			t.Errorf("Glob(%#q) = %#v want %v", tt.pattern, matches, tt.result)
    		}
    	}
    	for _, pattern := range []string{"no_match", "../*/no_match", `\*`} {
    		matches, err := Glob(os.DirFS("."), pattern)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:36:52 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/quantization/tools/op_quant_spec_getters_gen.cc

            if (fixed_uniform_trait_regex.match(trait_str, &matches)) {
              OUT(4) << "for (int i = 0, e = op->getNumResults(); i != e; ++i)\n";
              OUT(6) << "spec->restricted_output_params[std::make_pair("
                     << matches[1] << ", " << matches[2]
                     << ")].push_back(tfl.::mlir::OpTrait::quant::" << trait_str
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 11:18:44 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top