Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 58 for vertx (0.06 sec)

  1. maven-core/src/test/java/org/apache/maven/project/GraphTest.java

        static void addEdge(Graph graph, String v1, String v2) throws CycleDetectedException {
            Vertex vx1 = graph.addVertex(v1);
            Vertex vx2 = graph.addVertex(v2);
            graph.addEdge(vx1, vx2);
        }
    
        static boolean hasEdge(Graph graph, String v1, String v2) {
            Vertex vx1 = graph.getVertex(v1);
            Vertex vx2 = graph.getVertex(v2);
            return vx1 != null && vx2 != null && vx1.children.contains(vx2);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 06:02:04 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  2. docs/en/docs/img/deployment/https/https02.drawio

                <root>
                    <mxCell id="0"/>
                    <mxCell id="1" parent="0"/>
                    <mxCell id="2" value="" style="rounded=0;whiteSpace=wrap;html=1;fontStyle=1;strokeWidth=4;" parent="1" vertex="1">
                        <mxGeometry x="450" y="-50" width="820" height="970" as="geometry"/>
                    </mxCell>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  3. src/go/types/mono.go

    	// nameIdx maps a defined type or (canonical) type parameter to its
    	// vertex index.
    	nameIdx map[*TypeName]int
    }
    
    type monoVertex struct {
    	weight int // weight of heaviest known path to this vertex
    	pre    int // previous edge (if any) in the above path
    	len    int // length of the above path
    
    	// obj is the defined type or type parameter represented by this
    	// vertex.
    	obj *TypeName
    }
    
    type monoEdge struct {
    	dst, src int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. docs/en/docs/img/deployment/https/https01.drawio

                                <mxPoint x="800" y="680"/>
                            </Array>
                        </mxGeometry>
                    </mxCell>
                    <mxCell id="33" value="" style="group" parent="1" vertex="1" connectable="0">
                        <mxGeometry x="-140" y="-75" width="500" height="350" as="geometry"/>
                    </mxCell>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraphVertex.java

        }
    
        // ---------------------------------------------------------------------
        public int compareTo(MetadataGraphVertex vertex) {
            if (vertex == null || vertex.getMd() == null) {
                return 1;
            }
    
            ArtifactMetadata vmd = vertex.getMd();
    
            if (vmd == null) {
                if (md == null) {
                    return 0;
                } else {
                    return 1;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/mono.go

    	// nameIdx maps a defined type or (canonical) type parameter to its
    	// vertex index.
    	nameIdx map[*TypeName]int
    }
    
    type monoVertex struct {
    	weight int // weight of heaviest known path to this vertex
    	pre    int // previous edge (if any) in the above path
    	len    int // length of the above path
    
    	// obj is the defined type or type parameter represented by this
    	// vertex.
    	obj *TypeName
    }
    
    type monoEdge struct {
    	dst, src int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 00:05:29 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    java.util.List vertexList; public void DAG(); public java.util.List getVerticies(); public java.util.Set getLabels(); public Vertex addVertex(String); public void 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...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 164.6K bytes
    - Viewed (0)
  8. plugin/pkg/auth/authorizer/node/graph_test.go

    		}
    	}
    
    	toString := func(id int) string {
    		for _, namespaceName := range g.vertices {
    			for _, nameVertex := range namespaceName {
    				for _, vertex := range nameVertex {
    					if vertex.id == id {
    						return vertex.String()
    					}
    				}
    			}
    		}
    		return ""
    	}
    	expectGraph := func(expect map[string][]string) {
    		t.Helper()
    		actual := map[string][]string{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:14:19 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.jar

    public String getMessage(); } org/codehaus/plexus/util/dag/Vertex.class package org.codehaus.plexus.util.dag; public synchronized class Vertex implements Cloneable, java.io.Serializable { private String label; java.util.List children; java.util.List parents; public void Vertex(String); public String getLabel(); public void addEdgeTo(Vertex); public void removeEdgeTo(Vertex); public void addEdgeFrom(Vertex); public void removeEdgeFrom(Vertex); public java.util.List getChildren(); public java.util.List...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 160K bytes
    - Viewed (0)
  10. pkg/controller/garbagecollector/dump.go

    		// skip adding objects that don't have owner references and aren't referred to.
    		if len(node.dependents) == 0 && len(node.owners) == 0 {
    			continue
    		}
    		vertex := NewDOTVertex(node)
    		uidToVertex[node.identity.UID] = vertex
    		nodes = append(nodes, vertex)
    	}
    	for _, node := range uidToNode {
    		currVertex := uidToVertex[node.identity.UID]
    		for _, ownerRef := range node.owners {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 17:12:33 UTC 2022
    - 9.5K bytes
    - Viewed (0)
Back to top