Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 360 for stay (0.04 sec)

  1. tensorflow/compiler/mlir/lite/transforms/passes.td

      let constructor = "CreateOptimizeOpOrderPass()";
    }
    
    def PartitionedTopologicalSortPass : Pass<"tfl-partitioned-topological-sort", "mlir::func::FuncOp"> {
      let summary = "Re-sort execution order such that delegated ops stay together";
      let constructor = "CreatePartitionedTopologicalSortPass()";
        let description = [{
          This transformation reorders operations such that operations that will be
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/scheduling_queue.go

    	"k8s.io/kubernetes/pkg/scheduler/util"
    	"k8s.io/utils/clock"
    )
    
    const (
    	// DefaultPodMaxInUnschedulablePodsDuration is the default value for the maximum
    	// time a pod can stay in unschedulablePods. If a pod stays in unschedulablePods
    	// for longer than this value, the pod will be moved from unschedulablePods to
    	// backoffQ or activeQ. If this value is empty, the default value (5min)
    	// will be used.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/worker_api.adoc

    Furthermore, the process will be a _worker daemon_ that will stay alive and can be reused for future work items with the same requirements.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 13:41:08 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  4. src/math/big/nat.go

    	i := len(z)
    	for i > 0 && z[i-1] == 0 {
    		i--
    	}
    	return z[0:i]
    }
    
    func (z nat) make(n int) nat {
    	if n <= cap(z) {
    		return z[:n] // reuse z
    	}
    	if n == 1 {
    		// Most nats start small and stay that way; don't over-allocate.
    		return make(nat, 1)
    	}
    	// Choosing a good value for e has significant performance impact
    	// because it increases the chance that a value can be reused.
    	const e = 4 // extra capacity
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.cc

    //
    // A block argument can also become a member (or even a root member), however
    // only operations will become a part of the outline `tf_device.cluster`, block
    // arguments will stay as block arguments, and will later become cluster
    // function inputs.
    struct Member {
      Member(unsigned root, Source source, Operation *insertion_point,
             ValuesConstraintSet constraints = {})
          : root(root),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  6. cluster/gce/upgrade.sh

          echo "${instances[@]}"
          return "${list_instances_rc}"
        fi
    
        process_count_left=${node_upgrade_parallelism}
        pids=()
        ret_code_sum=0  # Should stay 0 in the loop iff all parallel node upgrades succeed.
        for instance in "${instances[@]}"; do
          do-single-node-upgrade "${instance}" & pids+=("$!")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

            chain_arg.getLoc(), chain_arg.getType(), chain_arg);
        auto chain_sink_island =
            CreateIsland(sink_identity, {}, builder_chain_sink);
    
        // Add the chain sink data output to fetch. These might stay empty.
        fetch.getFetchesMutable().append(chain_sink_island.getOutputs().front());
    
        // Iterate over all members of the current equivalence class (represented
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

                    }
                }
    
                // In the code below, we always maintain the contract that `classId` and `qualifiedAccess` should stay "in-sync", i.e. they
                // refer to the same class and classId should be null if `qualifiedAccess` references to a package.
                var classId: ClassId? = referencedClassId
    
                // Handle nested classes.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 37K bytes
    - Viewed (0)
  9. src/testing/benchmark.go

    func (b *B) Run(name string, f func(b *B)) bool {
    	// Since b has subbenchmarks, we will no longer run it as a benchmark itself.
    	// Release the lock and acquire it on exit to ensure locks stay paired.
    	b.hasSub.Store(true)
    	benchmarkLock.Unlock()
    	defer benchmarkLock.Lock()
    
    	benchName, ok, partial := b.name, true, false
    	if b.context != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  10. pilot/pkg/xds/delta.go

    	// Envoy asks for it or not (See https://github.com/envoyproxy/envoy/issues/33607 for more details).
    	// Without this logic, there are cases where the clusters we send could stay warming forever,
    	// expecting an EDS response. Note that in SotW, Envoy sends an EDS request after the delayed
    	// CDS request; however, this is not guaranteed in delta, and has been observed to cause issues
    	// with EDS and SDS.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
Back to top