Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 3,406 for task3 (0.08 sec)

  1. src/cmd/trace/tasks.go

    func UserTasksHandlerFunc(t *parsedTrace) http.HandlerFunc {
    	return func(w http.ResponseWriter, r *http.Request) {
    		tasks := t.summary.Tasks
    
    		// Summarize groups of tasks with the same name.
    		summary := make(map[string]taskStats)
    		for _, task := range tasks {
    			stats, ok := summary[task.Name]
    			if !ok {
    				stats.Type = task.Name
    			}
    			stats.add(task)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/DefaultGroupTaskReportModel.java

                @Override
                public int compare(TaskDetails task1, TaskDetails task2) {
                    int diff = STRING_COMPARATOR.compare(task1.getPath().getName(), task2.getPath().getName());
                    if (diff != 0) {
                        return diff;
                    }
                    Path parent1 = task1.getPath().getParent();
                    Path parent2 = task2.getPath().getParent();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 08 21:50:18 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/Task.java

    import javax.annotation.Nullable;
    
    /**
     * Represents a task which is executable by Gradle.
     *
     * <p>Note: {@code Task} extends {@code Launchable} since 1.12.</p>
     *
     * @since 1.0-milestone-3
     */
    public interface Task extends Launchable {
        /**
         * Returns the path of this task. This is a fully qualified unique name for this task.
         *
         * @return The path of this task.
         * @since 1.0-milestone-3
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/PublishArtifactNotationParserFactoryTest.groovy

            when:
            def deps = publishArtifact.buildDependencies
    
            then:
            deps.getDependencies(null) == [task1, task2] as Set
        }
    
        def "create artifact from buildable Directory provider"() {
            def task1 = Stub(Task)
            def task2 = Stub(Task)
            def provider = Mock(ProviderInternal)
            def value = Mock(Directory)
            def file1 = new File("classes-1.dir")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/BuildPhaseOperationEventLegacyCrossVersionTest.groovy

                rootProject.name = 'root'
                include 'a'
            """
            file("a/build.gradle") << """
                task taskA {}
                task taskB {
                    dependsOn 'taskA'
                }
                task taskC {
                    dependsOn 'taskB'
                }
            """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/controlling_task_execution.adoc

    So if you only run `taskY` with `mustRunAfter`, you won't cause `taskX` to run.
    This is expressed as `taskY.mustRunAfter(taskX)`.
    
    ====
    include::sample[dir="snippets/tasks/mustRunAfter/kotlin",files="build.gradle.kts[]"]
    include::sample[dir="snippets/tasks/mustRunAfter/groovy",files="build.gradle[]"]
    
    ----
    $ gradle -q taskY taskX
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/DefaultBuildLauncherTest.groovy

                return null
            }
            1 * handler.onComplete(null)
            0 * asyncConnection._
            0 * handler._
        }
    
        def "can configure the operation"() {
            Task task1 = task(':task1')
            Task task2 = task(':task2')
            ResultHandlerVersion1<Void> adaptedHandler
            ResultHandler<Void> handler = Mock()
            OutputStream stdout = Stub()
            OutputStream stderr = Stub()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/lifecycle/internal/Task.java

        @Override
        public boolean equals(Object o) {
            if (this == o) {
                return true;
            }
            if (!(o instanceof Task)) {
                return false;
            }
            Task task = (Task) o;
            return Objects.equals(getClass(), task.getClass()) && Objects.equals(value, task.value);
        }
    
        @Override
        public int hashCode() {
            return Objects.hash(getClass(), value);
        }
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 20:57:17 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/concurrent/Task.kt

     * decide not to by returning -1L.
     *
     * Task Queues
     * -----------
     *
     * Tasks are bound to the [TaskQueue] they are scheduled in. Each queue is sequential and the tasks
     * within it never execute concurrently. It is an error to use a task in multiple queues.
     */
    abstract class Task(
      val name: String,
      val cancelable: Boolean = true,
    ) {
      // Guarded by the TaskRunner.
      internal var queue: TaskQueue? = null
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.GradleBuild.xml

                </thead>
                <tr>
                    <td>dir</td>
                </tr>
                <tr>
                    <td>buildFile</td>
                </tr>
                <tr>
                    <td>tasks</td>
                </tr>
                <tr>
                    <td>startParameter</td>
                </tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 720 bytes
    - Viewed (0)
Back to top