Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 127 for FUNC (0.04 sec)

  1. pkg/scheduler/framework/runtime/framework.go

    		o.metricsRecorder = r
    	}
    }
    
    // WithWaitingPods sets waitingPods for the scheduling frameworkImpl.
    func WithWaitingPods(wp *waitingPodsMap) Option {
    	return func(o *frameworkOptions) {
    		o.waitingPods = wp
    	}
    }
    
    // WithLogger overrides the default logger from k8s.io/klog.
    func WithLogger(logger klog.Logger) Option {
    	return func(o *frameworkOptions) {
    		o.logger = &logger
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  2. src/reflect/type.go

    }
    
    func (t *rtype) NumIn() int {
    	if t.Kind() != Func {
    		panic("reflect: NumIn of non-func type " + t.String())
    	}
    	tt := (*abi.FuncType)(unsafe.Pointer(t))
    	return tt.NumIn()
    }
    
    func (t *rtype) NumOut() int {
    	if t.Kind() != Func {
    		panic("reflect: NumOut of non-func type " + t.String())
    	}
    	tt := (*abi.FuncType)(unsafe.Pointer(t))
    	return tt.NumOut()
    }
    
    func (t *rtype) Out(i int) Type {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  3. cmd/test-utils_test.go

    func resetGlobalEndpoints() {
    	globalEndpoints = EndpointServerPools{}
    }
    
    func resetGlobalIsErasure() {
    	globalIsErasure = false
    }
    
    // reset global heal state
    func resetGlobalHealState() {
    	// Init global heal state
    	if globalAllHealState == nil {
    		globalAllHealState = newHealState(GlobalContext, false)
    	} else {
    		globalAllHealState.Lock()
    		for _, v := range globalAllHealState.healSeqMap {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    // make changes only to a particular instance, then it must check the name.
    type change struct {
    	scheduling func(*resourcev1alpha2.PodSchedulingContext) *resourcev1alpha2.PodSchedulingContext
    	claim      func(*resourcev1alpha2.ResourceClaim) *resourcev1alpha2.ResourceClaim
    }
    type perNodeResult map[string]result
    
    func (p perNodeResult) forNode(nodeName string) result {
    	if p == nil {
    		return result{}
    	}
    	return p[nodeName]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  5. src/net/http/transport.go

    // environment variable to determine the proxy address.
    func envProxyFunc() func(*url.URL) (*url.URL, error) {
    	envProxyOnce.Do(func() {
    		envProxyFuncValue = httpproxy.FromEnvironment().ProxyFunc()
    	})
    	return envProxyFuncValue
    }
    
    // resetProxyConfig is used by tests.
    func resetProxyConfig() {
    	envProxyOnce = sync.Once{}
    	envProxyFuncValue = nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  6. src/runtime/mprof.go

    	clear(dst.Stack0[i:])
    }
    
    //go:linkname pprof_memProfileInternal
    func pprof_memProfileInternal(p []profilerecord.MemProfileRecord, inuseZero bool) (n int, ok bool) {
    	return memProfileInternal(len(p), inuseZero, func(r profilerecord.MemProfileRecord) {
    		p[0] = r
    		p = p[1:]
    	})
    }
    
    func iterate_memprof(fn func(*bucket, uintptr, *uintptr, uintptr, uintptr, uintptr)) {
    	lock(&profMemActiveLock)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    }
    
    // IsValid returns whether the SID has a valid revision and length.
    func (sid *SID) IsValid() bool {
    	return isValidSid(sid)
    }
    
    // Equals compares two SIDs for equality.
    func (sid *SID) Equals(sid2 *SID) bool {
    	return EqualSid(sid, sid2)
    }
    
    // IsWellKnown determines whether the SID matches the well-known sidType.
    func (sid *SID) IsWellKnown(sidType WELL_KNOWN_SID_TYPE) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  8. pkg/kubelet/pod_workers_test.go

    			t.Errorf("Pod %v: incorrect order %v, %#v", i, last, events)
    		}
    	}
    }
    
    func TestUpdatePod(t *testing.T) {
    	one := int64(1)
    	hasContext := func(status *podSyncStatus) *podSyncStatus {
    		status.ctx, status.cancelFn = context.Background(), func() {}
    		return status
    	}
    	withLabel := func(pod *v1.Pod, label, value string) *v1.Pod {
    		if pod.Labels == nil {
    			pod.Labels = make(map[string]string)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener_test.go

    		})
    		t.Run("no service", func(t *testing.T) {
    			testInboundListenerConfigWithoutService(t, p)
    		})
    		t.Run("sidecar", func(t *testing.T) {
    			testInboundListenerConfigWithSidecar(t, p,
    				buildService("test.com", wildcardIPv4, protocol.HTTP, tnow))
    		})
    		t.Run("sidecar with service", func(t *testing.T) {
    			testInboundListenerConfigWithSidecarWithoutServices(t, p)
    		})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  10. src/text/template/exec_test.go

    	BinaryFunc             func(string, string) string
    	VariadicFunc           func(...string) string
    	VariadicFuncInt        func(int, ...string) string
    	NilOKFunc              func(*int) bool
    	ErrFunc                func() (string, error)
    	PanicFunc              func() string
    	TooFewReturnCountFunc  func()
    	TooManyReturnCountFunc func() (string, error, int)
    	InvalidReturnTypeFunc  func() (string, bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top