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/internal/obj/riscv/cpu.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 riscv
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. 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)
  4. src/runtime/malloc_test.go

    	// See issue 37262 for details.
    
    	// GC twice, once to reach a stable heap state
    	// and again to make sure we finish the sweep phase.
    	runtime.GC()
    	runtime.GC()
    
    	// Disable preemption so we stay on one P's tiny allocator and
    	// nothing else allocates from it.
    	runtime.Acquirem()
    
    	// Make 1-byte allocations until we get a fresh tiny slot.
    	aligned := false
    	for i := 0; i < 16; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  5. src/runtime/proc_test.go

    		P = 3
    		N = 3
    	}
    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(P))
    	// If runtime triggers a forced GC during this test then it will deadlock,
    	// since the goroutines can't be stopped/preempted.
    	// Disable GC for this test (see issue #10958).
    	defer debug.SetGCPercent(debug.SetGCPercent(-1))
    	// SetGCPercent waits until the mark phase is over, but the runtime
    	// also preempts at the start of the sweep phase, so make sure that's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/a.out.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 arm64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/pe.go

    	return h
    }
    
    // addDWARF adds DWARF information to the COFF file f.
    func (f *peFile) addDWARF() {
    	if *FlagS { // disable symbol table
    		return
    	}
    	if *FlagW { // disable dwarf
    		return
    	}
    	for _, sect := range Segdwarf.Sections {
    		h := f.addDWARFSection(sect.Name, int(sect.Length))
    		fileoff := sect.Vaddr - Segdwarf.Vaddr + Segdwarf.Fileoff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/bisect/bisect.go

    // enable and report. If a pattern is prefixed by a “!”, the meaning
    // changes: the pattern specifies the changes to DISABLE and report. This
    // mode of operation is needed when a program passes with all changes
    // enabled but fails with no changes enabled. In this case, bisect
    // searches for minimal sets of changes to disable.
    // Put another way, the leading “!” inverts the result from [Matcher.ShouldEnable]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/compile/internal/ir/func.go

    	// closure in a global variable initialization
    	funcIsHiddenClosure
    	funcIsDeadcodeClosure        // true if closure is deadcode
    	funcHasDefer                 // contains a defer statement
    	funcNilCheckDisabled         // disable nil checks when compiling this function
    	funcInlinabilityChecked      // inliner has already determined whether the function is inlinable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top