Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for Matcher (0.13 sec)

  1. docs/metrics/prometheus/grafana/replication/minio-replication-node.json

                    "color": "red",
                    "value": 80
                  }
                ]
              },
              "unit": "short"
            },
            "overrides": [
              {
                "matcher": {
                  "id": "byName",
                  "options": "Replication Errors"
                },
                "properties": [
                  {
                    "id": "color",
                    "value": {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/route/route.go

    		out.Headers = append(out.Headers, matcher)
    	}
    
    	if in.Scheme != nil {
    		matcher := translateHeaderMatch(HeaderScheme, in.Scheme)
    		out.Headers = append(out.Headers, matcher)
    	}
    
    	for name, stringMatch := range in.QueryParams {
    		matcher := translateQueryParamMatch(name, stringMatch)
    		out.QueryParameters = append(out.QueryParameters, matcher)
    	}
    
    	return out
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  3. docs/metrics/prometheus/grafana/minio-dashboard.json

                    }
                  },
                  "type": "special"
                }
              ],
              "unit": "bytes"
            },
            "overrides": [
              {
                "matcher": {
                  "id": "byName",
                  "options": "Free"
                },
                "properties": [
                  {
                    "id": "color",
                    "value": {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 10:03:01 UTC 2024
    - 93K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/route/route_test.go

    import (
    	"log"
    	"reflect"
    	"testing"
    
    	envoycore "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	envoyroute "github.com/envoyproxy/go-control-plane/envoy/config/route/v3"
    	matcher "github.com/envoyproxy/go-control-plane/envoy/type/matcher/v3"
    	. "github.com/onsi/gomega"
    	"google.golang.org/protobuf/types/known/durationpb"
    	"k8s.io/apimachinery/pkg/types"
    
    	networking "istio.io/api/networking/v1alpha3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                if (hasProjectExpression(s)) {
                    String path = pathSupplier.get();
                    Matcher matcher = EXPRESSION_PROJECT_NAME_PATTERN.matcher(s);
                    while (matcher.find()) {
                        String propertyName = matcher.group(0);
    
                        if (path.startsWith("activation.file.") && "${project.basedir}".equals(propertyName)) {
                            continue;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                if (hasProjectExpression(s)) {
                    String path = pathSupplier.get();
                    Matcher matcher = EXPRESSION_PROJECT_NAME_PATTERN.matcher(s);
                    while (matcher.find()) {
                        String propertyName = matcher.group(0);
    
                        if (path.startsWith("activation.file.") && "${project.basedir}".equals(propertyName)) {
                            continue;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

            # Disable quantization for the quantizable unit (lifted function) whose
            # function name matches "composite_dot_general_fn_1".
            # "composite_dot_general_fn_2" will be quantized.
            specs=qc.QuantizationSpecs(
                specs=[
                    qc.QuantizationSpec(
                        matcher=qc.MatcherSpec(
                            function_name=qc.FunctionNameMatcherSpec(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    			}
    		}
    		// namespaced watchers not scoped by name
    		for _, watcher := range c.watchers.allWatchers[namespacedName{namespace: namespace}] {
    			c.watchersBuffer = append(c.watchersBuffer, watcher)
    		}
    	}
    	if len(name) > 0 {
    		// cluster-wide watchers scoped by name
    		for _, watcher := range c.watchers.allWatchers[namespacedName{name: name}] {
    			c.watchersBuffer = append(c.watchersBuffer, watcher)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

            for (def plannedNode : plannedNodes) {
                def matchers = nodeMatchers.findAll { it.matchNode(plannedNode) }
                assert matchers.size() == 1, "Expected exactly one matcher for node ${plannedNode.nodeIdentity}, but found ${matchers.size()}"
                def nodeMatcher = matchers[0]
                def nodeId = getTypedNodeId(plannedNode.nodeIdentity)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  10. src/testing/testing.go

    // The argument to the -run, -bench, and -fuzz command-line flags is an unanchored regular
    // expression that matches the test's name. For tests with multiple slash-separated
    // elements, such as subtests, the argument is itself slash-separated, with
    // expressions matching each name element in turn. Because it is unanchored, an
    // empty expression matches any string.
    // For example, using "matching" to mean "whose name contains":
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top