Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,137 for opinion (0.12 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/filters/metrics_test.go

    			},
    			want: `
    			# HELP authorization_attempts_total [ALPHA] Counter of authorization attempts broken down by result. It can be either 'allowed', 'denied', 'no-opinion' or 'error'.
    			# TYPE authorization_attempts_total counter
    			authorization_attempts_total{result="no-opinion"} 1
    				`,
    		},
    	}
    
    	// Since prometheus' gatherer is global, other tests may have updated metrics already, so
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 20 13:35:55 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/attributes/DefaultAttributesSchemaTest.groovy

            @Override
            void execute(CompatibilityCheckDetails<String> stringCompatibilityCheckDetails) {
                count++
            }
        }
    
        def "treats equal values as compatible when no rule expresses an opinion"() {
            given:
            def attribute = Attribute.of(String)
            schema.attribute(attribute).compatibilityRules.add(DoNothingRule)
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/rich_versions.adoc

    | 1.4
    | Any version between `1.0` and `2.0` (exclusive) except for `1.4`, `1.5` if nobody else cares. +
    Overwrites versions from transitive dependencies. +
    🔒
    
    | No opinion, works with `1.5`.
    |
    |
    | 1.5
    |
    | `1.5` if no other opinion, any otherwise.
    
    | No opinion, prefer latest release.
    |
    |
    | `latest.release`
    |
    | The latest release at build time. +
    🔒
    
    | On the edge, latest release, no downgrade.
    |
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/filters/metrics.go

     * the metric stability policy.
     */
    const (
    	successLabel = "success"
    	failureLabel = "failure"
    	errorLabel   = "error"
    
    	allowedLabel   = "allowed"
    	deniedLabel    = "denied"
    	noOpinionLabel = "no-opinion"
    )
    
    var (
    	authenticatedUserCounter = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Name:           "authenticated_user_requests",
    			Help:           "Counter of authenticated requests broken out by 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)
  5. platforms/ide/problems-api/src/main/java/org/gradle/internal/problems/failure/StackTraceClassifier.java

                return StackTraceRelevance.USER_CODE;
            }
        };
    
        /**
         * Returns relevance for the given frame, or null if the classifier does not have an opinion.
         */
        @Nullable
        StackTraceRelevance classify(StackTraceElement frame);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:52:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/authorization/metrics/metrics_test.go

    		`
    		if err := testutil.GatherAndCompare(legacyregistry.DefaultGatherer, strings.NewReader(expectedValue), metrics...); err != nil {
    			t.Fatal(err)
    		}
    		authorizationDecisionsTotal.Reset()
    	}
    
    	// no-opinion emits no metric
    	{
    		dummyAuthorizer.decision = authorizer.DecisionNoOpinion
    		_, _, _ = a.Authorize(context.Background(), nil)
    		_, _, _ = a.Authorize(context.Background(), nil)
    		expectedValue := prefix + `
    		`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 13:20:59 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. pkg/kubeapiserver/options/authorization.go

    		}
    
    		// load/validate kube-apiserver authz config with no opinion about required modes
    		_, err := authorizer.LoadAndValidateFile(o.AuthorizationConfigurationFile, nil)
    		if err != nil {
    			return append(allErrors, err)
    		}
    
    		return allErrors
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 14 23:09:15 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/authorization/authorizer/interfaces.go

    	DecisionDeny Decision = iota
    	// DecisionAllow means that an authorizer decided to allow the action.
    	DecisionAllow
    	// DecisionNoOpinion means that an authorizer has no opinion on whether
    	// to allow or deny an action.
    	DecisionNoOpinion
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 14:36:14 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  9. pkg/scheduler/apis/config/v1/defaults.go

    	}
    
    	if len(obj.ClientConnection.ContentType) == 0 {
    		obj.ClientConnection.ContentType = "application/vnd.kubernetes.protobuf"
    	}
    	// Scheduler has an opinion about QPS/Burst, setting specific defaults for itself, instead of generic settings.
    	if obj.ClientConnection.QPS == 0.0 {
    		obj.ClientConnection.QPS = 50.0
    	}
    	if obj.ClientConnection.Burst == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509.go

    // for cases where the options (particularly the CAs) can change.  If the bool is false, then the returned VerifyOptions
    // are ignored and the authenticator will express "no opinion".  This allows a clear signal for cases where a CertPool
    // is eventually expected, but not currently present.
    type VerifyOptionFunc func() (x509.VerifyOptions, bool)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 18 01:31:22 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top