Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 983 for child7 (0.15 sec)

  1. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals("CHILD-1", pom.getValue(prefix + "stringParams/stringParam[5]"));
            assertEquals("CHILD-3", pom.getValue(prefix + "stringParams/stringParam[6]"));
            assertEquals("CHILD-2", pom.getValue(prefix + "stringParams/stringParam[7]"));
            assertEquals("CHILD-4", pom.getValue(prefix + "stringParams/stringParam[8]"));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_encryption.go

    				kmsProviderNames.Insert(provider.KMS.Name)
    			case provider.AESGCM != nil:
    				allErrs = append(allErrs, validateKeys(provider.AESGCM.Keys, path.Child("aesgcm").Child("keys"), aesKeySizes)...)
    			case provider.AESCBC != nil:
    				allErrs = append(allErrs, validateKeys(provider.AESCBC.Keys, path.Child("aescbc").Child("keys"), aesKeySizes)...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  3. pkg/scheduler/apis/config/validation/validation.go

    		}
    
    		pluginsPath := path.Child("plugins")
    		for s, p := range stagesToPluginSet {
    			errs = append(errs, validatePluginSetForInvalidPlugins(
    				pluginsPath.Child(s), apiVersion, p)...)
    		}
    	}
    
    	seenPluginConfig := sets.New[string]()
    
    	for i := range profile.PluginConfig {
    		pluginConfigPath := path.Child("pluginConfig").Index(i)
    		name := profile.PluginConfig[i].Name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  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/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)
  8. 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)
  9. 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)
  10. 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)
Back to top