Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 66 of 66 for stealID (0.51 sec)

  1. src/runtime/mgcpacer.go

    	// accumulate locally before updating gcController.heapScanWork and,
    	// optionally, gcController.bgScanCredit. Lower values give a more
    	// accurate assist ratio and make it more likely that assists will
    	// successfully steal background credit. Higher values reduce memory
    	// contention.
    	gcCreditSlack = 2000
    
    	// gcAssistTimeSlack is the nanoseconds of mutator assist time that
    	// can accumulate on a P before updating gcController.assistTime.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. src/net/http/server.go

    		err = e2
    	}
    	return err
    }
    
    func (c *conn) finalFlush() {
    	if c.bufr != nil {
    		// Steal the bufio.Reader (~4KB worth of memory) and its associated
    		// reader for a future connection.
    		putBufioReader(c.bufr)
    		c.bufr = nil
    	}
    
    	if c.bufw != nil {
    		c.bufw.Flush()
    		// Steal the bufio.Writer (~4KB worth of memory) and its associated
    		// writer for a future connection.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  3. src/runtime/mgc.go

    	// beginning of this GC cycle.
    	initialHeapLive uint64
    
    	// assistQueue is a queue of assists that are blocked because
    	// there was neither enough credit to steal or enough work to
    	// do.
    	assistQueue struct {
    		lock mutex
    		q    gQueue
    	}
    
    	// sweepWaiters is a list of blocked goroutines to wake when
    	// we transition from mark termination to sweep.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loader/loader.go

    func (l *Loader) resolve(r *oReader, s goobj.SymRef) Sym {
    	var rr *oReader
    	switch p := s.PkgIdx; p {
    	case goobj.PkgIdxInvalid:
    		// {0, X} with non-zero X is never a valid sym reference from a Go object.
    		// We steal this space for symbol references from external objects.
    		// In this case, X is just the global index.
    		if l.isExtReader(r) {
    			return Sym(s.SymIdx)
    		}
    		if s.SymIdx != 0 {
    			panic("bad sym ref")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-helper.sh

        # Create a new directory for the DNS addon and prepend a "0" on the name.
        # Prepending "0" to the directory ensures that add-on manager
        # creates the dns service first. This ensures no other add-on
        # can "steal" the designated DNS clusterIP.
        BASE_ADDON_DIR=${KUBE_HOME}/kube-manifests/kubernetes/gci-trusty
        BASE_DNS_DIR=${BASE_ADDON_DIR}/dns
        NEW_DNS_DIR=${BASE_ADDON_DIR}/0-dns
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. src/net/http/h2_bundle.go

    	// is a higher-priority stream. With throttling enabled, we write a small
    	// amount of data from B to minimize the amount of bandwidth that B can
    	// steal from A.
    	ThrottleOutOfOrderWrites bool
    }
    
    // NewPriorityWriteScheduler constructs a WriteScheduler that schedules
    // frames by following HTTP/2 priorities as described in RFC 7540 Section 5.3.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top