Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 399 for Child (0.04 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicObjectIntegrationTest.groovy

                    "assert 'root' == property('rootProperty')",
                    "assert 'root' == properties.rootProperty",
                    "assert 'child' == childProperty",
                    "assert 'child' == property('childProperty')",
                    "assert 'child' == properties.childProperty",
                    "assert 'shared' == sharedProperty",
                    "assert 'shared' == property('sharedProperty')",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/DefaultCopySpec.java

            DefaultCopySpec child = instantiator.newInstance(SingleParentCopySpec.class, fileCollectionFactory, objectFactory, instantiator, patternSetFactory, buildRootResolver());
            addChildSpec(position, child);
            return child;
        }
    
        @Override
        public CopySpecInternal addChild() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:25:10 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  3. pkg/apis/certificates/validation/validation.go

    		allErrs = append(allErrs, field.Invalid(specPath.Child("request"), csr.Spec.Request, fmt.Sprintf("%v", err)))
    	}
    	if len(csr.Spec.Usages) == 0 {
    		allErrs = append(allErrs, field.Required(specPath.Child("usages"), ""))
    	}
    	if !opts.allowUnknownUsages {
    		for i, usage := range csr.Spec.Usages {
    			if !allValidUsages.Has(string(usage)) {
    				allErrs = append(allErrs, field.NotSupported(specPath.Child("usages").Index(i), usage, allValidUsages.List()))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m3/ToolingApiEclipseModelCrossVersionSpec.groovy

                connector.forProjectDirectory(projectDir.file('child1'))
            }
            EclipseProject child = loadToolingModel(EclipseProject)
    
            then:
            child.name == 'child1'
            child.parent != null
            child.parent.name == 'root'
            child.children.size() == 1
        }
    
        def "respects customized eclipse project name"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildTreeStructureIntegrationTest.groovy

            createDirs("include/inner-include/child", "include/child", "child")
            settingsFile << """
                rootProject.name = 'thing'
                includeBuild "include"
                include "child"
            """
            defineTaskInSettings(settingsFile)
    
            when:
            configurationCacheRun(task)
    
            then:
            with(fixture.all(LoadBuildBuildOperationType)) {
                size() == 3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationDefaultsIntegrationTest.groovy

            configurations.conf.dependencies.add project.dependencies.create("org:default-dependency:1.0")
        }
    }
    task broken {
        def child = configurations.child
        def conf = configurations.conf
        doLast {
            child.files
            conf.files
        }
    }
    """
    
            when:
            fails "broken"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. src/sort/zsortinterface.go

    func siftDown(data Interface, lo, hi, first int) {
    	root := lo
    	for {
    		child := 2*root + 1
    		if child >= hi {
    			break
    		}
    		if child+1 < hi && data.Less(first+child, first+child+1) {
    			child++
    		}
    		if !data.Less(first+root, first+child) {
    			return
    		}
    		data.Swap(first+root, first+child)
    		root = child
    	}
    }
    
    func heapSort(data Interface, a, b int) {
    	first := a
    	lo := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 13 20:16:24 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelPath.java

        }
    
        public ModelPath child(String child) {
            if (this.components.length == 0) {
                return path(child, new String[] {child});
            }
            String[] childComponents = new String[components.length + 1];
            arraycopy(components, 0, childComponents, 0, components.length);
            childComponents[components.length] = child;
            return path(path + "." + child, childComponents);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  9. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFile.java

            assert file.isDirectory();
            for (File child : file.listFiles()) {
                if (child.isFile() || !ignoreDirs && child.isDirectory() && child.list().length == 0) {
                    names.add(prefix + child.getName());
                } else if (child.isDirectory()) {
                    visit(names, prefix + child.getName() + "/", child, ignoreDirs);
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:31:52 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  10. pkg/api/service/warnings_test.go

    			fieldPath: field.NewPath("spec").Child("clusterIPs").Index(0),
    			want:      []string{},
    		},
    		{
    			name:      "IPv6 No failures",
    			address:   "2001:db8::2",
    			fieldPath: field.NewPath("spec").Child("clusterIPs").Index(0),
    			want:      []string{},
    		},
    		{
    			name:      "IPv4 with leading zeros",
    			address:   "192.012.2.2",
    			fieldPath: field.NewPath("spec").Child("clusterIPs").Index(0),
    			want: []string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 26 22:57:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
Back to top