Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 215 for livable (0.09 sec)

  1. 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)
  2. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    	)
    	for i, a := range inst.Args {
    		if a == nil {
    			break
    		}
    		switch inst.Op {
    		case MOVSB, MOVSW, MOVSD, MOVSQ, OUTSB, OUTSW, OUTSD:
    			if i == 0 {
    				usedPrefixes = true // disable use of prefixes for first argument
    			} else {
    				usedPrefixes = false
    			}
    		}
    		if a == Imm(1) && (inst.Opcode>>24)&^1 == 0xD0 {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/dwarf.go

    	if *FlagW { // disable dwarf
    		return
    	}
    
    	secs := []string{"abbrev", "frame", "info", "loc", "line", "gdb_scripts", "ranges"}
    	for _, sec := range secs {
    		add(".debug_" + sec)
    		if ctxt.IsExternal() {
    			add(elfRelType + ".debug_" + sec)
    		}
    	}
    }
    
    func dwarfaddelfsectionsyms(ctxt *Link) {
    	if *FlagW { // disable dwarf
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  4. src/go/build/build_test.go

    // no go.mod file is present. It should fail to resolve packages outside std.
    // Verifies golang.org/issue/34669.
    func TestImportPackageOutsideModule(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    
    	// Disable module fetching for this test so that 'go list' fails quickly
    	// without trying to find the latest version of a module.
    	t.Setenv("GOPROXY", "off")
    
    	// Create a GOPATH in a temporary directory. We don't use testdata
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/vet/testdata/print/print.go

    	fmt.Printf("%s", []stringer{3, 4})  // not an error
    	fmt.Printf("%s", [2]stringer{3, 4}) // not an error
    }
    
    // TODO: Disable complaint about '0' for Go 1.10. To be fixed properly in 1.11.
    // See issues 23598 and 23605.
    func DisableErrorForFlag0() {
    	fmt.Printf("%0t", true)
    }
    
    // Issue 26486.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 27.5K bytes
    - Viewed (0)
  7. src/runtime/sigqueue_plan9.go

    //
    //go:linkname signal_enable os/signal.signal_enable
    func signal_enable(s uint32) {
    	if !sig.inuse {
    		// This is the first call to signal_enable. Initialize.
    		sig.inuse = true // enable reception of signals; cannot disable
    		noteclear(&sig.note)
    	}
    }
    
    // Must only be called from a single goroutine at a time.
    //
    //go:linkname signal_disable os/signal.signal_disable
    func signal_disable(s uint32) {
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/internal/obj/pass.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 obj
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. 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)
Back to top