Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for newExtra (0.29 sec)

  1. staging/src/k8s.io/apiserver/pkg/authentication/request/headerrequest/requestheader.go

    	name := headerValue(req.Header, a.nameHeaders.Value())
    	if len(name) == 0 {
    		return nil, false, nil
    	}
    	groups := allHeaderValues(req.Header, a.groupHeaders.Value())
    	extra := newExtra(req.Header, a.extraHeaderPrefixes.Value())
    
    	// clear headers used for authentication
    	ClearAuthenticationHeaders(req.Header, a.nameHeaders, a.groupHeaders, a.extraHeaderPrefixes)
    
    	return &authenticator.Response{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:19:54 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. src/runtime/race/output_test.go

      _cgoexp_[0-9a-z]+_goCallback\(\)
          .*_cgo_gotypes\.go:[0-9]+ \+0x[0-9,a-f]+
      _cgoexp_[0-9a-z]+_goCallback\(\)
          <autogenerated>:1 \+0x[0-9,a-f]+
    
    Goroutine [0-9] \(running\) created at:
      runtime\.newextram\(\)
          .*/runtime/proc.go:[0-9]+ \+0x[0-9,a-f]+
    ==================`,
    		`==================
    WARNING: DATA RACE
    Read at 0x[0-9,a-f]+ by .*:
      main\..*
          .*/main\.go:[0-9]+ \+0x[0-9,a-f]+(?s).*
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 25 20:44:25 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  3. src/net/http/transfer.go

    			ncopy, err = t.doBodyCopy(dst, body)
    		} else {
    			ncopy, err = t.doBodyCopy(w, io.LimitReader(body, t.ContentLength))
    			if err != nil {
    				return err
    			}
    			var nextra int64
    			nextra, err = t.doBodyCopy(io.Discard, body)
    			ncopy += nextra
    		}
    		if err != nil {
    			return err
    		}
    	}
    	if t.BodyCloser != nil {
    		closed = true
    		if err := t.BodyCloser.Close(); err != nil {
    			return err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  4. src/runtime/cgocall.go

    	gp.m.winsyscall = winsyscall
    }
    
    func cgocallbackg1(fn, frame unsafe.Pointer, ctxt uintptr) {
    	gp := getg()
    
    	if gp.m.needextram || extraMWaiters.Load() > 0 {
    		gp.m.needextram = false
    		systemstack(newextram)
    	}
    
    	if ctxt != 0 {
    		s := append(gp.cgoCtxt, ctxt)
    
    		// Now we need to set gp.cgoCtxt = s, but we could get
    		// a SIGPROF signal while manipulating the slice, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    	if _cgo_pthread_key_created != nil && *(*uintptr)(_cgo_pthread_key_created) != 0 {
    		cgoBindM()
    	}
    }
    
    // newextram allocates m's and puts them on the extra list.
    // It is called with a working local m, so that it can do things
    // like call schedlock and allocate.
    func newextram() {
    	c := extraMWaiters.Swap(0)
    	if c > 0 {
    		for i := uint32(0); i < c; i++ {
    			oneNewExtraM()
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top