Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 196 for need (0.3 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

     private:
      // Returns if any resources need lifting.
      bool NeedsLifting() const { return !resources_.empty(); }
    
      // Returns the number of results generated by the lifted op.
      int GetLiftedNumResults() const { return num_new_results_; }
    
      // Generates hoisted reads for resources that need them before the op.
      void GenerateHoistedReads();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/proxier.go

    		}
    	}
    
    	// Set the expire_nodest_conn sysctl we need for
    	if err := proxyutil.EnsureSysctl(sysctl, sysctlExpireNoDestConn, 1); err != nil {
    		return nil, err
    	}
    
    	// Set the expire_quiescent_template sysctl we need for
    	if err := proxyutil.EnsureSysctl(sysctl, sysctlExpireQuiescentTemplate, 1); err != nil {
    		return nil, err
    	}
    
    	// Set the ip_forward sysctl we need for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener.go

    	}
    	switch transport {
    	case istionetworking.TransportProtocolTCP:
    		// TODO: need to sanitize the opts.bind if its a UDS socket, as it could have colons, that envoy doesn't like
    		res.Name = getListenerName(opts.bind, opts.port, istionetworking.TransportProtocolTCP)
    		log.Debugf("buildGatewayListener: building TCP listener %s", res.Name)
    		// TODO: need to sanitize the opts.bind if its a UDS socket, as it could have colons, that envoy doesn't like
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                return true;
            }
            // We need to ignore external variants when all edges are artifact ones
            for (EdgeState incomingEdge : incomingEdges) {
                if (!incomingEdge.isArtifactOnlyEdge()) {
                    return false;
                }
            }
            return true;
        }
    
        /*
         * When a node exits the graph, its constraints need to be cleaned up.
         * This means:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  5. pkg/controller/daemon/daemon_controller.go

    		return nil
    	}
    	return ds
    }
    
    // podsShouldBeOnNode figures out the DaemonSet pods to be created and deleted on the given node:
    //   - nodesNeedingDaemonPods: the pods need to start on the node
    //   - podsToDelete: the Pods need to be deleted on the node
    //   - err: unexpected error
    func (dsc *DaemonSetsController) podsShouldBeOnNode(
    	logger klog.Logger,
    	node *v1.Node,
    	nodeToDaemonPods map[string][]*v1.Pod,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top