Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for task_id (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/documentation/docs/src/docs/userguide/core-plugins/war_plugin.adoc

    The War plugin adds and modifies the following tasks:
    
    `war` — link:{groovyDslPath}/org.gradle.api.tasks.bundling.War.html[War]::
    _Depends on_: `compile`
    +
    Assembles the application WAR file.
    
    `assemble` - _lifecycle task_::
    _Depends on_: `war`
    
    The War plugin adds the following dependencies to tasks added by the Java plugin;
    
    .War plugin - tasks
    image::warPluginTasks.png[]
    
    [[sec:war_dependency_management]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:23:16 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top