Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for HasEdge (0.08 sec)

  1. src/internal/dag/parse.go

    			}
    		}
    	}
    
    	// Complete transitive closure.
    	for _, k := range g.Nodes {
    		for _, i := range g.Nodes {
    			for _, j := range g.Nodes {
    				if i != k && k != j && g.HasEdge(i, k) && g.HasEdge(k, j) {
    					if i == j {
    						// Can only happen along with a "use of X before deps" error above,
    						// but this error is more specific - it makes clear that reordering the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. src/go/build/deps_test.go

    			t.Error(err)
    			continue
    		}
    		if sawImport[pkg] == nil {
    			sawImport[pkg] = map[string]bool{}
    		}
    		var bad []string
    		for _, imp := range imports {
    			sawImport[pkg][imp] = true
    			if !policy.HasEdge(pkg, imp) {
    				bad = append(bad, imp)
    			}
    		}
    		if bad != nil {
    			t.Errorf("unexpected dependency: %s imports %v", pkg, bad)
    		}
    	}
    }
    
    var buildIgnore = []byte("\n//go:build ignore")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    addEdge(String, String) throws CycleDetectedExcepti; public void addEdge(Vertex, Vertex) throws CycleDetectedExcepti; public void removeEdge(String, String); public void removeEdge(Vertex, Vertex); public Vertex getVertex(String); public boolean hasEdge(String, String); public java.util.List getChildLabels(String); public java.util.List getParentLabels(String); public Object clone() throws CloneNotSupportedExc; public boolean isConnected(String); public java.util.List getSuccessorLabels(String);...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
Back to top