OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:WithDeadline
(Results
1 - 3
of
3
) sorted by null
/external/syzkaller/vendor/golang.org/x/net/context/
go17.go
37
//
WithDeadline
returns a copy of the parent context with the deadline adjusted
39
//
WithDeadline
(parent, d) is semantically equivalent to parent. The returned
46
func
WithDeadline
(parent Context, deadline time.Time) (Context, CancelFunc) {
47
ctx, f := context.
WithDeadline
(parent, deadline)
51
// WithTimeout returns
WithDeadline
(parent, time.Now().Add(timeout)).
62
return
WithDeadline
(parent, time.Now().Add(timeout))
pre_go17.go
195
//
WithDeadline
returns a copy of the parent context with the deadline adjusted
197
//
WithDeadline
(parent, d) is semantically equivalent to parent. The returned
204
func
WithDeadline
(parent Context, deadline time.Time) (Context, CancelFunc) {
244
return fmt.Sprintf("%v.
WithDeadline
(%s [%s])", c.cancelCtx.Context, c.deadline, c.deadline.Sub(time.Now()))
261
// WithTimeout returns
WithDeadline
(parent, time.Now().Add(timeout)).
272
return
WithDeadline
(parent, time.Now().Add(timeout))
/external/grpc-grpc/src/csharp/Grpc.Core/
CallOptions.cs
150
public CallOptions
WithDeadline
(DateTime deadline)
Completed in 642 milliseconds