Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 179 for SO (0.2 sec)

  1. src/runtime/mgc.go

    		//
    		// Here we reuse the same now for start the world so that the
    		// time added to /sched/pauses/total/gc:seconds will be
    		// consistent with the value in memstats.
    		startTheWorldWithSema(now, stw)
    	})
    
    	// Flush the heap profile so we can start a new cycle next GC.
    	// This is relatively expensive, so we don't do it with the
    	// world stopped.
    	mProf_Flush()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  2. src/runtime/mgcmark.go

    	//
    	// This must be > _MaxSmallSize so that the object base is the
    	// span base.
    	maxObletBytes = 128 << 10
    
    	// drainCheckThreshold specifies how many units of work to do
    	// between self-preemption checks in gcDrain. Assuming a scan
    	// rate of 1 MB/ms, this is ~100 µs. Lower values have higher
    	// overhead in the scan loop (the scheduler check may perform
    	// a syscall, so its overhead is nontrivial). Higher values
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  3. src/runtime/malloc.go

    	// starts placing mmap'd regions at addresses that are
    	// significantly below 48 bits, so even if it's possible to
    	// exceed Go's 48 bit limit, it's extremely unlikely in
    	// practice.
    	//
    	// On 32-bit platforms, we accept the full 32-bit address
    	// space because doing so is cheap.
    	// mips32 only has access to the low 2GB of virtual memory, so
    	// we further limit it to 31 bits.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. tensorflow/BUILD

    # kernels. Does not include the implementations of any ops or kernels. Instead,
    # the library which loads libtensorflow_framework.so
    # (e.g. _pywrap_tensorflow_internal.so for Python, libtensorflow.so for the C
    # API) is responsible for registering ops with libtensorflow_framework.so. In
    # addition to this core set of ops, user libraries which are loaded (via
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  5. src/runtime/mprof.go

    	// called from the scheduler, this is on the system stack already so
    	// traceback.go:cgoContextPCs will avoid calling back into the scheduler.
    	//
    	// When called from the goroutine coordinating the profile, we still have
    	// set gp1.goroutineProfiled to goroutineProfileInProgress and so are still
    	// preventing it from being truly _Grunnable. So we'll use the system stack
    	// to avoid schedule delays.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. src/runtime/mheap.go

    	// batching heap frees.
    
    	// Bail early if there's no more reclaim work.
    	if h.reclaimIndex.Load() >= 1<<63 {
    		return
    	}
    
    	// Disable preemption so the GC can't start while we're
    	// sweeping, so we can read h.sweepArenas, and so
    	// traceGCSweepStart/Done pair on the P.
    	mp := acquirem()
    
    	trace := traceAcquire()
    	if trace.ok() {
    		trace.GCSweepStart()
    		traceRelease(trace)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/load.go

    			}
    			if importPath, ok := tryMod(m); ok {
    				// checkMultiplePaths ensures that a module can be used for at most one
    				// requirement, so this must be it.
    				return importPath
    			}
    		}
    	}
    
    	// None of the roots contained dir, or the graph is unpruned (so we don't want
    	// to distinguish between roots and transitive dependencies). Either way,
    	// check the full graph to see if the directory is a non-root dependency.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  8. src/runtime/traceback.go

    	if GOARCH == "arm" && goarm < 7 && GOOS == "linux" && frame.pc&0xffff0000 == 0xffff0000 {
    		// Note that the calls are simple BL without pushing the return
    		// address, so we use LR directly.
    		//
    		// The kernel helpers are frameless leaf functions, so SP and
    		// LR are not touched.
    		frame.pc = frame.lr
    		frame.lr = 0
    	}
    
    	f := findfunc(frame.pc)
    	if !f.valid() {
    		if flags&unwindSilentErrors == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. src/runtime/mgcscavenge.go

    		throw("min too large")
    	}
    	// max may not be min-aligned, so we might accidentally truncate to
    	// a max value which causes us to return a non-min-aligned value.
    	// To prevent this, align max up to a multiple of min (which is always
    	// a power of 2). This also prevents max from ever being less than
    	// min, unless it's zero, so handle that explicitly.
    	if max == 0 {
    		max = minimum
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         *
         * <li>Anything else is treated as an error.</li>
         *
         * </ul>
         *
         * <p>The returned file collection is lazy, so that the paths are evaluated only when the contents of the file
         * collection are queried. The file collection is also live, so that it evaluates the above each time the contents
         * of the collection is queried.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
Back to top