Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 99 for livable (0.08 sec)

  1. src/cmd/link/internal/ld/main.go

    	FlagD             = flag.Bool("d", false, "disable dynamic executable")
    	flagF             = flag.Bool("f", false, "ignore version mismatch")
    	flagG             = flag.Bool("g", false, "disable go package data checks")
    	flagH             = flag.Bool("h", false, "halt on error")
    	flagN             = flag.Bool("n", false, "no-op (deprecated)")
    	FlagS             = flag.Bool("s", false, "disable symbol table")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/lib.go

    		}
    	}
    
    	// Enable/disable ASLR on Windows.
    	addASLRargs := func(argv []string, val bool) []string {
    		// Old/ancient versions of GCC support "--dynamicbase" and
    		// "--high-entropy-va" but don't enable it by default. In
    		// addition, they don't accept "--disable-dynamicbase" or
    		// "--no-dynamicbase", so the only way to disable ASLR is to
    		// not pass any flags at all.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  3. src/cmd/link/internal/sym/symkind.go

    // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package sym
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. src/sync/rwmutex.go

    // Happens-before relationships are indicated to the race detector via:
    // - Unlock  -> Lock:  readerSem
    // - Unlock  -> RLock: readerSem
    // - RUnlock -> Lock:  writerSem
    //
    // The methods below temporarily disable handling of race synchronization
    // events in order to provide the more precise model above to the race
    // detector.
    //
    // For example, atomic.AddInt32 in RLock should not appear to provide
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. src/runtime/mgc.go

    	// the world.
    	gcController.startCycle(now, int(gomaxprocs), trigger)
    
    	// Notify the CPU limiter that assists may begin.
    	gcCPULimiter.startGCTransition(true, now)
    
    	// In STW mode, disable scheduling of user Gs. This may also
    	// disable scheduling of this goroutine, so it may block as
    	// soon as we start the world again.
    	if mode != gcBackgroundMode {
    		schedEnableUser(false)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modget/get.go

    			}
    			// A main module can only be set to its own version.
    			continue
    		}
    
    		vr, ok := r.resolvedVersion[m.Path]
    		if !ok {
    			// m is a viable answer to the query, but other answers may also
    			// still be viable.
    			filtered.pkgMods = append(filtered.pkgMods, m)
    			continue
    		}
    
    		if vr.version != m.Version {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  7. src/runtime/runtime2.go

    	// Global runnable queue.
    	runq     gQueue
    	runqsize int32
    
    	// disable controls selective disabling of the scheduler.
    	//
    	// Use schedEnableUser to control this.
    	//
    	// disable is protected by sched.lock.
    	disable struct {
    		// user disables scheduling of user goroutines.
    		user     bool
    		runnable gQueue // pending runnable Gs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  8. src/runtime/security_unix.go

    	if !isSecureMode() {
    		return
    	}
    
    	// When secure mode is enabled, we do one thing: enforce specific
    	// environment variable values (currently we only force GOTRACEBACK=none)
    	//
    	// Other packages may also disable specific functionality when secure mode
    	// is enabled (determined by using linkname to call isSecureMode).
    
    	secureEnv()
    }
    
    func secureEnv() {
    	var hasTraceback bool
    	for i := 0; i < len(envs); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 866 bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/versions/features.go

    	}
    	return Compare(Lang(v), Lang(release)) >= 0
    }
    
    // Before reports whether the file version v is strictly before a Go release.
    //
    // Use this predicate to disable a behavior once a certain Go release
    // has happened (and stays enabled in the future).
    func Before(v, release string) bool {
    	if v == Future {
    		return false // an unknown future version happens after y.
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/cfg/cfg.go

    			save = append(save, tag)
    		}
    	}
    	ctxt.ToolTags = save
    
    	// The go/build rule for whether cgo is enabled is:
    	//  1. If $CGO_ENABLED is set, respect it.
    	//  2. Otherwise, if this is a cross-compile, disable cgo.
    	//  3. Otherwise, use built-in default for GOOS/GOARCH.
    	//
    	// Recreate that logic here with the new GOOS/GOARCH setting.
    	// We need to run steps 2 and 3 to determine what the default value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top