Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,808 for opinion (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/jvm/plugins-jvm-test-suite/src/main/java/org/gradle/api/plugins/jvm/internal/DefaultJvmTestSuite.java

            annotationProcessor.fromDependencyCollector(getDependencies().getAnnotationProcessor());
    
            if (name.equals(JvmTestSuitePlugin.DEFAULT_TEST_SUITE_NAME)) {
                // for the built-in test suite, we don't express an opinion, so we will not add any dependencies
                // if a user explicitly calls useJUnit or useJUnitJupiter, the built-in test suite will behave like a custom one
                // and add dependencies automatically.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 22:19:12 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/authorization/v1/generated.proto

      optional bool allowed = 1;
    
      // Denied is optional. True if the action would be denied, otherwise
      // false. If both allowed is false and denied is false, then the
      // authorizer has no opinion on whether to authorize the action. Denied
      // may not be true if Allowed is true.
      // +optional
      optional bool denied = 4;
    
      // Reason is optional.  It indicates why a request was allowed or denied.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/authorization/v1beta1/generated.proto

      optional bool allowed = 1;
    
      // Denied is optional. True if the action would be denied, otherwise
      // false. If both allowed is false and denied is false, then the
      // authorizer has no opinion on whether to authorize the action. Denied
      // may not be true if Allowed is true.
      // +optional
      optional bool denied = 4;
    
      // Reason is optional.  It indicates why a request was allowed or denied.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top