Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,828 for okdown (0.37 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/MultipleCandidateMatcher.java

                    return;
                } else if (remaining.cardinality() == 1) {
                    // If we're down to one candidate and the attribute has a known precedence,
                    // we can stop now and choose this candidate as the match.
                    return;
                }
            }
            // If the attribute does not have a known precedence, then we cannot stop
            // until we've disambiguated all of the attributes.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/names/controller_names.go

    */
    
    package names
    
    // Canonical controller names
    //
    // NAMING CONVENTIONS
    // 1. naming should be consistent across the controllers
    // 2. use of shortcuts should be avoided, unless they are well-known non-Kubernetes shortcuts
    // 3. Kubernetes' resources should be written together without a hyphen ("-")
    //
    // CHANGE POLICY
    // The controller names should be treated as IDs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/policies.go

    		Authorization: &security.Authorization{
    			Name:      implicitWaypointPolicyName(&waypoint),
    			Namespace: waypoint.Namespace,
    			// note: we don't actually use label selection; the names have an internally well-known format
    			// workload generation will append a reference to this
    			Scope:  security.Scope_WORKLOAD_SELECTOR,
    			Action: security.Action_ALLOW,
    			Groups: []*security.Group{{
    				Rules: []*security.Rules{
    					{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/etcd/etcd.go

    		return lastError
    	}
    	return nil
    }
    
    // CheckClusterHealth returns nil for status Up or error for status Down
    func (c *Client) CheckClusterHealth() error {
    	_, err := c.getClusterStatus()
    	return err
    }
    
    // getClusterStatus returns nil for status Up (along with endpoint status response map) or error for status Down
    func (c *Client) getClusterStatus() (map[string]*clientv3.StatusResponse, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/filters/metrics.go

    // of usernames. This is done both to limit the cardinality of the
    // authorized_user_requests metric, and to avoid pushing actual usernames in the
    // metric.
    func compressUsername(username string) string {
    	switch {
    	// Known internal identities.
    	case username == "admin" ||
    		username == "client" ||
    		username == "kube_proxy" ||
    		username == "kubelet" ||
    		username == "system:serviceaccount:kube-system:default":
    		return username
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 20 13:35:55 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  6. pkg/collateral/metrics/otel_test.go

    }
    
    var (
    	// AttributesTotal is a measure of the number of known attributes.
    	AttributesTotal = monitoring.NewGauge(
    		"mixer/config/attributes_total",
    		"The number of known attributes in the current config.",
    	)
    
    	// HandlersTotal is a measure of the number of known handlers.
    	HandlersTotal = monitoring.NewSum(
    		"mixer/config/handler_configs_total",
    		"The number of known handlers in the current config.",
    	)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/AbstractSkipEmptyWorkStepTest.groovy

        }
    
        def "delegates when work has no source properties"() {
            def delegateResult = Mock(CachingResult)
            knownInputProperties = ImmutableSortedMap.of("known", knownSnapshot)
            knownInputFileProperties = ImmutableSortedMap.of("known-file", knownFileFingerprint)
    
            when:
            def result = step.execute(work, context)
    
            then:
            1 * inputFingerprinter.fingerprintInputProperties(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:30 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/sidecar_simulation_test.go

    				Match:     "known.default.svc.cluster.local",
    				Dest:      "alt-known.default.svc.cluster.local",
    			}},
    			proxy:     proxy("not-default"),
    			routeName: "8080",
    			expected: map[string][]string{
    				"known.default.svc.cluster.local": {"outbound|8080||alt-known.default.svc.cluster.local"},
    			},
    			expectedGateway: map[string][]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/maturity/maturity.go

    	annotation.GatewayControllerVersion.Name: true,
    
    	// this annotation is added automatically.
    	annotation.IoIstioRev.Name: true,
    
    	// TODO below are ambient related annotations that are not yet known to be stable.
    	// They are added automatically, and should not be alerted on.
    	// Delete these related annotations once they are stable.
    	// Ref: https://github.com/istio/api/pull/2695
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/internal/DefaultSeverity.java

            }
        });
    
        public DefaultSeverity(int severity, boolean known) {
            this.severity = severity;
            this.known = known;
        }
    
        @Override
        public int getSeverity() {
            return severity;
        }
    
        @Override
        public boolean isKnown() {
            return known;
        }
    
        public static Severity from(int severity) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 11:02:44 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top