Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 288 for watcher (0.15 sec)

  1. samples/tlssurvey/src/main/kotlin/okhttp3/survey/Iana.kt

    fun parseIanaCsvRow(s: String): SuiteId? {
      if (s.contains("Reserved") || s.contains("Unassigned")) return null
      val matcher = IANA_CSV_PATTERN.matchEntire(s) ?: return null
      val id = (matcher.groupValues[1] + matcher.groupValues[2]).decodeHex()
      return SuiteId(id, matcher.groupValues[3])
    }
    
    class IanaSuites(
      val name: String,
      val suites: List<SuiteId>,
    ) {
      fun fromJavaName(javaName: String): SuiteId {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:24:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. 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)
  3. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    type DeploymentController struct {
    	client         kube.Client
    	clusterID      cluster.ID
    	env            *model.Environment
    	queue          controllers.Queue
    	patcher        patcher
    	gateways       kclient.Client[*gateway.Gateway]
    	gatewayClasses kclient.Client[*gateway.GatewayClass]
    
    	clients         map[schema.GroupVersionResource]getter
    	injectConfig    func() inject.WebhookConfig
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/MavenResolver.java

            Matcher matcher = UNIQUE_SNAPSHOT.matcher(moduleComponentIdentifier.getVersion());
            if (!matcher.matches()) {
                return null;
            }
            return new MavenUniqueSnapshotModuleSource(matcher.group(1));
        }
    
        private MavenMetadata parseMavenMetadata(ExternalResourceName metadataLocation) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. src/internal/trace/testtrace/expectation.go

    		case "SUCCESS":
    		case "FAILURE":
    			exp.failure = true
    			if len(c) != 2 {
    				return exp, fmt.Errorf("bad header line for FAILURE: %q", s.Text())
    			}
    			matcher, err := parseMatcher(c[1])
    			if err != nil {
    				return exp, err
    			}
    			exp.errorMatcher = matcher
    		default:
    			return exp, fmt.Errorf("bad header line: %q", s.Text())
    		}
    		return exp, nil
    	}
    	return exp, s.Err()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/plugin.go

    	expressionOptionalVars := cel.OptionalVariableDeclarations{HasParams: hasParam, HasAuthorizer: false, StrictCost: strictCost}
    	failurePolicy := policy.Spec.FailurePolicy
    	var matcher matchconditions.Matcher = nil
    	matchConditions := policy.Spec.MatchConditions
    	var compositionEnvTemplate *cel.CompositionEnv
    	if strictCost {
    		compositionEnvTemplate = compositionEnvTemplateWithStrictCost
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

                return null;
            }
            StringBuilder builder = new StringBuilder();
            Matcher matcher = WORD_SEPARATOR.matcher(string);
            int pos = 0;
            boolean first = true;
            while (matcher.find()) {
                String chunk = string.subSequence(pos, matcher.start()).toString();
                pos = matcher.end();
                if (chunk.isEmpty()) {
                    continue;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/width_test.go

    			requestURI: "http://server/apis/foo.bar/v1/events?watch=true&sendInitialEvents=true",
    			requestInfo: &apirequest.RequestInfo{
    				Verb:     "watch",
    				APIGroup: "foo.bar",
    				Resource: "events",
    			},
    			counts: map[string]int64{
    				"events.foo.bar": 799,
    			},
    			initialSeatsExpected: 8,
    		},
    		{
    			name:       "request verb is create, no watches",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_waypoint.go

    	m := &matcher.StringMatcher{}
    
    	m.MatchPattern = &matcher.StringMatcher_Prefix{
    		Prefix: spiffe.URIPrefix + push.Mesh.GetTrustDomain() + "/ns/" + proxy.Metadata.Namespace + "/sa/",
    	}
    	return cb.buildConnectOriginate(proxy, push, m)
    }
    
    func (cb *ClusterBuilder) buildConnectOriginate(proxy *model.Proxy, push *model.PushContext, uriSanMatchers ...*matcher.StringMatcher) *cluster.Cluster {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. 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)
Back to top