Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 125 for Child (0.34 sec)

  1. pkg/test/framework/test.go

    	// will exit before the parallel children are executed. It should be noted that if the parent test is prevented
    	// from exiting (e.g. parent test is waiting for something to occur within the child test), the test will
    	// deadlock.
    	//
    	// Example:
    	//
    	// func TestParallel(t *testing.T) {
    	//     framework.NewTest(t).
    	//         Run(func(ctx framework.TestContext) {
    	//             ctx.NewSubTest("T1").
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ProblemReportingCrossProjectModelAccess.kt

                when (access.pattern) {
                    DIRECT -> {
                        text("another project ")
                        reference(delegate)
                    }
    
                    CHILD -> {
                        text("child projects")
                        if (relativeToAnother) {
                            text(" of project ")
                            reference(access.relativeTo)
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  3. src/syscall/syscall_linux_test.go

    			Cur: 1024,
    			Max: 65536,
    		})
    	}
    	rlimOrig := origRlimitNofile.Load()
    
    	// Start a child process firstly,
    	// so we can use Prlimit to set it's nofile limit.
    	cmd := exec.Command("sleep", "infinity")
    	cmd.Start()
    	defer func() {
    		cmd.Process.Kill()
    		cmd.Process.Wait()
    	}()
    
    	// Get child process's current nofile limit
    	var lim syscall.Rlimit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
  4. settings.gradle.kts

        }
    
        private fun NodeWriter.platform(platform: Platform) {
            println()
            node("subgraph ${platform.id}[\"${platform.name} platform\"]") {
                for (child in platform.children) {
                    element(child)
                }
            }
            node("end")
            node("style ${platform.id} fill:#c2e0f4,stroke:#3498db,stroke-width:2px,color:#000;")
            for (dep in platform.uses) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. pkg/controller/garbagecollector/graph_builder.go

    				// the ownerNode is cluster-scoped and virtual, and does not match the child node's namespace.
    				// the owner could be a missing instance of a namespaced type incorrectly referenced by a cluster-scoped child (issue #98040).
    				// enqueue this child to attemptToDelete to verify parent references.
    				hasPotentiallyInvalidOwnerReference = true
    			}
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  6. src/testing/fstest/testfs.go

    		switch {
    		case name == ".", name == "..", name == "":
    			t.errorf("%s: ReadDir: child has invalid name: %#q", dir, name)
    			continue
    		case strings.Contains(name, "/"):
    			t.errorf("%s: ReadDir: child name contains slash: %#q", dir, name)
    			continue
    		case strings.Contains(name, `\`):
    			t.errorf("%s: ReadDir: child name contains backslash: %#q", dir, name)
    			continue
    		}
    		path := prefix + name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitPluginIntegrationTest.groovy

            and:
            def customSettings = existingDslFixture.scriptFile("customSettings")
            customSettings.parentFile.createDirs("child")
            customSettings << """
                include("child")
            """
    
            when:
            executer.usingSettingsFile(customSettings)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:39:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileCompatibilityIntegrationTest.groovy

        def sourceUsingLanguageFeatureFromJava17() {
            """
                // Sealed classes and interfaces are only available in Java 17
                public sealed interface Parent permits Parent.Child {
                    public static record Child(String name) implements Parent {}
                }
            """
        }
    
        def "source compatibility lower than compiler version does not allow accessing newer Java language features"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromGroovyDslIntegrationTest.groovy

            "allprojects"                       | "subprojects via 'allprojects'"
            "subprojects"                       | "subprojects"
            "configure(childProjects.values())" | "child projects"
        }
    
        def "reports problem when build script uses #property property to apply plugins to another project"() {
            createDirs("a", "b")
            settingsFile << """
                include("a")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/toolchain/select.go

    	gotoolchainVersion = "v0.0.1"
    
    	// targetEnv is a special environment variable set to the expected
    	// toolchain version during the toolchain switch by the parent
    	// process and cleared in the child process. When set, that indicates
    	// to the child to confirm that it provides the expected toolchain version.
    	targetEnv = "GOTOOLCHAIN_INTERNAL_SWITCH_VERSION"
    
    	// countEnv is a special environment variable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:25:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top