Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for subTask (0.15 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. 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)
  3. 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)
  4. 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)
  5. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

       *       the interrupt will be restored to the thread after it completes so that its {@code
       *       delegate} Executor may process the interrupt.
       *   <li>subtasks are run with the thread uninterrupted and interrupts received during execution
       *       of a task are ignored.
       * </ol>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 39K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskContainerTest.groovy

        }
    
        void "finds task by relative path"() {
            when:
            Task task = task("task")
            expectTaskLookupInOtherProject("sub", "task", task)
    
            then:
            container.findByPath("sub:task") == task
        }
    
        void "finds tasks by absolute path"() {
            when:
            Task task = task("task")
            expectTaskLookupInOtherProject(":", "task", task)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 14:36:44 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/MoreExecutors.java

       *       the interrupt will be restored to the thread after it completes so that its {@code
       *       delegate} Executor may process the interrupt.
       *   <li>subtasks are run with the thread uninterrupted and interrupts received during execution
       *       of a task are ignored.
       * </ol>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 43.7K bytes
    - Viewed (0)
  8. cmd/notification.go

    	Host xnet.Host // Remote host on which the rpc call was initiated
    	Err  error     // Error returned by the remote peer for an rpc call
    }
    
    // A NotificationGroup is a collection of goroutines working on subtasks that are part of
    // the same overall task.
    //
    // A zero NotificationGroup is valid and does not cancel on error.
    type NotificationGroup struct {
    	workers    *workers.Workers
    	errs       []NotificationPeerErr
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 44.9K bytes
    - Viewed (0)
Back to top