Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 197 for isAllowed (0.11 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskChildSpecIntegrationTest.groovy

    class CopyTaskChildSpecIntegrationTest extends AbstractIntegrationSpec implements DirectoryBuildCacheFixture {
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "changing child specs of the copy task while executing is disallowed"() {
            given:
            file("some-dir/input.txt") << "Data"
            buildScript """
                task copy(type: Copy) {
                    outputs.cacheIf { true }
                    from ("some-dir")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/api/validation/path/name.go

    		}
    	}
    
    	return errors
    }
    
    // IsValidPathSegmentPrefix validates the name can be used as a prefix for a name which will be encoded as a path segment
    // It does not check for exact matches with disallowed names, since an arbitrary suffix might make the name valid
    func IsValidPathSegmentPrefix(name string) []string {
    	var errors []string
    	for _, illegalContent := range NameMayNotContain {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 16 13:23:13 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  3. src/crypto/tls/boring_test.go

    		if !isBoringVersion(v) {
    			t.Errorf("client offered disallowed version %#x", v)
    		}
    	}
    	for _, id := range hello.cipherSuites {
    		if !isBoringCipherSuite(id) {
    			t.Errorf("client offered disallowed suite %#x", id)
    		}
    	}
    	for _, id := range hello.supportedCurves {
    		if !isBoringCurve(id) {
    			t.Errorf("client offered disallowed curve %d", id)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/webhook_v1_test.go

    			expectCalls: 1,
    		},
    		{
    			description: "t0k3n, 500 response, disallowed, but never called because previous 200 response was cached",
    
    			token: "t0k3n",
    			allow: false,
    			code:  500,
    
    			expectError: false,
    			expectOk:    true,
    			expectCalls: 0,
    		},
    
    		{
    			description: "an0th3r_t0k3n, 500 response, disallowed, should be called again with retries",
    
    			token: "an0th3r_t0k3n",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 00:47:42 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/odml_to_stablehlo.cc

        llvm::cl::Optional, llvm::cl::init(true));
    
    // NOLINTNEXTLINE
    opt<bool> smuggle_disallowed_ops(
        "smuggle-disallowed-ops",
        llvm::cl::desc("Smuggle disallowed ops via stablehlo.custom_calls."),
        llvm::cl::Optional, llvm::cl::init(true));
    
    // NOLINTNEXTLINE
    opt<bool> freeze_tf_graph(
        "freeze-tf-graph",
        llvm::cl::desc("Freeze TF graph to remove tf.ResourceVariable, etc."),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/idna/idna9.0.0.go

    const acePrefix = "xn--"
    
    func (p *Profile) simplify(cat category) category {
    	switch cat {
    	case disallowedSTD3Mapped:
    		if p.useSTD3Rules {
    			cat = disallowed
    		} else {
    			cat = mapped
    		}
    	case disallowedSTD3Valid:
    		if p.useSTD3Rules {
    			cat = disallowed
    		} else {
    			cat = valid
    		}
    	case deviation:
    		if !p.transitional {
    			cat = valid
    		}
    	case validNV8, validXV8:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/webhook_v1beta1_test.go

    			expectCalls: 1,
    		},
    		{
    			description: "t0k3n, 500 response, disallowed, but never called because previous 200 response was cached",
    
    			token: "t0k3n",
    			allow: false,
    			code:  500,
    
    			expectError: false,
    			expectOk:    true,
    			expectCalls: 0,
    		},
    
    		{
    			description: "an0th3r_t0k3n, 500 response, disallowed, should be called again with retries",
    
    			token: "an0th3r_t0k3n",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 00:47:42 UTC 2022
    - 19.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/mod/module/module.go

    //
    // Import paths have never allowed exclamation marks, so there is no
    // need to define how to escape a literal !.
    //
    // # Unicode Restrictions
    //
    // Today, paths are disallowed from using Unicode.
    //
    // Although paths are currently disallowed from using Unicode,
    // we would like at some point to allow Unicode letters as well, to assume that
    // file systems and URLs are Unicode-safe (storing UTF-8), and apply
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/idna/idna10.0.0.go

    const acePrefix = "xn--"
    
    func (p *Profile) simplify(cat category) category {
    	switch cat {
    	case disallowedSTD3Mapped:
    		if p.useSTD3Rules {
    			cat = disallowed
    		} else {
    			cat = mapped
    		}
    	case disallowedSTD3Valid:
    		if p.useSTD3Rules {
    			cat = disallowed
    		} else {
    			cat = valid
    		}
    	case deviation:
    		if !p.transitional {
    			cat = valid
    		}
    	case validNV8, validXV8:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/idna/trieval.go

    	disallowedSTD3Mapped category = 2
    	deviation            category = 3
    )
    
    const (
    	valid               category = 0x08
    	validNV8            category = 0x18
    	validXV8            category = 0x28
    	disallowed          category = 0x40
    	disallowedSTD3Valid category = 0x80
    	ignored             category = 0xC0
    )
    
    // join types and additional rune information
    const (
    	joiningL = (iota + 1)
    	joiningD
    	joiningT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 04:45:15 UTC 2022
    - 3K bytes
    - Viewed (0)
Back to top