Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 73 for addchild (0.13 sec)

  1. maven-core/src/test/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactoryTest.java

            headerName.setValue("header");
            Xpp3Dom headerValue = new Xpp3Dom("value");
            headerValue.setValue("value");
            property.addChild(headerName);
            property.addChild(headerValue);
            httpHeaders.addChild(property);
            httpConfiguration.addChild(httpHeaders);
    
            server.setConfiguration(httpConfiguration);
    
            MavenExecutionRequest request = new DefaultMavenExecutionRequest();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Mar 27 14:46:12 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/DefaultCopySpecTest.groovy

            child2
            spec.children == [child2, child1]
        }
    
        def 'add Spec in between two child Specs if given child exists'() {
            when:
            DefaultCopySpec child1 = spec.addChild()
            DefaultCopySpec child2 = spec.addChild()
    
            then:
            child1
            child2
            spec.children == [child1, child2]
    
            when:
            DefaultCopySpec child3 = spec.addChildBeforeSpec(child2)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 26 08:05:50 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4IgnoreClassIntegrationTest.groovy

                            testSuiteDescription.addChild(createTestDescription("first test run"));
                            testSuiteDescription.addChild(createTestDescription("second test run"));
                            testSuiteDescription.addChild(createTestDescription("third test run"));
                        }
    
                        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. src/net/http/routing_tree.go

    }
    
    // addPattern adds a pattern and its associated Handler to the tree
    // at root.
    func (root *routingNode) addPattern(p *pattern, h Handler) {
    	// First level of tree is host.
    	n := root.addChild(p.host)
    	// Second level of tree is method.
    	n = n.addChild(p.method)
    	// Remaining levels are path.
    	n.addSegments(p.segments, p, h)
    }
    
    // addSegments adds the given segments to the tree rooted at n.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4ClassLevelFilteringIntegrationTest.groovy

                    public Description getDescription() {
                        Description suite = Description.createSuiteDescription(c.getName());
                        suite.addChild(Description.createTestDescription(c, "pass"));
                        suite.addChild(Description.createTestDescription(c, "other"));
                        return suite;
                    }
    
                    public void run(RunNotifier notifier) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/toolchain/DefaultToolchainTest.java

            tm1.addProvide("vendor", "sun");
            Xpp3Dom configuration1 = new Xpp3Dom("configuration");
            Xpp3Dom jdkHome1 = new Xpp3Dom("jdkHome");
            jdkHome1.setValue("${env.JAVA_HOME}");
            configuration1.addChild(jdkHome1);
            tm1.setConfiguration(configuration1);
    
            ToolchainModel tm2 = new ToolchainModel();
            tm1.setType("jdk");
            tm1.addProvide("version", "1.4");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 09:07:17 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/poset.go

    	// are always part of the same DAG.
    	switch {
    	case lowerptr != 0 && higherptr != 0:
    		// Both bounds are present, record lower < n < higher.
    		po.addchild(lowerptr, i, true)
    		po.addchild(i, higherptr, true)
    
    	case lowerptr != 0:
    		// Lower bound only, record lower < n.
    		po.addchild(lowerptr, i, true)
    
    	case higherptr != 0:
    		// Higher bound only. To record n < higher, we need
    		// an extra root:
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorTest.java

            configuration.addChild("uri", "${session.rootDirectory.uri}");
            configuration.addChild("path", "${session.rootDirectory}");
            configuration.addChild("uriString", "${session.rootDirectory.uri.string}");
            configuration.addChild("uriAsciiString", "${session.rootDirectory.uri.ASCIIString}");
            configuration.addChild("pathString", "${session.rootDirectory.string}");
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/insight/DependencyInsightReporter.java

                    current = newRequestedVersion(out, dependency);
                }
                if (!singlePathToDependency || current.getChildren().isEmpty()) {
                    current.addChild(dependency);
                }
            }
    
            return out;
        }
    
        private DependencyReportHeader createHeaderForDependency(DependencyEdge dependency, Set<Throwable> alreadyReportedErrors) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4Test.java

            configuration.addChild("uri", "${session.rootDirectory.uri}");
            configuration.addChild("path", "${session.rootDirectory}");
            configuration.addChild("uriString", "${session.rootDirectory.uri.string}");
            configuration.addChild("uriAsciiString", "${session.rootDirectory.uri.ASCIIString}");
            configuration.addChild("pathString", "${session.rootDirectory.string}");
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top