Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 302 for childs (0.11 sec)

  1. src/runtime/debug/example_monitor_test.go

    // crash reporting. Call this function immediately within main.
    //
    // This function re-executes the same executable as a child process,
    // in a special mode. In that mode, the call to monitor will never
    // return.
    func monitor() {
    	const monitorVar = "RUNTIME_DEBUG_MONITOR"
    	if os.Getenv(monitorVar) != "" {
    		// This is the monitor (child) process.
    		log.SetFlags(0)
    		log.SetPrefix("monitor: ")
    
    		crash, err := io.ReadAll(os.Stdin)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/GradleWorkerMain.java

     * sets up the worker ClassLoader, and then delegates to {@link org.gradle.process.internal.worker.child.SystemApplicationClassLoaderWorker} to deserialize and execute the action.
     */
    public class GradleWorkerMain {
        public void run() throws Exception {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/project/ProjectBuilderTest.java

            org.apache.maven.project.ProjectBuilder projectBuilder =
                    getContainer().lookup(org.apache.maven.project.ProjectBuilder.class);
            File child = new File(tempDir.toFile(), "child/pom.xml");
            // build project once
            projectBuilder.build(child, configuration);
            // modify parent
            File parent = new File(tempDir.toFile(), "pom.xml");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/ExternalScriptExecutionIntegrationTest.groovy

        @Test
        void canExecuteExternalScriptFromSettingsScript() {
            testFile('settings.gradle') << ''' apply { from 'other.gradle' } '''
            createDirs("child")
            testFile('other.gradle') << ''' include 'child' '''
            testFile('build.gradle') << ''' assert ['child'] == subprojects*.name '''
    
            inTestDirectory().withTasks("help").run()
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

                    }
                } else {
                    for (ModelNodeInternal child : node.getLinks()) {
                        if (!child.isAtLeast(targetState)) {
                            dependencies.add(graph.nodeAtState(new NodeAtState(child.getPath(), targetState)));
                        }
                    }
                }
                return true;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_performance.adoc

    == Measuring developer builds
    
    Gradle's build cache can be very useful in reducing CI infrastructure cost and feedback time, but it usually has the biggest impact when developers can reuse cached results in their local builds. This is also the hardest to quantify for a number of reasons:
    
    * developers run different builds
    * developers can have different hardware, or have different settings
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/Node.java

        @Nullable
        Artifact getArtifact();
    
        /**
         * @return dependency for this node
         */
        @Nullable
        Dependency getDependency();
    
        /**
         * Gets the child nodes of this node.
         *
         * @return the child nodes of this node, never {@code null}
         */
        @Nonnull
        List<Node> getChildren();
    
        /**
         * @return repositories of this node
         */
        @Nonnull
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part5_gradle_inc_builds.adoc

    [[part5_gradle_inc_builds]]
    = Part 5: Exploring Incremental Builds
    
    ++++
    <div class="badge-wrapper">
        <a class="badge" href="https://dpeuniversity.gradle.com/app/courses/ec69d0b8-9171-4969-ac3e-82dea16f87b0/" target="_blank">
            <span class="badge-type button--blue">LEARN</span>
            <span class="badge-text">Incremental Builds and Build Caching with Gradle&nbsp;&nbsp;&nbsp;&gt;</span>
        </a>
    </div>
    ++++
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. platforms/jvm/testing-junit-platform/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformTestClassProcessor.java

            } else {
                listener.executionStarted(testIdentifier);
    
                for (TestIdentifier child : testPlan.getChildren(testIdentifier)) {
                    dryRun(child, testPlan, listener);
                }
                listener.executionFinished(testIdentifier, TestExecutionResult.successful());
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DefaultResolvedDependency.java

        }
    
        @Override
        public int hashCode() {
            return variantName.hashCode() ^ moduleVersionId.hashCode();
        }
    
        public void addChild(DefaultResolvedDependency child) {
            children.add(child);
            child.parents.add(this);
        }
    
        public void addParentSpecificArtifacts(ResolvedDependency parent, ResolvedArtifactSet artifacts) {
            this.parentArtifacts.put(parent, artifacts);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top