Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 796 for oldR (0.05 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset.go

    func (qs *queueSet) advanceEpoch(ctx context.Context, now time.Time, incrR fqrequest.SeatSeconds) {
    	oldR := qs.currentR
    	qs.currentR -= rDecrement
    	klog.InfoS("Advancing epoch", "QS", qs.qCfg.Name, "when", now.Format(nsTimeFmt), "oldR", oldR, "newR", qs.currentR, "incrR", incrR)
    	success := true
    	for qIdx, queue := range qs.queues {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 16:59:21 UTC 2024
    - 42.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/poset.go

    func (po *poset) isroot(r uint32) bool {
    	for i := range po.roots {
    		if po.roots[i] == r {
    			return true
    		}
    	}
    	return false
    }
    
    func (po *poset) changeroot(oldr, newr uint32) {
    	for i := range po.roots {
    		if po.roots[i] == oldr {
    			po.roots[i] = newr
    			return
    		}
    	}
    	panic("changeroot on non-root")
    }
    
    func (po *poset) removeroot(r uint32) {
    	for i := range po.roots {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  3. cluster/addons/fluentd-gcp/fluentd-gcp-configmap-old.yaml

    # This ConfigMap is used to ingest logs against old resources like
    # "gke_container" and "gce_instance" when $LOGGING_STACKDRIVER_RESOURCE_TYPES is
    # set to "old".
    # When $LOGGING_STACKDRIVER_RESOURCE_TYPES is set to "new", the ConfigMap in
    # fluentd-gcp-configmap.yaml will be used for ingesting logs against new
    # resources like "k8s_container" and "k8s_node".
    kind: ConfigMap
    apiVersion: v1
    data:
      containers.input.conf: |-
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 16.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/common/equality_test.go

    				"b",
    			},
    			RootOldObject: []interface{}{
    				"a",
    				"oldB",
    			},
    			Schema: mustSchema(`
                    items:
                        type: string
                `),
    			KeyPath:  []interface{}{},
    			NewValue: []interface{}{"a", "b"},
    			OldValue: []interface{}{"a", "oldB"},
    		},
    		{
    			Name: "Changed Key In Old Object",
    			RootObject: map[string]interface{}{
    				"a": "b",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 13 21:36:46 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  5. src/runtime/sys_darwin.go

    	KeepAlive(new)
    	KeepAlive(old)
    }
    func setitimer_trampoline()
    
    //go:nosplit
    //go:cgo_unsafe_args
    func sysctl(mib *uint32, miblen uint32, oldp *byte, oldlenp *uintptr, newp *byte, newlen uintptr) int32 {
    	ret := libcCall(unsafe.Pointer(abi.FuncPCABI0(sysctl_trampoline)), unsafe.Pointer(&mib))
    	KeepAlive(mib)
    	KeepAlive(oldp)
    	KeepAlive(oldlenp)
    	KeepAlive(newp)
    	return ret
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/loopreschedchecks.go

    					continue outer // successor s of b has an old phi function, so there is no need to add another.
    				}
    			}
    		}
    
    		old := defForUses[idom[s.ID].ID] // new phi function is correct-but-redundant, combining value "old" on all inputs.
    		headerPhi := newPhiFor(s, old)
    		// the new phi will replace "old" in block s and all blocks dominated by s.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 21:17:10 UTC 2023
    - 16K bytes
    - Viewed (0)
  7. pkg/controller/deployment/deployment_controller.go

    	dc.enqueueDeployment(d)
    }
    
    func (dc *DeploymentController) updateDeployment(logger klog.Logger, old, cur interface{}) {
    	oldD := old.(*apps.Deployment)
    	curD := cur.(*apps.Deployment)
    	logger.V(4).Info("Updating deployment", "deployment", klog.KObj(oldD))
    	dc.enqueueDeployment(curD)
    }
    
    func (dc *DeploymentController) deleteDeployment(logger klog.Logger, obj interface{}) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/runtime/scheme.go

    	}
    	t = t.Elem()
    	if t.Kind() != reflect.Struct {
    		panic("All types must be pointers to structs.")
    	}
    
    	if oldT, found := s.gvkToType[gvk]; found && oldT != t {
    		panic(fmt.Sprintf("Double registration of different types for %v: old=%v.%v, new=%v.%v in scheme %q", gvk, oldT.PkgPath(), oldT.Name(), t.PkgPath(), t.Name(), s.schemeName))
    	}
    
    	s.gvkToType[gvk] = t
    
    	for _, existingGvk := range s.typeToGVK[t] {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 25.2K bytes
    - Viewed (0)
  9. src/runtime/iface.go

    	// updates will stick.
    	atomic_casPointer((*unsafe.Pointer)(unsafe.Pointer(&s.Cache)), unsafe.Pointer(oldC), unsafe.Pointer(newC))
    
    	return tab
    }
    
    func buildTypeAssertCache(oldC *abi.TypeAssertCache, typ *_type, tab *itab) *abi.TypeAssertCache {
    	oldEntries := unsafe.Slice(&oldC.Entries[0], oldC.Mask+1)
    
    	// Count the number of entries we need.
    	n := 1
    	for _, e := range oldEntries {
    		if e.Typ != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation.go

    	if s.AdditionalProperties != nil {
    		for k, v := range obj {
    			var oldV interface{}
    			if correlatable {
    				oldV = oldObj[k] // +k8s:verify-mutation:reason=clone
    			}
    
    			var err field.ErrorList
    			err, remainingBudget = s.AdditionalProperties.validate(ctx, fldPath.Key(k), v, oldV, correlation.key(k), remainingBudget)
    			errs = append(errs, err...)
    			if remainingBudget < 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 32.2K bytes
    - Viewed (0)
Back to top