Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for subTask (0.11 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractDeferredTaskDefinitionIntegrationTest.groovy

                        println("Create ${path}")
                    }
                }
                class SomeSubTask extends SomeTask {
                    SomeSubTask() {
                        println("Create subtask ${path}")
                    }
                }
                class SomeOtherTask extends DefaultTask {
                    SomeOtherTask() {
                        println("Create ${path}")
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 14 01:36:23 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskOverwritingIntegrationTest.groovy

                   println "Configure ${path}"
                }
            '''
    
            expect:
            succeeds "help"
    
            result.output.count("Create subtask :myTask") == 1
            result.output.count("Lazy 1 :myTask") == 1
            result.output.count("Lazy 2 :myTask") == 1
            result.output.count("Configure :myTask") == 1
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 13 09:05:07 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  3. src/runtime/trace/annotation.go

    )
    
    type traceContextKey struct{}
    
    // NewTask creates a task instance with the type taskType and returns
    // it along with a Context that carries the task.
    // If the input context contains a task, the new task is its subtask.
    //
    // The taskType is used to classify task instances. Analysis tools
    // like the Go execution tracer may assume there are only a bounded
    // number of unique task types in the system.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/TaskDetailsFactoryTest.groovy

        def createsDetailsForTaskInSubProject() {
            task.project >> subproject
            task.path >> ':sub:path'
            project.relativeProjectPath(':sub:path') >> 'sub:task'
    
            expect:
            def details = factory.create(task)
            details.path == Path.path('sub:task')
        }
    
        def createsDetailsForTaskInOtherProject() {
            Project other = Mock()
            task.project >> other
            task.path >> ':other:task'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 10 12:50:23 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/AggregateMultiProjectTaskReportModelTest.groovy

        def "merges the tasks with a given name from each project into a single task"() {
            TaskDetails task1 = taskDetails(':task')
            TaskDetails task2 = taskDetails(':other')
            TaskDetails task3 = taskDetails(':sub:task')
            _ * task1.findTask(_) >> Mock(Task)
            _ * task2.findTask(_) >> Mock(Task)
            _ * task3.findTask(_) >> Mock(Task)
    
            TaskReportModel project1 = Mock()
            TaskReportModel project2 = Mock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 31 16:45:11 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sync/errgroup/errgroup.go

    // cancelation for groups of goroutines working on subtasks of a common task.
    //
    // [errgroup.Group] is related to [sync.WaitGroup] but adds handling of tasks
    // returning errors.
    package errgroup
    
    import (
    	"context"
    	"fmt"
    	"sync"
    )
    
    type token struct{}
    
    // A Group is a collection of goroutines working on subtasks that are part of
    // the same overall task.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top