Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 90 for child3 (0.27 sec)

  1. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/child/WorkerLogEventListener.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.process.internal.worker.child;
    
    import org.gradle.internal.logging.events.LogEvent;
    import org.gradle.internal.logging.events.OutputEvent;
    import org.gradle.internal.logging.events.OutputEventListener;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. 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)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/UndefinedBuildExecutionIntegrationTest.groovy

        }
    
        def "does not treat build as undefined when root build file is not present but #fileName is"() {
            when:
            settingsFile << """
                include("child")
            """
            file("child/build.gradle") << """
                task build
            """
            succeeds("tasks")
    
            then:
            noExceptionThrown()
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 09:18:31 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. 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)
  5. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/internal/GFileUtilsTest.groovy

        def "touch touches existing directory"() {
            def foo = temp.file("foo").createDir()
            def child = foo.file("data.txt") << "data"
            def original = foo.makeOlder().lastModified()
    
            when:
            touch(foo)
            then:
            foo.directory
            foo.lastModified() > original
            child.text == "data"
        }
    
        def "uses fallback for touching empty files"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/child/ActionExecutionWorker.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.process.internal.worker.child;
    
    import org.gradle.api.Action;
    import org.gradle.internal.concurrent.Stoppable;
    import org.gradle.internal.remote.ObjectConnection;
    import org.gradle.process.internal.worker.WorkerProcessContext;
    import org.slf4j.Logger;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/language/java/internal/JavaToolchainServices.java

    import org.gradle.jvm.toolchain.internal.JavaCompilerFactory;
    import org.gradle.process.internal.ExecHandleFactory;
    import org.gradle.process.internal.JavaForkOptionsFactory;
    import org.gradle.process.internal.worker.child.WorkerDirectoryProvider;
    import org.gradle.workers.internal.ActionExecutionSpecFactory;
    import org.gradle.workers.internal.WorkerDaemonFactory;
    
    public class JavaToolchainServices extends AbstractGradleModuleServices {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. 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)
  9. subprojects/core/src/main/java/org/gradle/process/internal/ExecFactory.java

        /**
         * Creates a new factory for the given context. Returns a {@link Builder} for further configuration of the created instance. You must provide an Instantiator when creating the child factory from
         * the root one.
         */
        Builder forContext();
    
        /**
         * Builder to configure an instance of the new factory.
         */
        interface Builder {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. 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)
Back to top