Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,194 for Child (0.04 sec)

  1. maven-core/src/test/resources-project-builder/merged-plugin-exec-order/wo-plugin-mgmt/sub/pom.xml

            <executions>
              <execution>
                <id>child-1</id>
                <phase>validate</phase>
                <goals>
                  <goal>child-1</goal>
                </goals>
              </execution>
              <execution>
                <id>child-2</id>
                <phase>validate</phase>
                <goals>
                  <goal>child-2</goal>
                </goals>
              </execution>
              <execution>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/webhook/validation.go

    		allErrors = append(allErrors, field.Required(fldPath.Child("name"), "service name is required"))
    	}
    
    	if len(namespace) == 0 {
    		allErrors = append(allErrors, field.Required(fldPath.Child("namespace"), "service namespace is required"))
    	}
    
    	if errs := validation.IsValidPortNum(int(port)); errs != nil {
    		allErrors = append(allErrors, field.Invalid(fldPath.Child("port"), port, "port is not valid: "+strings.Join(errs, ", ")))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 19 23:14:37 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  3. testing/integ-test/src/integTest/groovy/org/gradle/integtests/ProjectLoadingIntegrationTest.java

            testFile("settings.gradle").writelns(
                "include 'child'",
                "project(':child').buildFileName = 'child.gradle'"
            );
    
            TestFile subDirectory = getTestDirectory().file("child");
            subDirectory.file("build.gradle").write("throw new RuntimeException()");
            subDirectory.file("child.gradle").write("task('do-stuff')");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultNamedDomainObjectSetSpec.groovy

            when:
            container.child({}, "not a closure")
    
            then:
            e = thrown(MissingMethodException)
            e.message.startsWith("Could not find method child() for arguments [")
        }
    
        def canUseDynamicPropertiesAndMethodsInsideConfigureClosures() {
            def bean = new Bean("child");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:21:31 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  5. src/context/context_test.go

    			}
    			pc.mu.Unlock()
    		}
    
    		// child should be finished.
    		select {
    		case <-child.Done():
    		default:
    			t.Errorf("<-child.Done() blocked, but shouldn't have")
    		}
    		if e := child.Err(); e != Canceled {
    			t.Errorf("child.Err() == %v want %v", e, Canceled)
    		}
    
    		// parent should not be finished.
    		select {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 19 19:13:01 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/BasicProjectConfigurationProgressCrossVersionSpec.groovy

            def configureBuildSrc = buildSrc.child({ it.startsWith("Configure build") })
            configureBuildSrc.child("Configure project :buildSrc")
            configureBuildSrc.child("Configure project :buildSrc:a")
            configureBuildSrc.child("Configure project :buildSrc:b")
    
            def buildSrcTasks = buildSrc.child({ it.startsWith("Run tasks") })
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m4/ToolingApiEclipseMinimalModelCrossVersionSpec.groovy

            createDirs("child")
            file('settings.gradle').text = 'include "child"'
            file('build.gradle').text = """
    apply plugin: 'java'
    dependencies {
        ${implementationConfiguration} project(':child')
        ${implementationConfiguration} files { throw new RuntimeException() }
        ${implementationConfiguration} 'this.lib.surely.does.not.exist:indeed:1.0'
    }
    project(':child') {
        apply plugin: 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. maven-model-builder/src/test/resources/poms/inheritance/no-append-urls3-expected.xml

      <artifactId>inheritance</artifactId>
      <version>11-SNAPSHOT</version>
      <name>Model urls inheritance test child</name>
    
      <scm child.scm.connection.inherit.append.path="true"
           child.scm.developerConnection.inherit.append.path="true"
           child.scm.url.inherit.append.path="true">
        <connection>scm:my-scm:http://domain.org/base</connection>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/file/DefaultProjectLayoutTest.groovy

            expect:
            def dir = layout.projectDirectory.dir("child")
            strictlyEquals(dir, layout.projectDirectory.dir("child"))
    
            dir != layout.projectDirectory.dir("other")
            dir != layout.projectDirectory.dir("child/child2")
            dir != layout.projectDirectory.file("child")
        }
    
        def "regular files are equal when their paths are equal"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 23 16:13:03 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ExtendingConfigurationsIntegrationTest.groovy

            mavenRepo.module("org", "foo").publish()
            mavenRepo.module("org", "bar").publish()
            mavenRepo.module("org", "baz").publish()
    
            buildFile << """
    repositories {
        maven { url "${mavenRepo.uri}" }
    }
    configurations {
        one
        child.extendsFrom one
        two
        child.extendsFrom two
        zzz
        one.extendsFrom zzz
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top