Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for isAllowed (0.15 sec)

  1. pkg/apis/certificates/validation/validation_test.go

    	testCases := []struct {
    		description          string
    		oldBundle, newBundle *capi.ClusterTrustBundle
    		wantErrors           field.ErrorList
    	}{{
    		description: "changing signer name disallowed",
    		oldBundle: &capi.ClusterTrustBundle{
    			ObjectMeta: metav1.ObjectMeta{
    				Name: "k8s.io:foo:bar",
    			},
    			Spec: capi.ClusterTrustBundleSpec{
    				SignerName:  "k8s.io/foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

    
            then:
            def e = thrown IllegalStateException
            e.message == 'The value for this property cannot be changed any further.'
        }
    
        def "cannot set to empty map after changes disallowed"() {
            given:
            property.set(someValue())
            property.disallowChanges()
            when:
            property.empty()
            then:
            def e = thrown IllegalStateException
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    		},
    		{
    			name:              "valid url that is disallowed",
    			in:                "https://issuer-url",
    			disallowedIssuers: sets.New("https://issuer-url"),
    			want:              `issuer.url: Invalid value: "https://issuer-url": URL must not overlap with disallowed issuers: [https://issuer-url]`,
    		},
    		{
    			name: "valid url",
    			in:   "https://issuer-url",
    			want: "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/extensions/v1beta1/types.go

    }
    
    // IngressRuleValue represents a rule to apply against incoming requests. If the
    // rule is satisfied, the request is routed to the specified backend. Currently
    // mixing different types of rules in a single Ingress is disallowed, so exactly
    // one of the following must be set.
    type IngressRuleValue struct {
    	//TODO:
    	// 1. Consider renaming this resource and the associated rules so they
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  5. src/net/url/url_test.go

    	{
    		"myscheme://authority<\"hi\">/foo",
    		&URL{
    			Scheme: "myscheme",
    			Host:   "authority<\"hi\">",
    			Path:   "/foo",
    		},
    		"",
    	},
    	// spaces in hosts are disallowed but escaped spaces in IPv6 scope IDs are grudgingly OK.
    	// This happens on Windows.
    	// golang.org/issue/14002
    	{
    		"tcp://[2020::2020:20:2020:2020%25Windows%20Loves%20Spaces]:2020",
    		&URL{
    			Scheme: "tcp",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  6. src/runtime/mgcmark.go

    // credit. This first satisfies blocked assists on the
    // work.assistQueue and then flushes any remaining credit to
    // gcController.bgScanCredit.
    //
    // Write barriers are disallowed because this is used by gcDrain after
    // it has ensured that all work is drained and this must preserve that
    // condition.
    //
    //go:nowritebarrierrec
    func gcFlushBgCredit(scanWork int64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/mark_for_compilation_pass.cc

                << device_type.type_string();
    
        if (CompilationDisallowedByXlaCompileAttr(node)) {
          VLOG(2) << "Not clustering " << node->name()
                  << ": disallowed by _XlaCompile attribute";
          continue;
        }
    
        const XlaOpRegistry::DeviceRegistration* registration;
        if (!XlaOpRegistry::GetCompilationDevice(device_type.type(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  8. src/runtime/mheap.go

    }
    
    // recordspan adds a newly allocated span to h.allspans.
    //
    // This only happens the first time a span is allocated from
    // mheap.spanalloc (it is not called when a span is reused).
    //
    // Write barriers are disallowed here because it can be called from
    // gcWork when allocating new workbufs. However, because it's an
    // indirect call from the fixalloc initializer, the compiler can't see
    // this.
    //
    // The heap lock must be held.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
Back to top