Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 371 for disallow (0.17 sec)

  1. src/html/template/css.go

    	for i, c := range b {
    		switch c {
    		case 0, '"', '\'', '(', ')', '/', ';', '@', '[', '\\', ']', '`', '{', '}', '<', '>':
    			return filterFailsafe
    		case '-':
    			// Disallow <!-- or -->.
    			// -- should not appear in valid identifiers.
    			if i != 0 && b[i-1] == '-' {
    				return filterFailsafe
    			}
    		default:
    			if c < utf8.RuneSelf && isCSSNmchar(rune(c)) {
    				id = append(id, c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 19:38:18 UTC 2023
    - 7K bytes
    - Viewed (0)
  2. src/runtime/mwbbuf.go

    //
    // When the buffer fills up, the write barrier invokes the slow path
    // (wbBufFlush) to flush the buffer to the GC work queues. In this
    // path, since the compiler didn't spill registers, we spill *all*
    // registers and disallow any GC safe points that could observe the
    // stack frame (since we don't know the types of the spilled
    // registers).
    
    package runtime
    
    import (
    	"internal/goarch"
    	"internal/runtime/atomic"
    	"unsafe"
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. src/net/http/transfer_test.go

    		}
    		gotErr := tr.parseTransferEncoding()
    		if !reflect.DeepEqual(gotErr, tt.wantErr) {
    			t.Errorf("%d.\ngot error:\n%v\nwant error:\n%v\n\n", i, gotErr, tt.wantErr)
    		}
    	}
    }
    
    // issue 39017 - disallow Content-Length values such as "+3"
    func TestParseContentLength(t *testing.T) {
    	tests := []struct {
    		cl      string
    		wantErr error
    	}{
    		{
    			cl:      "",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:16:28 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/policy/v1/types_swagger_doc_generated.go

    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 20 23:36:45 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/policy/v1beta1/types_swagger_doc_generated.go

    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/policy/v1/generated.proto

      // Healthy pods will be subject to the PDB for eviction.
      //
      // Additional policies may be added in the future.
      // Clients making eviction decisions should disallow eviction of unhealthy pods
      // if they encounter an unrecognized policy in this field.
      //
      // This field is beta-level. The eviction API uses this field when
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionLifecycleIntegrationTest.groovy

            """
    
            when:
            fails('broken')
    
            then:
            failure.assertHasCause("The value for this file collection is final and cannot be changed any further.")
        }
    
        def "can disallow changes to file collection without finalizing value"() {
            buildFile """
                def files = objects.fileCollection()
                def name = 'other'
                files.from { name }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 10:55:07 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  8. pkg/registry/apps/daemonset/strategy.go

    		groupVersion := schema.GroupVersion{Group: requestInfo.APIGroup, Version: requestInfo.APIVersion}
    		switch groupVersion {
    		case extensionsv1beta1.SchemeGroupVersion:
    			// no-op for compatibility
    		default:
    			// disallow mutation of selector
    			allErrs = append(allErrs, apivalidation.ValidateImmutableField(newDaemonSet.Spec.Selector, oldDaemonSet.Spec.Selector, field.NewPath("spec").Child("selector"))...)
    		}
    	}
    
    	return allErrs
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 01:52:02 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/testing/eventclock/fake.go

    	"k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/eventclock"
    	"k8s.io/klog/v2"
    )
    
    // waitGroupCounter is a wait group used for a GoRoutineCounter.  This private
    // type is used to disallow direct waitGroup access
    type waitGroupCounter struct {
    	wg sync.WaitGroup
    }
    
    // compile time assertion that waitGroupCounter meets requirements
    // of GoRoutineCounter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/policy/v1/generated.proto

      // Healthy pods will be subject to the PDB for eviction.
      //
      // Additional policies may be added in the future.
      // Clients making eviction decisions should disallow eviction of unhealthy pods
      // if they encounter an unrecognized policy in this field.
      //
      // This field is beta-level. The eviction API uses this field when
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top