Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 112 for Walks (0.04 sec)

  1. pilot/pkg/model/push_context.go

    // but in our usage we often need the opposite: for a given service, what are all the aliases?
    // resolveServiceAliases walks this 'graph' of services and updates the Alias field in-place.
    func resolveServiceAliases(allServices []*Service, configsUpdated sets.Set[ConfigKey]) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        ```
      }];
    
      let constructor = "CreateExecutorDialectToFunctionalConversionPass()";
    }
    
    def ExecutorIslandCoarseningPass : Pass<"tf-executor-island-coarsening", "mlir::func::FuncOp"> {
      let summary = "Walks tf_executor::GraphOp and merges individual tf_executor::IslandOps.";
      let description = [{
        This pass performs whole graph analysis for a graph encapsulated into tf_executor::GraphOp.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

              rewriter.getI64ArrayAttr(kstrides), rewriter.getStringAttr(padding),
              rewriter.getStringAttr(data_format));
          return success();
        }
        return failure();
      }
    
      // Walks up the op and ignore all precedding ops of type Tys.
      // Returns the first producer op whose type is not in Tys.
      template <typename... Tys>
      Value recursivelyWalkUp(Value op) const {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loader/loader.go

    func (s bySymValue) Len() int           { return len(s) }
    func (s bySymValue) Swap(i, j int)      { s[i], s[j] = s[j], s[i] }
    func (s bySymValue) Less(i, j int) bool { return s[i].v < s[j].v }
    
    // SortSub walks through the sub-symbols for 's' and sorts them
    // in place by increasing value. Return value is the new
    // sub symbol for the specified outer symbol.
    func (l *Loader) SortSub(s Sym) Sym {
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    				if b == nil {
    					b = a.Base
    				}
    				exprs[i] = simplify(b)
    			}
    			return &ExprList{Exprs: exprs}
    		}
    	}
    	return nil
    }
    
    // findArgumentPack walks the AST looking for the argument pack for a
    // pack expansion.  We find it via a template parameter.
    func (st *state) findArgumentPack(a AST) *ArgumentPack {
    	seen := make(map[AST]bool)
    	var ret *ArgumentPack
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    	p.Internal.Imports = append(p.Internal.Imports, p1)
    }
    
    // PrepareForCoverageBuild is a helper invoked for "go install
    // -cover", "go run -cover", and "go build -cover" (but not used by
    // "go test -cover"). It walks through the packages being built (and
    // dependencies) and marks them for coverage instrumentation when
    // appropriate, and possibly adding additional deps where needed.
    func PrepareForCoverageBuild(pkgs []*Package) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. src/cmd/go/alldocs.go

    // Go version reports the Go version used to build each of the named files.
    //
    // If no files are named on the command line, go version prints its own
    // version information.
    //
    // If a directory is named, go version walks that directory, recursively,
    // looking for recognized Go binaries and reporting their versions.
    // By default, go version does not report unrecognized files found
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/dryrun/dryrun.go

    	}
    	return errorsutil.NewAggregate(errs)
    }
    
    // Waiter is an implementation of apiclient.Waiter that should be used for dry-running
    type Waiter struct{}
    
    // NewWaiter returns a new Waiter object that talks to the given Kubernetes cluster
    func NewWaiter() apiclient.Waiter {
    	return &Waiter{}
    }
    
    // WaitForControlPlaneComponents just returns a dummy nil, to indicate that the program should just proceed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/apiclient/wait.go

    type KubeWaiter struct {
    	client  clientset.Interface
    	timeout time.Duration
    	writer  io.Writer
    }
    
    // NewKubeWaiter returns a new Waiter object that talks to the given Kubernetes cluster
    func NewKubeWaiter(client clientset.Interface, timeout time.Duration, writer io.Writer) Waiter {
    	return &KubeWaiter{
    		client:  client,
    		timeout: timeout,
    		writer:  writer,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/cache/prog.go

    	// provided ObjectID.
    	DiskPath string `json:",omitempty"`
    }
    
    // startCacheProg starts the prog binary (with optional space-separated flags)
    // and returns a Cache implementation that talks to it.
    //
    // It blocks a few seconds to wait for the child process to successfully start
    // and advertise its capabilities.
    func startCacheProg(progAndArgs string, fuzzDirCache Cache) Cache {
    	if fuzzDirCache == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 19:23:25 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top