Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for child7 (0.11 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

        def "can resolve a graph with a local cycle caused by module replacement"() {
            given:
            def child1 = mavenRepo.module('org', 'child1', '1.0').publish()
            def child2 = mavenRepo.module('org', 'child2', '1.0').publish()
            mavenRepo.module('org', 'direct', '1.0').dependsOn(child1).dependsOn(child2).publish()
    
            buildFile << """
                repositories {
                    maven {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    				allErrs = append(allErrs, field.Required(fldPath.Child("items").Child("properties").Key(k).Child("default"), "this property is in x-kubernetes-list-map-keys, so it must have a default or be a required property"))
    			}
    
    			if obj.Nullable {
    				allErrs = append(allErrs, field.Forbidden(fldPath.Child("items").Child("properties").Key(k).Child("nullable"), "this property is in x-kubernetes-list-map-keys, so it cannot be nullable"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  3. pkg/apis/admissionregistration/validation/validation.go

    		allErrors = append(allErrors, field.Required(fldPath.Child("clientConfig"), "exactly one of url or service is required"))
    	case cc.URL != nil:
    		allErrors = append(allErrors, webhook.ValidateWebhookURL(fldPath.Child("clientConfig").Child("url"), *cc.URL, true)...)
    	case cc.Service != nil:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  4. pkg/apis/batch/validation/validation.go

    	allErrs = append(allErrs, apivalidation.ValidateHasLabel(obj.Spec.Template.ObjectMeta, field.NewPath("spec").Child("template").Child("metadata"), batch.LegacyControllerUidLabel, string(obj.UID))...)
    	allErrs = append(allErrs, apivalidation.ValidateHasLabel(obj.Spec.Template.ObjectMeta, field.NewPath("spec").Child("template").Child("metadata"), batch.LegacyJobNameLabel, string(obj.Name))...)
    	expectedLabels := make(map[string]string)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  5. 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)
  6. platforms/documentation/docs/src/docs/css/manual.css

    .exampleblock>.content .qlist>ol>li:last-child> :last-child,
    .sidebarblock>.content> :last-child> :last-child,
    .sidebarblock>.content .olist>ol>li:last-child> :last-child,
    .sidebarblock>.content .ulist>ul>li:last-child> :last-child,
    .sidebarblock>.content .qlist>ol>li:last-child> :last-child {
    	margin-bottom: 0;
    }
    
    .literalblock pre,
    .listingblock pre:not(.highlight),
    .listingblock pre[class="highlight"],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/dwarf.go

    	child := findchild(structdie, field)
    	if child == nil {
    		Exitf("dwarf substitutetype: %s does not have member %s",
    			getattr(structdie, dwarf.DW_AT_name).Data, field)
    		return
    	}
    
    	a := getattr(child, dwarf.DW_AT_type)
    	if a != nil {
    		a.Data = dwSym(dwtype)
    	} else {
    		d.newrefattr(child, dwarf.DW_AT_type, dwtype)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

        }
    
        /*
         * We isolate services in child registries, so we don't leak memory. This test makes
         * sure that we don't overdo the isolation and still track dependencies between services
         * inside a single registry, even when a child requested that service.
         */
    
        def "closes services in dependency order even when child requested them first"() {
            def service1 = Mock(TestCloseService)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    Notice how the `src/dist` configuration has a nested inclusion specification; it is the child copy spec.
    You can, of course, add content filtering and renaming here as required.
    A child copy spec is still a copy spec.
    
    The above example also demonstrates how you can copy files into a subdirectory of the destination either by using a child `into()` on a `from()` or a child `from()` on an `into()`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            dependencyLockingProvider.loadLockState("child", _) >> DefaultDependencyLockingState.EMPTY_LOCK_CONSTRAINT
    
            when:
            def child = conf("child")
            def conf = conf()
            child.extendsFrom(conf)
    
            then:
            conf.syntheticDependencies.size() == 1
            child.syntheticDependencies.size() == 0
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
Back to top