Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 867 for need (0.09 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/GraphVariantSelector.java

                    // so we need to filter the variants
                    result = providesAllCapabilities(targetComponent, explicitRequestedCapabilities, capabilities);
                } else {
                    // we need to make sure the variants we consider provide the implicit capability
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/xla_call_module_deserialization.cc

      // it because it's a required attribute.
      op.setModule("");
      // Set the stablehlo main function as a symbol attribute. This is required
      // because we not only need this to look up the StableHLO function called by
      // XlaCallModule, but also need the symbol reference to prevent DCE from
      // removing the stablehlo functions from the top-level module.
      op->setAttr(kStablehloEntryFunctionAttrName, SymbolRefAttr::get(*main_func));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. pilot/pkg/model/endpointshards.go

    	FullPush
    )
    
    // UpdateServiceEndpoints updates EndpointShards data by clusterID, hostname, IstioEndpoints.
    // It also tracks the changes to ServiceAccounts. It returns whether endpoints need to be pushed and
    // it also returns if they need to be pushed whether a full push is needed or incremental push is sufficient.
    func (e *EndpointIndex) UpdateServiceEndpoints(
    	shard ShardKey,
    	hostname string,
    	namespace string,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. src/runtime/slice.go

    // this function simpler. In particular, it accepts and returns the
    // new length so that the old length is not live (does not need to be
    // spilled/restored) and the new length is returned (also does not need
    // to be spilled/restored).
    //
    // growslice should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

    #           flow imposed by any code segments.
    #
    #        3. The "output" is a POSIX shell script, which has its own ideas about
    #           escaping with backslashes, so to get «\» you need to write «\\\\»
    #           and to get «$» you need to write «\\\$».
    #
    #       For more details about the Groovy Template Engine, see
    #       https://docs.groovy-lang.org/next/html/documentation/ section §3.15
    #       (Template Engines) for details.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. pkg/controller/resourceclaim/controller.go

    			if apierrors.IsNotFound(err) {
    				return true, "need to create PodSchedulingContext for scheduled pod"
    			}
    			if err != nil {
    				// Shouldn't happen.
    				return true, fmt.Sprintf("internal error while checking for PodSchedulingContext: %v", err)
    			}
    			if scheduling.Spec.SelectedNode != pod.Spec.NodeName {
    				// Need to update PodSchedulingContext.
    				return true, "need to updated PodSchedulingContext for scheduled pod"
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  7. pkg/controller/replicaset/replica_set.go

    	if err != nil {
    		return err
    	}
    	// Ignore inactive pods.
    	filteredPods := controller.FilterActivePods(logger, allPods)
    
    	// NOTE: filteredPods are pointing to objects from cache - if you need to
    	// modify them, you need to copy it first.
    	filteredPods, err = rsc.claimPods(ctx, rs, selector, filteredPods)
    	if err != nil {
    		return err
    	}
    
    	var manageReplicasErr error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  8. android/pom.xml

          </activation>
          <properties>
            <!--
                Some tests need reflective access to the internals of these packages. It is only the
                tests themselves and not the code being tested that needs that access, though there's no
                obvious way to ensure that.
    
                We could consider arranging things so that only the tests we know need this would get
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. pom.xml

          </activation>
          <properties>
            <!--
                Some tests need reflective access to the internals of these packages. It is only the
                tests themselves and not the code being tested that needs that access, though there's no
                obvious way to ensure that.
    
                We could consider arranging things so that only the tests we know need this would get
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

    // (3) For passthrough results, if result #r is the same as arg #a of the loop
    //     body, after one iteration, result #r = arg #a, so we need to also
    //     propagate arg #a to result #r. After another iteration, arg #a of the
    //     loop body will be result #a of the previous iteration. So then we need
    //     propagate from result #a to result #r. Generalizing, the resource ID
    //     propagation (for results which are passthrough) looks like:
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
Back to top