Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 312 for child6 (0.3 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/rule/describe/AbstractModelRuleDescriptor.java

        public ModelRuleDescriptor append(ModelRuleDescriptor child) {
            return new NestedModelRuleDescriptor(this, child);
        }
    
        @Override
        public ModelRuleDescriptor append(String child) {
            return append(new SimpleModelRuleDescriptor(child));
        }
    
        @Override
        @FormatMethod
        public ModelRuleDescriptor append(@FormatString String child, Object... args) {
            return append(String.format(child, args));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 12:38:02 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. src/runtime/heapdump.go

    	if name == "" {
    		name = "unknown function"
    	}
    	dumpstr(name)
    
    	// Dump fields in the outargs section
    	if child.args.n >= 0 {
    		dumpbv(&child.args, child.argoff)
    	} else {
    		// conservative - everything might be a pointer
    		for off := child.argoff; off < child.argoff+child.arglen; off += goarch.PtrSize {
    			dumpint(fieldKindPtr)
    			dumpint(uint64(off))
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K 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. 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)
  5. 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)
  6. src/cmd/vendor/golang.org/x/telemetry/start.go

    // If telemetryChildVar is set to "1" in the environment, this is the telemetry
    // child.
    //
    // If telemetryChildVar is set to "2", this is a child of the child, and no
    // further forking should occur.
    const telemetryChildVar = "GO_TELEMETRY_CHILD"
    
    // If telemetryUploadVar is set to "1" in the environment, the upload token has been
    // acquired by the parent, and the child should attempt an upload.
    const telemetryUploadVar = "GO_TELEMETRY_CHILD_UPLOAD"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. 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)
  8. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinFileBasedDeclarationProvider.kt

        private val topLevelDeclarations: Sequence<KtDeclaration>
            get() {
                return sequence {
                    for (child in kotlinFile.declarations) {
                        if (child is KtScript) {
                            yieldAll(child.declarations)
                        } else {
                            yield(child)
                        }
                    }
                }
            }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. src/runtime/tracetype.go

    	w.varint(uint64(typ.PtrBytes))
    	w.varint(uint64(len(typName)))
    	w.stringData(typName)
    
    	// Recursively walk all child nodes.
    	for i := range node.children {
    		child := node.children[i].Load()
    		if child == nil {
    			continue
    		}
    		w = dumpTypesRec((*traceMapNode)(child), w)
    	}
    	return w
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolvedConfigurationIntegrationTest.groovy

                        files = compile.getFiles { true }
    
                        assert files.collect { it.name } == ['hiphop-1.0.jar', 'child.jar', 'rock-1.0.jar']
    
                        def artifacts = compile.artifacts
    
                        assert artifacts.size() == 3
                        assert artifacts.collect { it.file.name } == ['hiphop-1.0.jar', 'child.jar', 'rock-1.0.jar']
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 26.1K bytes
    - Viewed (0)
Back to top