Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 266 for tp (0.06 sec)

  1. pilot/pkg/xds/ads.go

    	ordered := make([]*model.WatchedResource, 0, len(allWatched))
    	// first add all known types, in order
    	for _, tp := range PushOrder {
    		if allWatched[tp] != nil {
    			ordered = append(ordered, allWatched[tp])
    		}
    	}
    	// Then add any undeclared types
    	for tp, res := range allWatched {
    		if !KnownOrderedTypeUrls.Contains(tp) {
    			ordered = append(ordered, res)
    		}
    	}
    	return ordered
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. src/net/http/response.go

    // pairs included in the response trailer.
    func ReadResponse(r *bufio.Reader, req *Request) (*Response, error) {
    	tp := textproto.NewReader(r)
    	resp := &Response{
    		Request: req,
    	}
    
    	// Parse the first line of the response.
    	line, err := tp.ReadLine()
    	if err != nil {
    		if err == io.EOF {
    			err = io.ErrUnexpectedEOF
    		}
    		return nil, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/filterlatency/filterlatency_test.go

    	}
    }
    
    func TestStartedAndCompletedOpenTelemetryTracing(t *testing.T) {
    	filterName := "my-filter"
    	// Seup OTel for testing
    	fakeRecorder := tracetest.NewSpanRecorder()
    	tp := sdktrace.NewTracerProvider(sdktrace.WithSpanProcessor(fakeRecorder))
    
    	// base handler func
    	var callCount int
    	handler := http.HandlerFunc(func(_ http.ResponseWriter, req *http.Request) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go

    	SYS_CLOCK_GETTIME          = 232 // { int clock_gettime(clockid_t clock_id, struct timespec *tp); }
    	SYS_CLOCK_SETTIME          = 233 // { int clock_settime(clockid_t clock_id, const struct timespec *tp); }
    	SYS_CLOCK_GETRES           = 234 // { int clock_getres(clockid_t clock_id, struct timespec *tp); }
    	SYS_NANOSLEEP              = 240 // { int nanosleep(const struct timespec *rqtp, struct timespec *rmtp); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go

    	SYS_CLOCK_GETTIME        = 427 // { int|sys|50|clock_gettime(clockid_t clock_id, struct timespec *tp); }
    	SYS_CLOCK_SETTIME        = 428 // { int|sys|50|clock_settime(clockid_t clock_id, const struct timespec *tp); }
    	SYS_CLOCK_GETRES         = 429 // { int|sys|50|clock_getres(clockid_t clock_id, struct timespec *tp); }
    	SYS_NANOSLEEP            = 430 // { int|sys|50|nanosleep(const struct timespec *rqtp, struct timespec *rmtp); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  6. src/syscall/zsysnum_netbsd_arm64.go

    	SYS_CLOCK_GETTIME        = 427 // { int|sys|50|clock_gettime(clockid_t clock_id, struct timespec *tp); }
    	SYS_CLOCK_SETTIME        = 428 // { int|sys|50|clock_settime(clockid_t clock_id, const struct timespec *tp); }
    	SYS_CLOCK_GETRES         = 429 // { int|sys|50|clock_getres(clockid_t clock_id, struct timespec *tp); }
    	SYS_NANOSLEEP            = 430 // { int|sys|50|nanosleep(const struct timespec *rqtp, struct timespec *rmtp); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  7. src/runtime/sys_openbsd2.go

    	return args.ret, args.errno
    }
    func fcntl_trampoline()
    
    //go:nosplit
    func nanotime1() int64 {
    	var ts timespec
    	args := struct {
    		clock_id int32
    		tp       unsafe.Pointer
    	}{_CLOCK_MONOTONIC, unsafe.Pointer(&ts)}
    	if errno := libcCall(unsafe.Pointer(abi.FuncPCABI0(clock_gettime_trampoline)), unsafe.Pointer(&args)); errno < 0 {
    		// Avoid growing the nosplit stack.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. src/runtime/mgcmark.go

    		// of the object.
    		n = s.base() + s.elemsize - b
    		n = min(n, maxObletBytes)
    		tp = s.typePointersOfUnchecked(s.base())
    		tp = tp.fastForward(b-tp.addr, b+n)
    	} else {
    		tp = s.typePointersOfUnchecked(b)
    	}
    
    	var scanSize uintptr
    	for {
    		var addr uintptr
    		if tp, addr = tp.nextFast(); addr == 0 {
    			if tp, addr = tp.next(b + n); addr == 0 {
    				break
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/typecheck/expr.go

    		n.X = Expr(addr)
    		l = n.X
    	}
    	t := l.Type()
    	var tp *types.Type
    	if t.IsString() {
    		if hasmax {
    			base.Errorf("invalid operation %v (3-index slice of string)", n)
    			n.SetType(nil)
    			return n
    		}
    		n.SetType(t)
    		n.SetOp(ir.OSLICESTR)
    	} else if t.IsPtr() && t.Elem().IsArray() {
    		tp = t.Elem()
    		n.SetType(types.NewSlice(tp.Elem()))
    		types.CalcSize(n.Type())
    		if hasmax {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go

    	SYS_CLOCK_GETTIME            = 232 // { int clock_gettime(clockid_t clock_id, struct timespec *tp); }
    	SYS_CLOCK_SETTIME            = 233 // { int clock_settime(clockid_t clock_id, const struct timespec *tp); }
    	SYS_CLOCK_GETRES             = 234 // { int clock_getres(clockid_t clock_id, struct timespec *tp); }
    	SYS_KTIMER_CREATE            = 235 // { int ktimer_create(clockid_t clock_id, struct sigevent *evp, int *timerid); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
Back to top