Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,097 for opinion (0.33 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/attributes/CompatibilityRuleChain.java

     * an opinion.</p>
     *
     * <p>For a given set of rules, the execution is done <i>in order</i>, and interrupts as soon as a rule
     * expressed an option (through {@link CompatibilityCheckDetails#compatible()} or {@link CompatibilityCheckDetails#incompatible()}).
     * </p>
     *
     * <p>If the end of the rule chain is reached and that no rule expressed an opinion then we apply an equality check by default, and
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/MutableVersionConstraint.java

        void require(String version);
    
        /**
         * Sets the preferred version of this module.
         * <p>
         * This is a very soft version declaration.
         * It applies only if there is no stronger non dynamic opinion on a version for the module.
         * This term does not support dynamic versions.
         * <p>
         * This can complement a {@link #strictly(String) strictly} or {@link #require(String) require} indication.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 30 23:02:48 UTC 2021
    - 3.6K bytes
    - Viewed (0)
Back to top