Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for vertx (0.06 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/JavaTestProjectGenerator.groovy

                "junit5" : "org.junit.jupiter:junit-jupiter-engine:5.10.0",
                "kotlin": "org.jetbrains.kotlin:kotlin-stdlib:1.9.23",
                "testcontainers": "org.testcontainers:mysql:1.15.3",
                "vertx": "io.vertx:vertx-web:4.4.2",
                "keycloak": "org.keycloak:keycloak-core:24.0.1"
            ])
            .create()),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 13:08:21 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_strategy_tuning.adoc

    However, resolving the `runtimeClasspath` configuration would instead return `groovy 3.0.2`.
    
    The reason for this is that a transitive dependency of `vertx`, which is a `runtimeOnly` dependency, brings a higher version of `groovy`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/Graph.java

        }
    
        final Map<String, Vertex> vertices = new LinkedHashMap<>();
    
        public Vertex getVertex(String id) {
            return vertices.get(id);
        }
    
        public Collection<Vertex> getVertices() {
            return vertices.values();
        }
    
        Vertex addVertex(String label) {
            return vertices.computeIfAbsent(label, Vertex::new);
        }
    
        void addEdge(Vertex from, Vertex to) throws CycleDetectedException {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 06:02:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/internal/impl/Graph.java

        }
    
        final Map<String, Vertex> vertices = new LinkedHashMap<>();
    
        public Vertex getVertex(String id) {
            return vertices.get(id);
        }
    
        public Collection<Vertex> getVertices() {
            return vertices.values();
        }
    
        Vertex addVertex(String label) {
            return vertices.computeIfAbsent(label, Vertex::new);
        }
    
        void addEdge(Vertex from, Vertex to) throws CycleDetectedException {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. test/fixedbugs/issue45851.go

    type Value interface {
    	Kind() Kind
    }
    type Vertex struct {
    	BaseValue Value
    	name string
    }
    func (v *Vertex) Kind() Kind {
    	return TopKind
    }
    
    func main() {
    	vA := &Vertex{name:"vA",}
    	vB := &Vertex{name:"vB",}
    	vX := &Vertex{name:"vX",}
    	vA.BaseValue = vX
    	vB.BaseValue = vX
    	_ = equalVertex(vA, vB, Flag(1))
    }
    
    var foo string
    
    //go:noinline
    func (v *Vertex) IsClosedStruct() bool {
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 03 17:46:12 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/dom.go

    	// Step 1. Carry out a depth first search of the problem graph. Number
    	// the vertices from 1 to n as they are reached during the search.
    	n := f.dfsOrig(entry, succFn, semi, vertex, label, parent)
    
    	for i := n; i >= 2; i-- {
    		w := vertex[i]
    
    		// step2 in TOPLAS paper
    		for _, e := range predFn(fromID[w]) {
    			v := e.b
    			if semi[v.ID] == 0 {
    				// skip unreachable predecessor
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 03 17:08:51 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  7. docs/en/docs/img/tutorial/bigger-applications/package.drawio

                        <mxGeometry x="130" y="565" width="370" height="100" as="geometry"/>
                    </mxCell>
                    <mxCell id="5" value="" style="rounded=0;whiteSpace=wrap;html=1;fontStyle=1;strokeWidth=4;" parent="1" vertex="1">
                        <mxGeometry x="1030" y="430" width="400" height="260" as="geometry"/>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top