Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 47 for Invoke (0.25 sec)

  1. pkg/proxy/iptables/proxier.go

    		// In all other cases, it ought to be safe to assume that the rules
    		// already exist, so we'll skip this step when doing a partial sync, to
    		// save us from having to invoke /sbin/iptables 20 times on each sync
    		// (which will be very slow on hosts with lots of iptables rules).
    		for _, jump := range append(iptablesJumpChains, iptablesKubeletJumpChains...) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    			klog.V(4).InfoS("Completed init container for pod", "containerName", container.Name, "pod", klog.KObj(pod))
    		}
    	}
    
    	// Step 7: For containers in podContainerChanges.ContainersToUpdate[CPU,Memory] list, invoke UpdateContainerResources
    	if isInPlacePodVerticalScalingAllowed(pod) {
    		if len(podContainerChanges.ContainersToUpdate) > 0 || podContainerChanges.UpdatePodResources {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/buildlist.go

    // The rootModules slice must be sorted according to gover.ModSort.
    // The caller must not modify the rootModules slice or direct map after passing
    // them to newRequirements.
    //
    // If vendoring is in effect, the caller must invoke initVendor on the returned
    // *Requirements before any other method.
    func newRequirements(pruning modPruning, rootModules []module.Version, direct map[string]bool) *Requirements {
    	mustHaveGoRoot(rootModules)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. cmd/test-utils_test.go

    // Here is the brief description of some of the arguments to the function below.
    //
    //	apiRouter - http.Handler with the relevant API endPoint (API endPoint under test) registered.
    //	anonReq   - unsigned *http.Request to invoke the handler's response for anonymous requests.
    //	policyFunc    - function to return bucketPolicy statement which would permit the anonymous request to be served.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/parser.go

    func (p *parser) paramList(name *Name, typ Expr, close token, requireNames bool) (list []*Field) {
    	if trace {
    		defer p.trace("paramList")()
    	}
    
    	// p.list won't invoke its function argument if we're at the end of the
    	// parameter list. If we have a complete field, handle this case here.
    	if name != nil && typ != nil && p.tok == close {
    		p.next()
    		par := new(Field)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  6. src/runtime/malloc.go

    	var p *notInHeap
    	systemstack(func() {
    		p = persistentalloc1(size, align, sysStat)
    	})
    	return unsafe.Pointer(p)
    }
    
    // Must run on system stack because stack growth can (re)invoke it.
    // See issue 9174.
    //
    //go:systemstack
    func persistentalloc1(size, align uintptr, sysStat *sysMemStat) *notInHeap {
    	const (
    		maxBlock = 64 << 10 // VM reservation granularity is 64K on windows
    	)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/load.go

    	// each package. If AllowPackage returns a non-nil error, that error is set
    	// for the package, and the imports and test of that package will not be
    	// loaded.
    	//
    	// AllowPackage may be invoked concurrently by multiple goroutines,
    	// and may be invoked multiple times for a given package path.
    	AllowPackage func(ctx context.Context, path string, mod module.Version) error
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  8. src/runtime/mprof.go

    		copyMemProfileRecord(&p[0], r)
    		p = p[1:]
    	})
    }
    
    // memProfileInternal returns the number of records n in the profile. If there
    // are less than size records, copyFn is invoked for each record, and ok returns
    // true.
    func memProfileInternal(size int, inuseZero bool, copyFn func(profilerecord.MemProfileRecord)) (n int, ok bool) {
    	cycle := mProfCycle.read()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Multimaps.java

       * and {@code get()} will return a general {@code Collection} as opposed to a {@code List} or a
       * {@code Set}.
       *
       * <p>The function is applied lazily, invoked when needed. This is necessary for the returned
       * multimap to be a view, but it means that the function will be applied many times for bulk
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modget/get.go

    // build list.
    //
    // loadPackages invokes the findPackage function for each package loaded from a
    // module outside the main module. If the module or version that supplies that
    // package needs to be changed due to a query, findPackage may return false
    // and the imports of that package will not be loaded.
    //
    // loadPackages also invokes the findPackage function for each imported package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
Back to top