Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for unsat (0.05 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    		// | ResourceVersion | AllowWatchBookmarks | SendInitialEvents     |
    		// +=================+=====================+=======================+
    		// | Unset           | true/false          | nil/true/false        |
    		// +-----------------+---------------------+-----------------------+
    		{
    			name: "RV=unset, allowWatchBookmarks=true, sendInitialEvents=nil",
    			opts: listOptions(true, nil, ""),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            null        | null          | []            | "add to unset value w/ empty convention"          | { it.add("1") }
            ["1"]       | null          | []            | "append to unset value w/ empty convention"       | { it.append("1") }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      //
      // - If `paramKind` is cluster-scoped, this field MUST be unset. Setting this
      // field results in a configuration error.
      //
      // - If `paramKind` is namespace-scoped, the namespace of the object being
      // evaluated for admission will be used when this field is left unset. Take
      // care that if this is left empty the binding must not match any cluster-scoped
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// line breaks. The message must not contain line breaks.
    	// If unset, the message is "failed rule: {Rule}".
    	// e.g. "must be a URL with the host matching spec.host"
    	// If the Expression contains line breaks. Message is required.
    	// The message must not contain line breaks.
    	// If unset, the message is "failed Expression: {Expression}".
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loader/loader.go

    	name string
    	v    int
    }
    
    type Bitmap []uint32
    
    // set the i-th bit.
    func (bm Bitmap) Set(i Sym) {
    	n, r := uint(i)/32, uint(i)%32
    	bm[n] |= 1 << r
    }
    
    // unset the i-th bit.
    func (bm Bitmap) Unset(i Sym) {
    	n, r := uint(i)/32, uint(i)%32
    	bm[n] &^= (1 << r)
    }
    
    // whether the i-th bit is set.
    func (bm Bitmap) Has(i Sym) bool {
    	n, r := uint(i)/32, uint(i)%32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

                it.put('k2', '4')
            }
    
            expect:
            assertValueIs(['k0': '1', 'k1': '2', 'k2': '4'])
            property.explicit
    
            when:
            property.unset()
    
            then:
            assertValueIs(['k0': '1'])
            !property.explicit
        }
    
        def "may configure incrementally based on convention value using insert"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    //
    // +-----------------+---------------------+-------------------+
    // | ResourceVersion | AllowWatchBookmarks | SendInitialEvents |
    // +=================+=====================+===================+
    // | Unset           | true/false          | true/false        |
    // | 0               | true/false          | true/false        |
    // | 1               | true/false          | true/false        |
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    				allErrs.SchemaErrors = append(allErrs.SchemaErrors, field.Invalid(fldPath.Child("items").Child("x-kubernetes-list-type"), is.XListType, "must be atomic as item of a list with x-kubernetes-list-type=set"))
    			}
    		case "object":
    			if is.XMapType == nil || *is.XMapType != "atomic" { // granular is the implicit default behaviour if unset, hence nil and != atomic are wrong
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    			Namespace: "ns1",
    		}))})
    
    	// Set workload policy to be UNSET with a STRICT port-level override
    	s.addPolicy(t, selectorPolicyName, testNS, map[string]string{"app": "a"}, gvk.PeerAuthentication, func(c controllers.Object) {
    		pol := c.(*clientsecurityv1beta1.PeerAuthentication)
    		pol.Spec.Mtls = nil // equivalent to UNSET
    		pol.Spec.PortLevelMtls = map[uint32]*auth.PeerAuthentication_MutualTLS{
    			9090: {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    				}
    				return
    			}
    
    			if err != nil {
    				t.Fatalf("GetList failed: %v", err)
    			}
    			if len(out.ResourceVersion) == 0 {
    				t.Errorf("%s: unset resourceVersion", tt.name)
    			}
    
    			if tt.expectedAlternatives == nil {
    				expectNoDiff(t, "incorrect list pods", tt.expectedOut, out.Items)
    			} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
Back to top