Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 65 for livable (0.11 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/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)
  5. 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)
  6. src/cmd/compile/internal/types2/infer.go

    // (incl. returned) to variables of function type and type
    // inference will attempt to infer the missing type arguments.
    // Available with go1.21.
    const enableReverseTypeInference = true // disable for debugging
    
    // infer attempts to infer the complete set of type arguments for generic function instantiation/call
    // based on the given type parameters tparams, type arguments targs, function parameters params, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  7. src/runtime/os_linux.go

    		mp.profileTimer = 0
    
    		ret := timer_delete(timerid)
    		if ret != 0 {
    			print("runtime: failed to disable profiling timer; timer_delete(", timerid, ") errno=", -ret, "\n")
    			throw("timer_delete")
    		}
    	}
    
    	if hz == 0 {
    		// If the goal was to disable profiling for this thread, then the job's done.
    		return
    	}
    
    	// The period of the timer should be 1/Hz. For every "1/Hz" of additional
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  8. src/internal/poll/fd_windows.go

    		}
    		err := syscall.SetFileCompletionNotificationModes(fd.Sysfd, flags)
    		if err == nil && flags&syscall.FILE_SKIP_COMPLETION_PORT_ON_SUCCESS != 0 {
    			fd.skipSyncNotif = true
    		}
    	}
    	// Disable SIO_UDP_CONNRESET behavior.
    	// http://support.microsoft.com/kb/263823
    	switch net {
    	case "udp", "udp4", "udp6":
    		ret := uint32(0)
    		flag := uint32(0)
    		size := uint32(unsafe.Sizeof(flag))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 16:50:42 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "StringLen", argLength: 1, typ: "Int"},     // len(arg0)
    
    	// Interfaces
    	{name: "IMake", argLength: 2},                // arg0=itab, arg1=data
    	{name: "ITab", argLength: 1, typ: "Uintptr"}, // arg0=interface, returns itable field
    	{name: "IData", argLength: 1},                // arg0=interface, returns data field
    
    	// Structs
    	{name: "StructMake0"},                              // Returns struct with 0 fields.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  10. src/net/http/clientserver_test.go

    //
    // Tests execute in HTTP/1.1 and HTTP/2 modes by default.
    // To run in a different set of configurations, pass a []testMode option.
    //
    // Tests call t.Parallel() by default.
    // To disable parallel execution, pass the testNotParallel option.
    func run[T TBRun[T]](t T, f func(t T, mode testMode), opts ...any) {
    	t.Helper()
    	modes := []testMode{http1Mode, http2Mode}
    	parallel := true
    	for _, opt := range opts {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
Back to top