Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 157 for conservatively (0.2 sec)

  1. src/runtime/mcache.go

    			// We assumed earlier that the full span gets allocated.
    			gcController.totalAlloc.Add(slotsUsed * int64(s.elemsize))
    
    			if s.sweepgen != sg+1 {
    				// refill conservatively counted unallocated slots in gcController.heapLive.
    				// Undo this.
    				//
    				// If this span was cached before sweep, then gcController.heapLive was totally
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. src/cmd/dist/test.go

    	if err != nil {
    		return true // conservatively
    	}
    	defer d.Close()
    	names, err := d.Readdirnames(-1)
    	if err != nil {
    		return true // conservatively
    	}
    	for _, name := range names {
    		if !strings.HasSuffix(name, "_test.go") {
    			continue
    		}
    		slurp, err := os.ReadFile(filepath.Join(pkgDir, name))
    		if err != nil {
    			return true // conservatively
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. cluster/addons/fluentd-gcp/fluentd-gcp-configmap-old.yaml

          # Set queue_full action to block because we want to pause gracefully
          # in case of the off-the-limits load instead of throwing an exception
          buffer_queue_full_action block
          # Set the chunk limit conservatively to avoid exceeding the recommended
          # chunk size of 5MB per write request.
          buffer_chunk_limit 1M
          # Cap the combined memory usage of this buffer and the one below to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 16.3K bytes
    - Viewed (0)
  4. cluster/addons/fluentd-gcp/fluentd-gcp-configmap.yaml

          # Set queue_full action to block because we want to pause gracefully
          # in case of the off-the-limits load instead of throwing an exception
          buffer_queue_full_action block
          # Set the chunk limit conservatively to avoid exceeding the recommended
          # chunk size of 5MB per write request.
          buffer_chunk_limit 512k
          # Cap the combined memory usage of this buffer and the one below to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 18.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/liveness/plive.go

    		//  3. GC occurs within F itself.  This has to be from preemption, and thus GC is conservative.
    		//     a. X is in a register -- then X is seen, and the spill slot is also scanned conservatively.
    		//     b. X is spilled -- the spill slot is initialized, and scanned conservatively
    		//     c. X is not live -- the spill slot is scanned conservatively, and it may contain X from an earlier spill.
    		//  4. GC within G, transitively called from F
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  6. src/html/template/transition.go

    	// (4) Attribute value selectors as in a[href="http://example.com/"]
    	//
    	// We conservatively treat all strings as URLs, but make some
    	// allowances to avoid confusion.
    	//
    	// In (1), our conservative assumption is justified.
    	// In (2), valid font names do not contain ':', '?', or '#', so our
    	// conservative assumption is fine since we will never transition past
    	// urlPartPreQuery.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/walk/range.go

    		// end, but doesn't keep the backing store alive and doesn't get updated
    		// on a stack copy. If a GC occurs while this function is on the top of
    		// the stack, then the last frame is scanned conservatively and hu will
    		// act as a reference to the backing array to ensure it is not collected.
    		//
    		// The "pointer" we're moving across the backing array lives in one
    		// or the other of hp and hu as the loop proceeds.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:33 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  8. src/runtime/mfinal.go

    				//
    				// Unfortunately because we can have an arbitrary
    				// amount of returns and it would be complex to try and
    				// figure out how many of those can get passed in registers,
    				// just conservatively assume none of them do.
    				framesz := unsafe.Sizeof((any)(nil)) + f.nret
    				if framecap < framesz {
    					// The frame does not contain pointers interesting for GC,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. src/cmd/link/internal/arm/asm.go

    		// The PLT may be too far. Insert a trampoline for them.
    		fallthrough
    	case objabi.R_CALLARM:
    		var t int64
    		// ldr.SymValue(rs) == 0 indicates a cross-package jump to a function that is not yet
    		// laid out. Conservatively use a trampoline. This should be rare, as we lay out packages
    		// in dependency order.
    		if ldr.SymValue(rs) != 0 {
    			// Workaround for issue #58425: it appears that the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  10. src/net/http/transfer.go

    		t.ContentLength = rr.outgoingLength()
    		if t.ContentLength < 0 && len(t.TransferEncoding) == 0 && t.shouldSendChunkedRequestBody() {
    			t.TransferEncoding = []string{"chunked"}
    		}
    		// If there's a body, conservatively flush the headers
    		// to any bufio.Writer we're writing to, just in case
    		// the server needs the headers early, before we copy
    		// the body and possibly block. We make an exception
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top