Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 1,040 for child6 (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/ctrlz/assets/static/css/all.css

        border-top: 1px solid #ddd
    }
    
    tr:first-child th:first-child {
        border-radius: 4px 0 0 0
    }
    
    tr:first-child td:first-child {
        border-radius: 4px 0 0 0
    }
    
    tr:first-child th:last-child {
        border-radius: 0 4px 0 0
    }
    
    tr:first-child td:last-child {
        border-radius: 0 4px 0 0
    }
    
    tr:last-child td {
        border-bottom: 1px solid #ddd
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/inheritance/InheritanceAssembler.java

        /**
         * Merges values from the specified parent model into the given child model. Implementations are expected to keep
         * parent and child completely decoupled by injecting deep copies of objects into the child rather than the original
         * objects from the parent.
         *
         * @param child The child model into which to merge the values inherited from the parent, must not be
         *            <code>null</code>.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/graph/ProjectSelectorTest.java

            selectors.add(":maven-core");
    
            final MavenProject mavenProject = createMavenProject("maven-core");
            final MavenProject child = createMavenProject("maven-core-child");
            mavenProject.setCollectedProjects(Collections.singletonList(child));
            final List<MavenProject> listOfProjects = Collections.singletonList(mavenProject);
    
            final Set<MavenProject> requiredProjectsBySelectors =
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskFailureIntegrationTest.groovy

    class DeferredTaskFailureIntegrationTest extends AbstractDeferredTaskDefinitionIntegrationTest {
        def "reports failure in task constructor when task realized"() {
            createDirs("child")
            settingsFile << """
                include "child"
            """
            file("child/build.gradle") << """
                class Broken extends DefaultTask {
                    Broken() {
                        throw new RuntimeException("broken task")
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. pkg/apis/resource/structured/namedresources/validation/validation_test.go

    		},
    		"version-bad": {
    			wantFailures: field.ErrorList{field.Invalid(field.NewPath("instances").Index(0).Child("attributes").Index(0).Child("version"), "1.0", "must be a string compatible with semver.org spec 2.0.0")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top