Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 68 for child7 (0.71 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheHost.kt

                buildDirs[project.projectPath]?.let {
                    project.layout.buildDirectory.set(it)
                }
                for (child in descriptor.children()) {
                    createProject(child)
                }
                return project
            }
    
            override fun getProject(path: String): ProjectInternal =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. src/os/exec/exec.go

    	// of unexpected delay in Wait: a child process that fails to exit after the
    	// associated Context is canceled, and a child process that exits but leaves
    	// its I/O pipes unclosed.
    	//
    	// The WaitDelay timer starts when either the associated Context is done or a
    	// call to Wait observes that the child process has exited, whichever occurs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiGradleProjectIntegrationTest.groovy

            runBuildAction(new FetchGradleProjectForTarget(":included1"))
    
            then:
            fixture.assertStateLoaded()
        }
    
        def "root GradleProject model is invalidated when a child project configuration changes"() {
            settingsFile << """
                rootProject.name = 'root'
                include("a")
                include("b")
            """
            file("a/build.gradle") << ""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. src/os/exec/exec_test.go

    		cmd.Process.Kill()
    	}()
    
    	go func() {
    		defer wg.Done()
    		// Send the wrong string, so that the child fails even
    		// if the other goroutine doesn't manage to kill it first.
    		// This test is to check that the race detector does not
    		// falsely report an error, so it doesn't matter how the
    		// child process fails.
    		io.Copy(stdin, strings.NewReader("unexpected string"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  5. src/os/exec_unix_test.go

    	}
    
    	p, err := FindProcess(pid)
    	if err != nil {
    		t.Fatalf("FindProcess(math.MaxInt32) got err %v, want nil", err)
    	}
    
    	if ps, err := p.Wait(); !errors.Is(err, syscall.ECHILD) {
    		t.Errorf("Wait() got err %v (ps %+v), want %v", err, ps, syscall.ECHILD)
    	}
    
    	if err := p.Release(); err != nil {
    		t.Errorf("Release() got err %v, want nil", err)
    	}
    }
    
    func TestUNIXProcessAlive(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. src/syscall/rlimit.go

    		setrlimit(RLIMIT_NOFILE, &nlim)
    	}
    }
    
    func Setrlimit(resource int, rlim *Rlimit) error {
    	if resource == RLIMIT_NOFILE {
    		// Store nil in origRlimitNofile to tell StartProcess
    		// to not adjust the rlimit in the child process.
    		origRlimitNofile.Store(nil)
    	}
    	return setrlimit(resource, rlim)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:57 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CachedBuildState.kt

    ) : CachedProjectState(path, projectDir, buildFile)
    
    
    data class BuildToStore(
        val build: VintageGradleBuild,
        // Does this build have work scheduled?
        val hasWork: Boolean,
        // Does this build have a child build with work scheduled?
        val hasChildren: Boolean
    ) {
        fun hasChildren() = BuildToStore(build, hasWork, true)
    }
    
    
    /**
     * State cached for a build in the tree.
     */
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/deadcode.go

    				// If a type is converted to an interface, it is possible to obtain an
    				// interface with a "child" type of it using reflection (e.g. obtain an
    				// interface of T from []chan T). We need to traverse its "child" types
    				// with UsedInIface attribute set.
    				// When visiting the child type (chan T in the example above), it will
    				// have UsedInIface set, so it in turn will mark and (re)visit its children
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. pkg/kubelet/apis/config/helpers_test.go

    	// if the current field path is in the list of paths we should not recurse into,
    	// return here rather than descending and accumulating child field paths
    	if pathStr := path.String(); len(pathStr) > 0 && skipRecurseList.Has(pathStr) {
    		return sets.New[string](pathStr)
    	}
    
    	paths := sets.New[string]()
    	switch tp.Kind() {
    	case reflect.Pointer:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/packages/KotlinStandalonePackageProvider.kt

                for (subPackage in file.packageFqName.pathSegments()) {
                    packages.getOrPut(currentPackage) { mutableSetOf() } += subPackage
                    currentPackage = currentPackage.child(subPackage)
                }
                packages.computeIfAbsent(currentPackage) { mutableSetOf() }
            }
            packages
        }
    
        override fun doesKotlinOnlyPackageExist(packageFqName: FqName): Boolean {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top