Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,194 for Child (0.06 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/DefaultLenientConfigurationTest.groovy

                dependenciesById.get(id).children = entry.getValue().collect {
                    def child = dependenciesById.get(it)
                    if (child == null) {
                        child = new TestResolvedDependency()
                        dependenciesById.put(it, child)
                    }
                    child
                } as Set
            }
            def root = dependenciesById.remove(0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 03:03:36 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/validation/validation.go

    		allErrs = append(allErrs, ValidateToken(d.TLSBootstrapToken, fldPath.Child("tlsBootstrapToken"))...)
    	}
    
    	if d.File != nil {
    		allErrs = append(allErrs, ValidateDiscoveryFile(d.File, fldPath.Child("file"))...)
    		if len(d.TLSBootstrapToken) != 0 {
    			allErrs = append(allErrs, ValidateToken(d.TLSBootstrapToken, fldPath.Child("tlsBootstrapToken"))...)
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  3. src/syscall/exec_linux.go

    		// If we're in the parent, we must return immediately
    		// so we're not in the same stack frame as the child.
    		// This can at most use the return PC, which the child
    		// will not modify, and the results of
    		// rawVforkSyscall, which must have been written after
    		// the child was replaced.
    		return
    	}
    
    	// Fork succeeded, now in child.
    
    	// Enable the "keep capabilities" flag to set ambient capabilities later.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/initialization/DefaultClassLoaderScopeTest.groovy

            thrown IllegalStateException
        }
    
        def "child scopes can access exported but not local"() {
            when:
            file("local/local") << "bar"
            file("export/export") << "bar"
            scope.local(classPath("local"))
            scope.export(classPath("export"))
            def child = scope.lock().createChild("child", null).lock()
    
            then:
            child.localClassLoader.getResource("root").text == "root"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 24 13:56:30 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  5. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/descriptor/internal/DefaultDeploymentDescriptor.java

                version = (String) appNode.attribute("version");
                for (final Node child : Cast.<List<Node>>uncheckedCast(appNode.children())) {
                    String childLocalName = localNameOf(child);
                    switch (childLocalName) {
                        case "application-name":
    
                            applicationName = child.text();
    
                            break;
                        case "initialize-in-order":
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 19 22:06:51 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/CyclicalManagedTypeIntegrationTest.groovy

            buildScript '''
                @Managed
                interface Parent {
                    String getName()
                    void setName(String name)
    
                    Child getChild()
                }
    
                @Managed
                interface Child {
                    Parent getParent()
                    void setParent(Parent parent)
                }
    
                class RulePlugin extends RuleSource {
                    @Model
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/VfsRelativePathTest.groovy

            ''                     | ''
        }
    
        def "'#relativePath' fromChild '#child' is '#result'"() {
            expect:
            VfsRelativePath.of(relativePath).pathFromChild(child).asString == result
            VfsRelativePath.of(child).pathToChild(relativePath) == result
    
            where:
            relativePath | child | result
            "a/b"        | "a"   | "b"
            "a/b"        | ""    | "a/b"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/integTest/groovy/org/gradle/internal/work/ProjectLockStatisticsIntegrationTest.groovy

            createDirs("child")
            settingsFile << """
                include ':child'
            """
            buildFile << """
                apply plugin: "java"
    
                task wait {
                    doLast {
                        sleep 2000
                    }
                }
    
                project(':child') {
                    configurations {
                        foo
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. pkg/apis/storage/validation/validation.go

    	allErrs = append(allErrs, validatePodInfoOnMount(spec.PodInfoOnMount, fldPath.Child("podInfoOnMount"))...)
    	allErrs = append(allErrs, validateStorageCapacity(spec.StorageCapacity, fldPath.Child("storageCapacity"))...)
    	allErrs = append(allErrs, validateFSGroupPolicy(spec.FSGroupPolicy, fldPath.Child("fsGroupPolicy"))...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 00:47:13 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/groovy/MatchesSignatureGeneratingSignatureTreeVisitor.java

                children.forEach((entry, child) -> {
                    if (entry.kind != VARARG) {
                        generateNormalCallChecksAndVisitSubtree(entry, child, paramIndex);
                    }
                });
                if (hasParamMatchers) {
                    result.endControlFlow();
                }
                children.forEach((entry, child) -> {
                    if (entry.kind == VARARG) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 7.3K bytes
    - Viewed (0)
Back to top