Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for avoiding (0.1 sec)

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

    				"[[1], [2]].indexOf([1]) == 0",
    				"[{'a': 1}, {'b': 2}].lastIndexOf({'b': 2}) == 1",
    				"self.objs.indexOf(self.objs[1]) == 1",
    				"self.objs.lastIndexOf(self.objs[1]) == 2",
    
    				// avoiding empty list error with min and max by appending an acceptable default minimum value
    				"([0] + self.emptyInts).min() == 0",
    
    				// handle CEL's dynamic dispatch appropriately (special cases to handle an empty list)
    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. pkg/kubelet/kubelet.go

    				continue
    			}
    			// Static pods should be reconciled the same way as regular pods
    		}
    
    		// TODO: reconcile being calculated in the config manager is questionable, and avoiding
    		// extra syncs may no longer be necessary. Reevaluate whether Reconcile and Sync can be
    		// merged (after resolving the next two TODOs).
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/generic.rules

    // When rewriting append to growslice, we use as the new length the result of
    // growslice so that we don't have to spill/restore the new length around the growslice call.
    // The exception here is that if the new length is a constant, avoiding spilling it
    // is pointless and its constantness is sometimes useful for subsequent optimizations.
    // See issue 56440.
    // Note there are 2 rules here, one for the pre-decomposed []T result and one for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
Back to top