Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for unsat (0.11 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"self.listMap.exists(m, m.k == 'a1' && m.v == 'b1')",
    				"self.listMap.map(m, m.v).exists(v, v == 'b1')",
    
    				// test comprehensions where the field used in predicates is unset on all but one of the elements:
    				// - with has checks:
    
    				"self.listMap.exists(m, has(m.v2) && m.v2 == 'z')",
    				"!self.listMap.all(m, has(m.v2) && m.v2 != 'z')",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  2. cmd/admin-handlers.go

    					Drives:   anonymizeDrives(server.Disks),
    					PoolNumber: func() int {
    						if len(server.PoolNumbers) == 1 {
    							return server.PoolNumbers[0]
    						}
    						return math.MaxInt // this indicates that its unset.
    					}(),
    					PoolNumbers: server.PoolNumbers,
    					MemStats: madmin.MemStats{
    						Alloc:      server.MemStats.Alloc,
    						TotalAlloc: server.MemStats.TotalAlloc,
    						Mallocs:    server.MemStats.Mallocs,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		return &metaTime
    	}
    	testcases := []struct {
    		name                    string
    		deletionTimestamp       *metav1.Time
    		expectDeletionTimestamp *metav1.Time
    	}{
    		{
    			name:                    "unset",
    			deletionTimestamp:       nil,
    			expectDeletionTimestamp: newTimePointer(now),
    		},
    		{
    			name:                    "set to future",
    			deletionTimestamp:       newTimePointer(soon),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    // decisions about whether to reuse a cached test result.
    //
    // # Environment variables
    //
    // The go command and the tools it invokes consult environment variables
    // for configuration. If an environment variable is unset or empty, the go
    // command uses a sensible default setting. To see the effective setting of
    // the variable <NAME>, run 'go env <NAME>'. To change the default setting,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/data.go

    	}
    
    	if ctxt.IsSolaris() {
    		// On Solaris, in the runtime it sets the external names of the
    		// end symbols. Unset them and define separate symbols, so we
    		// keep both.
    		etext := ldr.Lookup("runtime.etext", 0)
    		edata := ldr.Lookup("runtime.edata", 0)
    		end := ldr.Lookup("runtime.end", 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  6. src/reflect/value.go

    	// If ifaceIndir(typ), code can assume that flagIndir is set.
    	//
    	// The remaining 22+ bits give a method number for method values.
    	// If flag.kind() != Func, code can assume that flagMethod is unset.
    	flag
    
    	// A method value represents a curried method invocation
    	// like r.Read for some receiver r. The typ+val+flag bits describe
    	// the receiver r, but the flag's Kind bits say Func (methods are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top