Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for subTasks (0.17 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. 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)
  3. 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)
  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. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top