Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,097 for opinion (0.16 sec)

  1. staging/src/k8s.io/api/authorization/v1beta1/types_swagger_doc_generated.go

    	"denied":          "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.",
    	"reason":          "Reason is optional.  It indicates why a request was allowed or denied.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/authorization/v1/types.go

    	Allowed bool `json:"allowed" protobuf:"varint,1,opt,name=allowed"`
    	// 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
    	Denied bool `json:"denied,omitempty" protobuf:"varint,4,opt,name=denied"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/authorization/v1beta1/types.go

    	Allowed bool `json:"allowed" protobuf:"varint,1,opt,name=allowed"`
    	// 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
    	Denied bool `json:"denied,omitempty" protobuf:"varint,4,opt,name=denied"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/library/authz.go

    //
    // allowed
    //
    // Returns true if the authorizer's decision for the check is "allow".  Note that if the authorizer's decision is
    // "no opinion", that the 'allowed' function will return false.
    //
    //	<Decision>.allowed() <bool>
    //
    // Examples:
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/idna/idna9.0.0.go

    // TODO: the current error handling is, in my opinion, the least opinionated.
    // Other strategies are also viable, though:
    // Option 1) Return an empty string in case of error, but allow the user to
    //    specify explicitly which errors to ignore.
    // Option 2) Return the partially evaluated string if it is itself a valid
    //    string, otherwise return the empty string in case of error.
    // Option 3) Option 1 and 2.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/idna/idna10.0.0.go

    // TODO: the current error handling is, in my opinion, the least opinionated.
    // Other strategies are also viable, though:
    // Option 1) Return an empty string in case of error, but allow the user to
    //    specify explicitly which errors to ignore.
    // Option 2) Return the partially evaluated string if it is itself a valid
    //    string, otherwise return the empty string in case of error.
    // Option 3) Option 1 and 2.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/StronglyTypedConfigurationAttributesResolveIntegrationTest.groovy

            run ':a:checkDebug'
    
            then:
            result.assertTasksExecuted(':b:fooJar', ':a:checkDebug')
        }
    
        def "producer can apply additional compatibility rules when consumer does not have an opinion for attribute known to both"() {
            given:
            createDirs("a", "b")
            file('settings.gradle') << "include 'a', 'b'"
            buildFile << """
                $typeDefs
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 48.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/platforms.adoc

    Unfortunately they will have to use `exclude` if they happen to disagree with one of the forced versions.
    Instead, if your reusable software component has a strong opinion on some third party dependency versions, consider using a <<rich_versions.adoc#sec:strict-version,rich version declaration>> with a `strictly`.
    ====
    
    [[sub:platforms-vs-catalog]]
    == Should I use a platform or a catalog?
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest_test.go

    		if inPod.ResourceVersion == "" || inPod.ResourceVersion == "0" {
    			inPod.ResourceVersion = p.updatePod.ResourceVersion
    		}
    		if inPod.ResourceVersion != p.updatePod.ResourceVersion {
    			// If the patch didn't have an opinion on the resource version, retry like GuaranteedUpdate does
    			if inPod.ResourceVersion == currentResourceVersion {
    				continue
    			}
    			// If the patch changed the resource version and it mismatches, conflict
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    ----
    
    The drawback to this approach is that it automatically forces the project to apply the Java plugin, imposing a strong opinion on it (i.e., reducing flexibility and generality).
    In practice, the project applying the plugin might not even deal with Java code.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
Back to top