Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 46 for child5 (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheKey.kt

        fun Hasher.putAll(list: Collection<String>) {
            putInt(list.size)
            list.forEach(::putString)
        }
    
        /**
         * Returns the path of [target] relative to [base] if
         * [target] is a child of [base] or `null` otherwise.
         */
        private
        fun relativeChildPathOrNull(target: File, base: File): String? =
            relativePathOf(target, base)
                .takeIf { !it.startsWith('.') }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiCoupledProjectsIntegrationTest.groovy

    package org.gradle.internal.cc.impl.isolated
    
    class IsolatedProjectsToolingApiCoupledProjectsIntegrationTest extends AbstractIsolatedProjectsToolingApiIntegrationTest {
    
        def "projects are treated as coupled when parent mutates child project"() {
            given:
            withSomeToolingModelBuilderPluginInBuildSrc()
            settingsFile << """
                include("a")
                include("b")
                include("c")
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  7. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

        /**
         * @param aggregator <code>true</code> if the Mojo uses the Maven project and its child modules,
         * <code>false</code> otherwise.
         */
        public void setAggregator(boolean aggregator) {
            this.aggregator = aggregator;
        }
    
        /**
         * @return <code>true</code> if the Mojo uses the Maven project and its child modules,
         * <code>false</code> otherwise.
         */
        public boolean isAggregator() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiCompositeBuildsIntegrationTest.groovy

                projectConfigured(":buildSrc")
                projectConfigured(":b")
                buildModelCreated()
                modelsCreated(":", ":a")
            }
        }
    
        def "invalidates cached state when plugin in child build changes"() {
            given:
            withSomeToolingModelBuilderPluginInChildBuild("plugins")
            settingsFile << """
                includeBuild("plugins")
                include("a")
                include("b")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. 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)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            output.count("files: [dir1.classes.dir, lib1.jar.txt]") == 2
    
            output.count("Transformed") == 0
    
            when:
            file("lib/lib1.jar").text = "abc"
            file("lib/dir1.classes").file("child2").createFile()
    
            succeeds ":util:resolve", ":app:resolve"
    
            then:
            output.count("files: [dir1.classes.dir, lib1.jar.txt]") == 2
    
            output.count("Transformed") == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
Back to top