Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 274 for need (0.05 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      Value C_2 = cond_caller_2->getResults().front();
    
      // The new while body:
      //
      // First, we need to construct the body and conditional functions. To do so,
      // we need to create the initial operand list that we'll need. This will
      // determine the type signature for the body and cond functions.
      std::vector<Value> tmp_while_operands;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/load.go

    				// https://golang.org/design/36460-lazy-module-loading.)
    				need := <-needc
    				need[m] = true
    				needc <- need
    			}
    		})
    	}
    	<-ld.work.Idle()
    
    	need := <-needc
    	if len(need) == 0 {
    		return false // No roots to add.
    	}
    
    	toAdd := make([]module.Version, 0, len(need))
    	for m := range need {
    		toAdd = append(toAdd, m)
    	}
    	gover.ModSort(toAdd)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  3. src/runtime/mgc.go

    // and concurrently in a background goroutine (this helps programs that are not CPU bound).
    // At the end of STW mark termination all spans are marked as "needs sweeping".
    //
    // The background sweeper goroutine simply sweeps spans one-by-one.
    //
    // To avoid requesting more OS memory while there are unswept spans, when a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  4. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    			newPod := obj.(*v1.Pod)
    			nc.podUpdated(prevPod, newPod)
    		},
    		DeleteFunc: func(obj interface{}) {
    			pod, isPod := obj.(*v1.Pod)
    			// We can get DeletedFinalStateUnknown instead of *v1.Pod here and we need to handle that correctly.
    			if !isPod {
    				deletedState, ok := obj.(cache.DeletedFinalStateUnknown)
    				if !ok {
    					logger.Error(nil, "Received unexpected object", "object", obj)
    					return
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/buildlist.go

    		if !pkg.fromExternalModule() {
    			// pkg was not loaded from a module dependency, so we don't need
    			// to do anything special to maintain that dependency.
    			continue
    		}
    
    		switch {
    		case pkg.flags.has(pkgInAll):
    			// pkg is transitively imported by a package or test in the main module.
    			// We need to promote the module that maintains it to a root: if some
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

     1. Create a new <<building_java_projects.adoc#sec:java_source_sets,source set>> for them
     2. Add the dependencies you need to the appropriate configurations for that source set
     3. Configure the compilation and runtime classpaths for that source set
     4. Create a task to run the integration tests
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  7. pkg/proxy/iptables/proxier.go

    		// We can't do this as part of the iptables-restore because we don't want
    		// to specify/replace *all* of the rules in PREROUTING, etc.
    		//
    		// We need to create these rules when kube-proxy first starts, and we need
    		// to recreate them if the utiliptables Monitor detects that iptables has
    		// been flushed. In both of those cases, the code will force a full sync.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    type podActions struct {
    	// Stop all running (regular, init and ephemeral) containers and the sandbox for the pod.
    	KillPod bool
    	// Whether need to create a new sandbox. If needed to kill pod and create
    	// a new pod sandbox, all init containers need to be purged (i.e., removed).
    	CreateSandbox bool
    	// The id of existing sandbox. It is used for starting containers in ContainersToStart.
    	SandboxID string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  9. src/runtime/mgcpacer.go

    		// required. However, we need at least one dedicated mark worker or
    		// idle GC worker to ensure GC progress in some scenarios (see comment
    		// on maxIdleMarkWorkers).
    		if dedicatedMarkWorkersNeeded > 0 {
    			c.setMaxIdleMarkWorkers(0)
    		} else {
    			// TODO(mknyszek): The fundamental reason why we need this is because
    			// we can't count on the fractional mark worker to get scheduled.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. pilot/pkg/model/push_context.go

    			// Common case: alias pointing to a concrete service
    			resolvedAliases[alias] = referencedService
    			continue
    		}
    		// Otherwise, we need to traverse the alias "graph".
    		// In an obscure edge case, a user could make a loop, so we will need to handle that.
    		seen := sets.New(alias.Hostname, referencedService)
    		for {
    			n, f := unnamespacedRawAlias[referencedService]
    			if !f {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top