Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 157 for unse (0.07 sec)

  1. 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)
  2. 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)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    // genEnumWithRuleAndValues creates a function that accepts an optional maxLength
    // with given validation rule and a set of enum values, following the convention of existing tests.
    // The test has two checks, first with maxLength unset to check if maxLength can be concluded from enums,
    // second with maxLength set to ensure it takes precedence.
    func genEnumWithRuleAndValues(rule string, values ...string) func(maxLength *int64) *schema.Structural {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    			}, time.Second, stopCh,
    		)
    	}()
    
    	return cacher, nil
    }
    
    func (c *Cacher) startCaching(stopChannel <-chan struct{}) {
    	// The 'usable' lock is always 'RLock'able when it is safe to use the cache.
    	// It is safe to use the cache after a successful list until a disconnection.
    	// We start with usable (write) locked. The below OnReplace function will
    	// unlock it after a successful list. The below defer will then re-lock
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. src/runtime/asm_amd64.s

    	RET
    
    #ifdef GOOS_windows
    // Dummy TLS that's used on Windows so that we don't crash trying
    // to restore the G register in needm. needm and its callees are
    // very careful never to actually use the G, the TLS just can't be
    // unset since we're in Go code.
    GLOBL zeroTLS<>(SB),RODATA,$const_tlsSize
    #endif
    
    // func cgocallback(fn, frame unsafe.Pointer, ctxt uintptr)
    // See cgocall.go for more details.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. operator/pkg/apis/istio/v1alpha1/values_types.proto

      google.protobuf.Value tag = 31;
    
      // The variant of the Istio container images to use. Options are "debug" or "distroless". Unset will use the default for the given version.
      string variant = 67;
    
      // Specifies the Configuration for each of the supported tracers.
      TracerConfig tracer = 33;
    
      // Controls whether to use of Mesh Configuration Protocol to distribute configuration.
      google.protobuf.BoolValue useMCP = 35;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top