Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,561 for okdown (0.26 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestExecution.java

        /**
         * The test project name. Null if not known or not constant for all experiments
         */
        @Nullable
        String getTestProject();
    
        /**
         * The tasks executed. Null if not known or not constant for all experiments
         */
        @Nullable
        List<String> getTasks();
    
        /**
         * The clean tasks executed. Null if not known or not constant for all experiments
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. .github/workflows/root-disable.yml

    name: Root lockdown tests
    
    on:
      pull_request:
        branches:
          - master
    
    # This ensures that previous jobs for the PR are canceled when the PR is
    # updated.
    concurrency:
      group: ${{ github.workflow }}-${{ github.head_ref }}
      cancel-in-progress: true
    
    permissions:
      contents: read
    
    jobs:
      build:
        name: Go ${{ matrix.go-version }} on ${{ matrix.os }}
        runs-on: ${{ matrix.os }}
        strategy:
          matrix:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 734 bytes
    - Viewed (0)
Back to top