Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 150 for conservative (0.17 sec)

  1. src/cmd/compile/internal/types2/lookup.go

    // Otherwise it returns (typ, false).
    func deref(typ Type) (Type, bool) {
    	if p, _ := Unalias(typ).(*Pointer); p != nil {
    		// p.base should never be nil, but be conservative
    		if p.base == nil {
    			if debug {
    				panic("pointer with nil base type (possibly due to an invalid cyclic declaration)")
    			}
    			return Typ[Invalid], true
    		}
    		return p.base, true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  2. src/go/types/lookup.go

    // Otherwise it returns (typ, false).
    func deref(typ Type) (Type, bool) {
    	if p, _ := Unalias(typ).(*Pointer); p != nil {
    		// p.base should never be nil, but be conservative
    		if p.base == nil {
    			if debug {
    				panic("pointer with nil base type (possibly due to an invalid cyclic declaration)")
    			}
    			return Typ[Invalid], true
    		}
    		return p.base, true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  3. src/runtime/extern.go

    	asynchronous goroutine preemption. This makes some loops
    	non-preemptible for long periods, which may delay GC and
    	goroutine scheduling. This is useful for debugging GC issues
    	because it also disables the conservative stack scanning used
    	for asynchronously preempted goroutines.
    
    The [net] and [net/http] packages also refer to debugging variables in GODEBUG.
    See the documentation for those packages for details.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/writebarrier.go

    	ptrSize := f.Config.PtrSize
    	// Keep track of which parts of memory are known to be zero.
    	// This helps with removing write barriers for various initialization patterns.
    	// This analysis is conservative. We only keep track, for each memory state, of
    	// which of the first 64 words of a single object are known to be zero.
    	zeroes := map[ID]ZeroRegion{}
    	// Find new objects.
    	for _, b := range f.Blocks {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/named.go

    				iface.embeddeds = old.embeddeds
    				assert(old.complete) // otherwise we are copying incomplete data
    				iface.complete = old.complete
    				iface.implicit = old.implicit // should be false but be conservative
    				underlying = iface
    			}
    			iface.methods = methods
    			iface.tset = nil // recompute type set with new methods
    
    			// If check != nil, check.newInterface will have saved the interface for later completion.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/cache/DiskLruCache.kt

     * is satisfied. The limit is not strict: the cache may temporarily exceed it while waiting for
     * files to be deleted. The limit does not include filesystem overhead or the cache journal so
     * space-sensitive applications should set a conservative limit.
     *
     * Clients call [edit] to create or update the values of an entry. An entry may have only one editor
     * at one time; if a value is not available to be edited then [edit] will return null.
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

     *       timeout point. Similarly, a SMALL is always discriminable as larger than SHORT and smaller
     *       than MEDIUM. And so on. These constants are set to conservative values, but even so, if
     *       there is ever any doubt, they can all be increased in one spot to rerun tests on slower
     *       platforms.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  8. src/runtime/cgocall.go

    // additional argument of a slice or array means that it needs to
    // check the entire slice/array, but nothing else. Otherwise, the
    // pointer could be anything, and we check the entire heap object,
    // which is conservative but safe.
    
    // When and if we implement a moving garbage collector,
    // cgoCheckPointer will pin the pointer for the duration of the cgo
    // call.  (This is necessary but not sufficient; the cgo program will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

     *       timeout point. Similarly, a SMALL is always discriminable as larger than SHORT and smaller
     *       than MEDIUM. And so on. These constants are set to conservative values, but even so, if
     *       there is ever any doubt, they can all be increased in one spot to rerun tests on slower
     *       platforms.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  10. src/go/types/named.go

    				iface.embeddeds = old.embeddeds
    				assert(old.complete) // otherwise we are copying incomplete data
    				iface.complete = old.complete
    				iface.implicit = old.implicit // should be false but be conservative
    				underlying = iface
    			}
    			iface.methods = methods
    			iface.tset = nil // recompute type set with new methods
    
    			// If check != nil, check.newInterface will have saved the interface for later completion.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top