Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,036 for allowGet (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/go/testdata/script/run_internal.txt

    env GO111MODULE=off
    
    go list -e -f '{{.Incomplete}}' m/runbad1.go
    stdout true
    ! go run m/runbad1.go
    stderr 'use of internal package m/x/internal not allowed'
    
    go list -e -f '{{.Incomplete}}' m/runbad2.go
    stdout true
    ! go run m/runbad2.go
    stderr 'use of internal package m/x/internal/y not allowed'
    
    go list -e -f '{{.Incomplete}}' m/runok.go
    stdout false
    go run m/runok.go
    
    cd m
    env GO111MODULE=on
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 03 19:05:59 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/go/testdata/script/build_import_cycle.txt

    # mod_import_cycle covers this error in module mode.
    env GO111MODULE=off
    
    ! go build selfimport
    stderr -count=1 'import cycle not allowed'
    
    go list -e -f '{{.Error}}' selfimport # Don't hang forever
    stdout -count=1 'import cycle not allowed'
    
    -- selfimport/selfimport.go --
    package selfimport
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 314 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