Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for subTask (0.11 sec)

  1. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/sink/GroupingProgressLogEventGeneratorTest.groovy

            def warningMessage = event('Child task log message', LogLevel.WARN, subtaskStartEvent.buildOperationId)
            def subTaskCompleteEvent = new ProgressCompleteEvent(subtaskStartEvent.progressOperationId, tenAm, 'subtask complete', false)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. src/internal/trace/testtrace/validation.go

    			// The background task should never have an event emitted for it.
    			e.Errorf("found invalid task ID for task of type %s", t.Type)
    		}
    		if t.Parent == trace.BackgroundTask {
    			// It's not possible for a task to be a subtask of the background task.
    			e.Errorf("found background task as the parent for task of type %s", t.Type)
    		}
    		// N.B. Don't check the task type. Empty string is a valid task type.
    		v.tasks[t.ID] = t.Type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	rmt0WindowCount   uint32
    	dupacks           uint32
    	flag02            byte
    	sockOpt6Cont      byte
    	asid              uint16
    	resourceName      [8]byte
    	resourceId        uint32
    	subtask           uint32
    	sockOpt           byte
    	sockOpt6          byte
    	clusterConnFlag   byte
    	proto             byte
    	targetAppl        [8]byte
    	luName            [8]byte
    	clientUserId      [8]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  7. 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)
  8. platforms/extensibility/plugin-development/src/test/groovy/org/gradle/plugin/devel/plugins/JavaGradlePluginPluginTest.groovy

        }
    
        def "PluginValidationAction logs correct warning messages for broken plugins"(String impl, String implFile, String expectedMessage) {
            setup:
            Task stubTask = Stub(Task)
            def declarations = Mock(Provider) {
                get() >> []
            }
            List<PluginDescriptor> descriptors = []
            if (impl != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  9. src/runtime/arena_test.go

    	}
    
    	// Clone should make a copy of subAs, since subAs is just part of as and so is in the arena.
    	subAs := as[1:3]
    	subAsCopy := UserArenaClone(subAs)
    	if unsafe.StringData(subAs) == unsafe.StringData(subAsCopy) {
    		t.Error("Clone did not make a copy")
    	}
    	if len(subAs) != len(subAsCopy) {
    		t.Errorf("Clone made an incorrect copy (bad length): %d -> %d", len(subAs), len(subAsCopy))
    	} else {
    		for i := range subAs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. 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)
Back to top