Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 202 for livable (0.08 sec)

  1. 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)
  2. 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)
  3. src/cmd/link/internal/arm/obj.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 arm
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:32:19 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/internal/cpu/cpu_arm64_hwcap.go

    	ARM64.HasSHA512 = isSet(HWCap, hwcap_SHA512)
    
    	// The Samsung S9+ kernel reports support for atomics, but not all cores
    	// actually support them, resulting in SIGILL. See issue #28431.
    	// TODO(elias.naur): Only disable the optimization on bad chipsets on android.
    	ARM64.HasATOMICS = isSet(HWCap, hwcap_ATOMICS) && os != "android"
    
    	// Check to see if executing on a Neoverse core and in order to do that,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top