Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for FindPath (0.12 sec)

  1. src/cmd/compile/internal/types2/initorder.go

    		for _, init := range check.Info.InitOrder {
    			fmt.Printf("\t%s\n", init)
    		}
    		fmt.Println()
    	}
    }
    
    // findPath returns the (reversed) list of objects []Object{to, ... from}
    // such that there is a path of object dependencies from 'from' to 'to'.
    // If there is no such path, the result is nil.
    func findPath(objMap map[Object]*declInfo, from, to Object, seen map[Object]bool) []Object {
    	if seen[from] {
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. src/go/types/initorder.go

    		for _, init := range check.Info.InitOrder {
    			fmt.Printf("\t%s\n", init)
    		}
    		fmt.Println()
    	}
    }
    
    // findPath returns the (reversed) list of objects []Object{to, ... from}
    // such that there is a path of object dependencies from 'from' to 'to'.
    // If there is no such path, the result is nil.
    func findPath(objMap map[Object]*declInfo, from, to Object, seen map[Object]bool) []Object {
    	if seen[from] {
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/mvs/graph.go

    				queue = append(queue, r)
    				enqueued[r] = true
    			}
    		}
    	}
    }
    
    // FindPath reports a shortest requirement path starting at one of the roots of
    // the graph and ending at a module version m for which f(m) returns true, or
    // nil if no such path exists.
    func (g *Graph) FindPath(f func(module.Version) bool) []module.Version {
    	// firstRequires[a] = b means that in a breadth-first traversal of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 02:52:19 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_cluster_util.cc

    string DescribeCycle(const GraphCycles* cycles, const Graph& graph, int src,
                         int dst) {
      int32_t max_path_size = graph.num_node_ids() + 1;
      std::vector<int32> path(max_path_size);
      int32_t path_size = cycles->FindPath(dst, src, max_path_size, path.data());
      if (path_size == 0) {
        return "";
      }
    
      auto node_name = [&graph](int node_id) {
        if (!FastBoundsCheck(node_id, graph.num_node_ids())) {
          return string("(null)");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/mvs/mvs.go

    			work.Add(r)
    		}
    	})
    
    	// If there was an error, find the shortest path from the target to the
    	// node where the error occurred so we can report a useful error message.
    	if len(errs) > 0 {
    		errPath := g.FindPath(func(m module.Version) bool {
    			return errs[m] != nil
    		})
    		if len(errPath) == 0 {
    			panic("internal error: could not reconstruct path to module with error")
    		}
    
    		err := errs[errPath[len(errPath)-1]]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 21:58:12 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/buildlist.go

    	mg.buildListOnce.Do(func() {
    		mg.buildList = slices.Clip(mg.g.BuildList())
    	})
    	return mg.buildList
    }
    
    func (mg *ModuleGraph) findError() error {
    	errStack := mg.g.FindPath(func(m module.Version) bool {
    		_, err := mg.loadCache.Get(m)
    		return err != nil && err != par.ErrCacheEntryNotFound
    	})
    	if len(errStack) > 0 {
    		_, err := mg.loadCache.Get(errStack[len(errStack)-1])
    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/cmd/go/internal/modload/load.go

    				if err != nil {
    					ld.error(err)
    				}
    				if v := mg.Selected("go"); v == ld.TidyGoVersion {
    					rs = tidy
    				} else {
    					conflict := Conflict{
    						Path: mg.g.FindPath(func(m module.Version) bool {
    							return m.Path == "go" && m.Version == v
    						})[1:],
    						Constraint: module.Version{Path: "go", Version: ld.TidyGoVersion},
    					}
    					msg := conflict.Summary()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  8. test-site/activator-launch-1.3.2.jar

    addRootModuleConfigu(IvyNodeUsage, String, String[]); public final String[] getRootModuleConfigu(); private java.util.Set getRootModuleConfigu(); public final String[] getConfsToFetch(); public final String[] getRealConfs(String); private java.util.Collection findPath(org.apache.ivy.core.module.id.ModuleId, IvyNode, java.util.List); private void updateDataFrom(IvyNode, String, boolean); private java.util.Collection getAllUsages(); public final org.apache.ivy.core.module.descriptor.Artifact[] getSelectedArtifa...
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (1)
Back to top