Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for needMin (0.34 sec)

  1. src/cmd/link/internal/ld/lib.go

    		setCgoAttr(ctxt, d.file, d.pkg, d.directives, hostObjSyms)
    	}
    	ctxt.cgodata = nil
    
    	if ctxt.LinkMode == LinkInternal {
    		// Drop all the cgo_import_static declarations.
    		// Turns out we won't be needing them.
    		for symIdx := range hostObjSyms {
    			if l.SymType(symIdx) == sym.SHOSTOBJ {
    				// If a symbol was marked both
    				// cgo_import_static and cgo_import_dynamic,
    				// then we want to make it cgo_import_dynamic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

             * invoke interruptTask on any subsequent futures.
             */
            callInterruptTask = false;
          }
          // We call this before the listeners in order to avoid needing to manage a separate stack data
          // structure for them.  Also, some implementations rely on this running prior to listeners
          // so that the cleanup work is visible to listeners.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  3. guava/src/com/google/common/util/concurrent/AbstractFuture.java

             * invoke interruptTask on any subsequent futures.
             */
            callInterruptTask = false;
          }
          // We call this before the listeners in order to avoid needing to manage a separate stack data
          // structure for them.  Also, some implementations rely on this running prior to listeners
          // so that the cleanup work is visible to listeners.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  4. src/cmd/dist/test.go

    // pending commands are done (and runPending returns).
    // A test should call runPending if it wants to make sure that it is not
    // running in parallel with earlier tests, or if it has some other reason
    // for needing the earlier tests to be done.
    func (t *tester) runPending(nextTest *distTest) {
    	worklist := t.worklist
    	t.worklist = nil
    	for _, w := range worklist {
    		w.start = make(chan bool)
    		w.end = make(chan struct{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	// where the index is the index of the specific container in pod.Spec.EphemeralContainers.
    	EphemeralContainersToStart []int
    	// ContainersToUpdate keeps a list of containers needing resource update.
    	// Container resource update is applicable only for CPU and memory.
    	ContainersToUpdate map[v1.ResourceName][]containerToUpdateInfo
    	// UpdatePodResources is true if container(s) need resource update with restart
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    		t.Helper()
    		retry.UntilSuccessOrFail(t, func() error {
    			controller.pods.RLock()
    			defer controller.pods.RUnlock()
    			if len(controller.pods.needResync) != expected {
    				return fmt.Errorf("expected %d pods needing resync, got %d", expected, len(controller.pods.needResync))
    			}
    			return nil
    		}, retry.Timeout(time.Second))
    	}
    
    	// standard ordering
    	addService("svc")
    	addPod("pod1", "172.0.1.1")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  7. cmd/xl-storage.go

    			return res, osErrToFileErr(err)
    		}
    		diskHealthCheckOK(ctx, err)
    	}
    
    	// If we have oldDataDir then we must preserve current xl.meta
    	// as backup, in-case needing renames().
    	if res.OldDataDir != "" {
    		if contextCanceled(ctx) {
    			return res, ctx.Err()
    		}
    
    		// preserve current xl.meta inside the oldDataDir.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
Back to top