Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 372 for need (1.31 sec)

  1. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    major release.
    
    Plugin authors who want to stay compatible with older Gradle versions need to limit their API usage to a subset that is compatible with these old versions. It’s not really different from any other new API in Gradle. E.g. if we introduce a new API for dependency resolution and a plugin wants to use that API, then they either need to drop support for older Gradle versions or they need to do some clever organization of their code to only execute the new code path on newer versions....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  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. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top