Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,879 for allowGet (0.22 sec)

  1. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/CodeNarcExtension.java

        }
    
        /**
         * The maximum number of priority 1 violations allowed before failing the build.
         */
        public int getMaxPriority1Violations() {
            return maxPriority1Violations;
        }
    
        /**
         * The maximum number of priority 1 violations allowed before failing the build.
         */
        public void setMaxPriority1Violations(int maxPriority1Violations) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/InvalidManagedModelMutationIntegrationTest.groovy

    @UnsupportedWithConfigurationCache(because = "software model")
    class InvalidManagedModelMutationIntegrationTest extends AbstractIntegrationSpec {
    
        def "mutating managed inputs of a rule is not allowed"() {
            when:
            buildScript '''
                @Managed
                interface Person {
                    String getName()
                    void setName(String name)
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/cors.md

    To achieve this, the backend must have a list of "allowed origins".
    
    In this case, it would have to include `http://localhost:8080` for the frontend to work correctly.
    
    ## Wildcards
    
    It's also possible to declare the list as `"*"` (a "wildcard") to say that all are allowed.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Nov 13 20:28:37 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfr/utils/utils.h

    // Validate the attributes of 'src' is either contained in the registered
    // attribute sets or in the allowed list.
    LogicalResult ValidateAttrs(Operation* src, const StringSet<>& registered);
    
    // Copies all the allowed attributes in 'src' to 'dst'. The copy failed if the
    // 'dst' has the attribute. Return a failure if there are any attributes are not
    // allowed and also unregistered.
    LogicalResult CopyAllowedUnregisteredAttrs(Operation* src, CallOp dst,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_init_invalid_major.txt

    stderr '(?s)^go: invalid module path "example.com/user/repo/v0": major version suffixes must be in the form of /vN and are only allowed for v2 or later(.*)go mod init example.com/user/repo/v2$'
    
    ! go mod init example.com/user/repo/v02
    stderr '(?s)^go: invalid module path "example.com/user/repo/v02": major version suffixes must be in the form of /vN and are only allowed for v2 or later(.*)go mod init example.com/user/repo/v2$'
    
    ! go mod init example.com/user/repo/v023
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 17 21:34:32 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/AbstractClassBackedManagedTypeIntegrationTest.groovy

            '''
    
            then:
            fails 'tasks'
    
            and:
            failure.assertHasCause("Calling setters of a managed type on itself is not allowed")
        }
    
        def "calling setters of super class from non-abstract getters is not allowed"() {
            when:
            defineCallsSetterInNonAbstractGetterClass()
            buildFile << '''
                @Managed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/run_issue51125.txt

    # Regression test for https://go.dev/issue/51125:
    # Relative import paths (a holdover from GOPATH) were accidentally allowed in module mode.
    
    cd $WORK
    
    # Relative imports should not be allowed with a go.mod file.
    
    ! go run driver.go
    stderr '^driver.go:3:8: "./mypkg" is relative, but relative import paths are not supported in module mode$'
    
    go list -e -f '{{with .Error}}{{.}}{{end}}' -deps driver.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 16 19:10:58 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/VariantAspectExtractionIntegrationTest.groovy

            }
            apply plugin: Rules
            """
    
            expect:
            fails "components"
            failure.assertHasCause "Invalid managed model type SampleBinary: @Variant annotation only allowed for properties of type String and org.gradle.api.Named, but property has type java.lang.Integer (invalid property: variantProp)"
        }
    
        def "variant annotation on property with primitive type raises error"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/authorization/v1beta1/types_swagger_doc_generated.go

    	"":                "SubjectAccessReviewStatus",
    	"allowed":         "Allowed is required. True if the action would be allowed, false otherwise.",
    	"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.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/authorization/v1/types.go

    }
    
    // SubjectAccessReviewStatus
    type SubjectAccessReviewStatus struct {
    	// Allowed is required. True if the action would be allowed, false otherwise.
    	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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 14.6K bytes
    - Viewed (0)
Back to top