Home
last modified time | relevance | path

Searched defs:Task (Results 251 – 275 of 6323) sorted by relevance

1...<<11121314151617181920>>...253

/dports/devel/sccache/sccache-0.2.15/cargo-crates/async-std-1.8.0/src/task/
H A Dtask.rs8 pub struct Task { struct
10 id: TaskId, argument
16 impl Task { implementation
19 pub(crate) fn new(name: Option<Arc<String>>) -> Task { in new()
42 impl fmt::Debug for Task { implementation
/dports/games/genact/genact-0.10.0/cargo-crates/async-std-1.6.3/src/task/
H A Dtask.rs8 pub struct Task { struct
10 id: TaskId, argument
16 impl Task { impl
19 pub(crate) fn new(name: Option<Arc<String>>) -> Task { in new()
42 impl fmt::Debug for Task { implementation
/dports/security/rustscan/RustScan-2.0.1/cargo-crates/async-std-1.7.0/src/task/
H A Dtask.rs8 pub struct Task { struct
10 id: TaskId, argument
16 impl Task { implementation
19 pub(crate) fn new(name: Option<Arc<String>>) -> Task { in new()
42 impl fmt::Debug for Task { implementation
/dports/security/arti/arti-9d0ede26801cdb182daa85c3eb5f0058dc178eb6/cargo-crates/async-std-1.10.0/src/task/
H A Dtask.rs8 pub struct Task { struct
10 id: TaskId, argument
16 impl Task { implementation
19 pub(crate) fn new(name: Option<Arc<String>>) -> Task { in new()
42 impl fmt::Debug for Task { implementation
/dports/textproc/jql/jql-3.0.6/cargo-crates/async-std-1.10.0/src/task/
H A Dtask.rs8 pub struct Task { struct
10 id: TaskId, argument
16 impl Task { argument
19 pub(crate) fn new(name: Option<Arc<String>>) -> Task { in new()
42 impl fmt::Debug for Task { implementation
/dports/security/lego/lego-4.5.3/vendor/github.com/aliyun/alibaba-cloud-sdk-go/services/oos/
H A Dstruct_task.go19 type Task struct { struct
20 Name string `json:"Name" xml:"Name"`
21 Outputs string `json:"Outputs" xml:"Outputs"`
22 Description string `json:"Description" xml:"Description"`
23 Properties string `json:"Properties" xml:"Properties"`
24 Type string `json:"Type" xml:"Type"`
/dports/security/vault/vault-1.8.2/vendor/github.com/aliyun/alibaba-cloud-sdk-go/services/oos/
H A Dstruct_task.go19 type Task struct { struct
20 Name string `json:"Name" xml:"Name"`
21 Type string `json:"Type" xml:"Type"`
22 Description string `json:"Description" xml:"Description"`
23 Properties string `json:"Properties" xml:"Properties"`
24 Outputs string `json:"Outputs" xml:"Outputs"`
/dports/audio/clementine-player/Clementine-1.4.0rc1/src/covers/
H A Dalbumcoverloader.h77 struct Task { struct
78 Task() : redirects(0) {} in Task() argument
100 void ProcessTask(Task* task); argument
/dports/devel/godot/godot-3.2.3-stable/editor/
H A Dprogress_dialog.h46 struct Task { struct
52 Map<String, Task> tasks; argument
74 struct Task { struct
84 Map<String, Task> tasks; argument
/dports/devel/godot-tools/godot-3.2.3-stable/editor/
H A Dprogress_dialog.h46 struct Task { struct
52 Map<String, Task> tasks; argument
74 struct Task { struct
84 Map<String, Task> tasks; argument
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/docker/machine/machine-7b7a141da844/vendor/github.com/vmware/govcloudair/
H A Dtask.go15 type Task struct { struct
16 Task *types.Task argument
17 c *Client
27 func (t *Task) Refresh() error {
54 func (t *Task) WaitTaskCompletion() error {
/dports/sysutils/docker-machine/machine-0.16.2/vendor/github.com/vmware/govcloudair/
H A Dtask.go15 type Task struct { struct
16 Task *types.Task member
17 c *Client
27 func (t *Task) Refresh() error {
54 func (t *Task) WaitTaskCompletion() error {
/dports/security/arti/arti-9d0ede26801cdb182daa85c3eb5f0058dc178eb6/cargo-crates/async-task-4.0.3/tests/
H A Dpanic.rs49 // Creates a schedule function with event counters.
53 // The schedule function `s` does nothing.
55 // When it gets dropped, `DROP` is incremented.
57 ($name:pat, $sched:ident, $drop:ident) => {
58 static $drop: AtomicUsize = AtomicUsize::new(0);
62 struct Guard(Box<i32>);
65 fn drop(&mut self) {
/dports/multimedia/intel-media-sdk/MediaSDK-intel-mediasdk-22.1.0/tools/bs_parser_hevc/include/
H A Dbs_thread.h45 struct Task struct
52 std::list<Task*> dependent; argument
65 Task* task; argument
/dports/multimedia/intel-media-sdk/MediaSDK-intel-mediasdk-22.1.0/samples/sample_hevc_fei_abr/include/dso/
H A Dbs_thread.h45 struct Task struct
52 std::list<Task*> dependent; argument
65 Task* task; argument
/dports/devel/llvm13/llvm-project-13.0.1.src/clang-tools-extra/clang-tidy/misc/
H A DUnusedUsingDeclsCheck.h42 // The original UsingDecl.
43 const UsingDecl *FoundUsingDecl;
44 // The source range of the UsingDecl.
50 std::vector<UsingDeclContext> Contexts;
53 } // namespace misc
/dports/games/egoboo/egoboo-2.8.1/src/game/Obsolete/
H A DTask.c28 typedef struct Task struct
31 TaskCallback func; argument
37 struct Task *previous, *next; argument
38 } Task; typedef
/dports/devel/sccache/sccache-0.2.15/cargo-crates/async-task-4.0.3/src/
H A Dtask.rs47 pub struct Task<T> { struct
55 unsafe impl<T: Send> Send for Task<T> {} argument
56 unsafe impl<T> Sync for Task<T> {} implementation
58 impl<T> Unpin for Task<T> {} implementation
61 impl<T> std::panic::UnwindSafe for Task<T> {} implementation
63 impl<T> std::panic::RefUnwindSafe for Task<T> {} implementation
65 impl<T> Task<T> { impl
356 impl<T> Drop for Task<T> { implementation
363 impl<T> Future for Task<T> { implementation
374 impl<T> fmt::Debug for Task<T> { implementation
/dports/security/rustscan/RustScan-2.0.1/cargo-crates/async-task-4.0.3/src/
H A Dtask.rs47 pub struct Task<T> { struct
55 unsafe impl<T: Send> Send for Task<T> {} argument
56 unsafe impl<T> Sync for Task<T> {} implementation
58 impl<T> Unpin for Task<T> {} implementation
61 impl<T> std::panic::UnwindSafe for Task<T> {} implementation
63 impl<T> std::panic::RefUnwindSafe for Task<T> {} implementation
65 impl<T> Task<T> { implementation
356 impl<T> Drop for Task<T> { implementation
363 impl<T> Future for Task<T> { implementation
374 impl<T> fmt::Debug for Task<T> { implementation
/dports/textproc/jql/jql-3.0.6/cargo-crates/async-task-4.0.3/src/
H A Dtask.rs47 pub struct Task<T> { struct
55 unsafe impl<T: Send> Send for Task<T> {} argument
56 unsafe impl<T> Sync for Task<T> {} implementation
58 impl<T> Unpin for Task<T> {} implementation
61 impl<T> std::panic::UnwindSafe for Task<T> {} implementation
63 impl<T> std::panic::RefUnwindSafe for Task<T> {} implementation
65 impl<T> Task<T> { impl
356 impl<T> Drop for Task<T> { implementation
363 impl<T> Future for Task<T> { implementation
374 impl<T> fmt::Debug for Task<T> { implementation
/dports/databases/prometheus-postgresql-adapter/prometheus-postgresql-adapter-0.6.0/vendor/google.golang.org/genproto/googleapis/cloud/tasks/v2beta2/
H A Dtask.pb.go82 type Task struct { struct
135 XXX_NoUnkeyedLiteral struct{} `json:"-"`
136 XXX_unrecognized []byte `json:"-"`
137 XXX_sizecache int32 `json:"-"`
142 func (*Task) ProtoMessage() {}
143 func (*Task) Descriptor() ([]byte, []int) {
156 func (m *Task) XXX_Size() int {
159 func (m *Task) XXX_DiscardUnknown() {
165 func (m *Task) GetName() string {
223 func (m *Task) GetStatus() *TaskStatus {
[all …]
/dports/net/grpcox/grpcox-1.0.0/vendor/google.golang.org/genproto/googleapis/cloud/tasks/v2beta2/
H A Dtask.pb.go73 type Task struct { struct
123 XXX_NoUnkeyedLiteral struct{} `json:"-"`
124 XXX_unrecognized []byte `json:"-"`
125 XXX_sizecache int32 `json:"-"`
130 func (*Task) ProtoMessage() {}
131 func (*Task) Descriptor() ([]byte, []int) {
143 func (m *Task) XXX_Size() int {
146 func (m *Task) XXX_DiscardUnknown() {
152 func (m *Task) GetName() string {
210 func (m *Task) GetStatus() *TaskStatus {
[all …]
/dports/net/grpcui/grpcui-1.1.0/vendor/google.golang.org/genproto/googleapis/cloud/tasks/v2beta2/
H A Dtask.pb.go78 type Task struct { struct
129 XXX_NoUnkeyedLiteral struct{} `json:"-"`
130 XXX_unrecognized []byte `json:"-"`
131 XXX_sizecache int32 `json:"-"`
136 func (*Task) ProtoMessage() {}
137 func (*Task) Descriptor() ([]byte, []int) {
150 func (m *Task) XXX_Size() int {
153 func (m *Task) XXX_DiscardUnknown() {
159 func (m *Task) GetName() string {
217 func (m *Task) GetStatus() *TaskStatus {
[all …]
/dports/security/lego/lego-4.5.3/vendor/google.golang.org/genproto/googleapis/cloud/tasks/v2beta2/
H A Dtask.pb.go78 type Task struct { struct
129 XXX_NoUnkeyedLiteral struct{} `json:"-"`
130 XXX_unrecognized []byte `json:"-"`
131 XXX_sizecache int32 `json:"-"`
136 func (*Task) ProtoMessage() {}
137 func (*Task) Descriptor() ([]byte, []int) {
150 func (m *Task) XXX_Size() int {
153 func (m *Task) XXX_DiscardUnknown() {
159 func (m *Task) GetName() string {
217 func (m *Task) GetStatus() *TaskStatus {
[all …]
/dports/net/evans/evans-0.9.1/vendor/google.golang.org/genproto/googleapis/cloud/tasks/v2beta2/
H A Dtask.pb.go78 type Task struct { struct
129 XXX_NoUnkeyedLiteral struct{} `json:"-"`
130 XXX_unrecognized []byte `json:"-"`
131 XXX_sizecache int32 `json:"-"`
136 func (*Task) ProtoMessage() {}
137 func (*Task) Descriptor() ([]byte, []int) {
150 func (m *Task) XXX_Size() int {
153 func (m *Task) XXX_DiscardUnknown() {
159 func (m *Task) GetName() string {
217 func (m *Task) GetStatus() *TaskStatus {
[all …]

1...<<11121314151617181920>>...253