Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for subTasks (0.22 sec)

  1. 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)
  2. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                // the pool core size will be incremented before submitting
                // all the tasks, then the thread will block waiting for all
                // those subtasks to finish.
                // This ensures the number of running workers is no more than
                // the defined parallism, while making sure the pool will not
                // be exhausted
                //
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/internal/trace/traceviewer/static/trace_viewer_full.html

    Task.prototype={get name(){return this.runCb_.name;},set updatesUi(value){this.updatesUi_=value;},subTask(cb,thisArg){if(cb instanceof Task){this.subTasks_.push(cb);}else{this.subTasks_.push(new Task(cb,thisArg));}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.8.md

       * **NOTE:** Self-hosting will be the default way to host the control plane in the next release, v1.9
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top