Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for testchild (0.25 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyPermissionsIntegrationTest.groovy

            TestFile child = parent.createDir("testchild")
            child.file("reference.txt") << "test file"
    
            child.mode = mode
            and:
            buildFile << """
                task copy(type: Copy) {
                    from "testparent"
                    into ("build/tmp")
                }
                """
            when:
            run "copy"
            then:
            file("build/tmp/testchild").mode == mode
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 20K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java

        try {
          InternetDomainName.from("com").parent();
          fail("'com' should throw ISE on .parent() call");
        } catch (IllegalStateException expected) {
        }
      }
    
      public void testChild() {
        InternetDomainName domain = InternetDomainName.from("foo.com");
    
        assertEquals("www.foo.com", domain.child("www").toString());
    
        try {
          domain.child("www.");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 05 13:16:00 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java

            mojo.setGoal(c.getChild("goal").getValue());
    
            mojo.setImplementation(c.getChild("implementation").getValue());
    
            PlexusConfiguration langConfig = c.getChild("language");
    
            if (langConfig != null) {
                mojo.setLanguage(langConfig.getValue());
            }
    
            PlexusConfiguration configuratorConfig = c.getChild("configurator");
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. maven-xml-impl/src/test/java/org/apache/maven/internal/xml/XmlNodeImplTest.java

            XmlNode p0 = getNthChild(mergeResult, "property", 0);
            assertEquals("LHS-ONLY", p0.getChild("name").getValue());
            assertEquals("left", p0.getChild("name").getInputLocation());
            assertEquals("LHS", p0.getChild("value").getValue());
            assertEquals("left", p0.getChild("value").getInputLocation());
    
            XmlNode p1 = getNthChild(mergeResult, "property", 1);
            assertEquals(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/TreeFormatter.java

                state = State.CollectValue;
                if (parent.firstChild == null) {
                    parent.firstChild = this;
                    parent.lastChild = this;
                } else {
                    parent.lastChild.nextSibling = this;
                    parent.lastChild = this;
                }
            }
    
            Separator getFirstChildSeparator() {
                if (firstChild == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

                                headers.put(
                                        property.getChild("name").getValue(),
                                        property.getChild("value").getValue());
                            }
                        }
                    }
    
                    PlexusConfiguration connectTimeoutXml = config.getChild("connectTimeout", false);
                    if (connectTimeoutXml != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/AbstractTypeMetadataWalker.java

                handler.accept(getChild(parent, propertyMetadata));
            }
    
            @Override
            protected void walkLeaf(TypeToken<?> node, @Nullable String parentQualifiedName, StaticMetadataVisitor visitor, PropertyMetadata propertyMetadata) {
            }
    
            @Override
            protected TypeToken<?> getChild(TypeToken<?> parent, PropertyMetadata property) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 14K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/main/java/org/gradleinternal/buildinit/plugins/internal/maven/Maven2Gradle.java

                Xpp3Dom configuration = (Xpp3Dom) enforceGoal.getConfiguration();
                Xpp3Dom bannedDependencies = configuration.getChild("rules").getChild("bannedDependencies");
                if (bannedDependencies != null) {
                    Xpp3Dom[] children = bannedDependencies.getChild("excludes").getChildren();
                    ScriptBlockBuilder block = builder.block(null, "configurations.all");
                    if (children != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 15:23:34 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/ProjectReportTask.java

            GraphRenderer renderer,
            boolean lastChild,
            StyledTextOutput textOutput
        ) {
            renderer.visit(styledTextOutput -> {
                styledTextOutput.text(StringUtils.capitalize(model.project.getDisplayName()));
                renderProjectType(model, textOutput);
                renderProjectDescription(model, textOutput);
            }, lastChild);
            renderer.startChildren();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java

                    XmlNode parameterConfiguration = executionConfiguration.getChild(parameter.getName());
    
                    if (parameterConfiguration == null) {
                        parameterConfiguration = executionConfiguration.getChild(parameter.getAlias());
                    }
    
                    XmlNode parameterDefaults = defaultConfiguration.getChild(parameter.getName());
    
                    if (parameterConfiguration != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 26.3K bytes
    - Viewed (0)
Back to top