Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 39 for task_id (0.27 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/execution/ExecuteTaskBuildOperationTypeIntegrationTest.groovy

            def op = operations.first(ExecuteTaskBuildOperationType) {
                it.details.taskPath == ":t"
            }
            op.details.buildPath == ":"
            op.details.taskClass == DefaultTask.name
            op.details.taskId != null
    
            op.result.cachingDisabledReasonCategory == "UNKNOWN"
            op.result.cachingDisabledReasonMessage == "Cacheability was not determined"
            op.result.skipMessage == "UP-TO-DATE"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 18 22:50:47 UTC 2020
    - 4.1K bytes
    - Viewed (0)
  2. src/internal/trace/event/event.go

    	"gstatus", // G status
    	"g",       // trace.GoID
    	"m",       // trace.ThreadID
    	"p",       // trace.ProcID
    	"string",  // string ID
    	"stack",   // stack ID
    	"value",   // uint64
    	"task",    // trace.TaskID
    }
    
    // Names is a helper that produces a mapping of event names to event types.
    func Names(specs []Spec) map[string]Type {
    	nameToType := make(map[string]Type)
    	for i, spec := range specs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/core-plugins/base_plugin.adoc

    `check` — _lifecycle task_::
    Plugins and build authors should attach their verification tasks, such as ones that run tests, to this lifecycle task using `check.dependsOn(__task__)`.
    
    `assemble` — _lifecycle task_::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. src/internal/trace/testtrace/validation.go

    type Validator struct {
    	lastTs   trace.Time
    	gs       map[trace.GoID]*goState
    	ps       map[trace.ProcID]*procState
    	ms       map[trace.ThreadID]*schedContext
    	ranges   map[trace.ResourceID][]string
    	tasks    map[trace.TaskID]string
    	seenSync bool
    	Go121    bool
    }
    
    type schedContext struct {
    	M trace.ThreadID
    	P trace.ProcID
    	G trace.GoID
    }
    
    type goState struct {
    	state   trace.GoState
    	binding *schedContext
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. src/cmd/trace/tasks.go

    			Elapsed    time.Duration
    			Goroutine  trace.GoID
    			What       string
    			// TODO: include stack trace of creation time
    		}
    		type task struct {
    			WhenString string
    			ID         trace.TaskID
    			Duration   time.Duration
    			Complete   bool
    			Events     []event
    			Start, End time.Duration // Time since the beginning of the trace
    			GCTime     time.Duration
    		}
    		var tasks []task
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. src/internal/trace/order.go

    	// reused, so we don't care about a Begin after an End.
    	id := TaskID(ev.args[0])
    	if _, ok := o.activeTasks[id]; ok {
    		return curCtx, false, fmt.Errorf("task ID conflict: %d", id)
    	}
    	// Get the parent ID, but don't validate it. There's no guarantee
    	// we actually have information on whether it's active.
    	parentID := TaskID(ev.args[1])
    	if parentID == BackgroundTask {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  7. src/internal/trace/reader.go

    		return &Reader{
    			r: br,
    			order: ordering{
    				mStates:     make(map[ThreadID]*mState),
    				pStates:     make(map[ProcID]*pState),
    				gStates:     make(map[GoID]*gState),
    				activeTasks: make(map[TaskID]taskState),
    			},
    			// Don't emit a sync event when we first go to emit events.
    			emittedSync: true,
    		}, nil
    	default:
    		return nil, fmt.Errorf("unknown or unsupported version go 1.%d", v)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskContainerTest.groovy

        }
    
        private <U extends TaskInternal> U task(final String name, Class<U> type) {
            def taskId = taskIdentityFactory.create(name, type, project)
            Mock(type, name: "[task" + taskId.id + "]") {
                getName() >> name
                getTaskDependency() >> Mock(TaskDependency)
                getTaskIdentity() >> taskId
            } as U
        }
    
        private Task addTask(String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 14:36:44 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/device_util.cc

      if (!DeviceNameUtils::ParseFullName(
              absl::string_view(device.data(), device.size()), &parsed_name))
        return mlir::emitError(loc) << "invalid device '" << device << "'";
    
      if (!parsed_name.has_id)
        return mlir::emitError(loc) << "device '" << device << "' has no id";
    
      *device_ordinal = parsed_name.id;
      return mlir::success();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. src/internal/trace/internal/testgen/go122/trace.go

    	case "m":
    		u = uint64(arg.(trace.ThreadID))
    	case "p":
    		u = uint64(arg.(trace.ProcID))
    	case "string":
    		u = b.gen.String(arg.(string))
    	case "task":
    		u = uint64(arg.(trace.TaskID))
    	default:
    		panic(fmt.Sprintf("unsupported arg type %q for spec %q", typStr, argSpec))
    	}
    	return u
    }
    
    // RawEvent emits an event into a batch. name must correspond to one
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top