Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 175 for aranes (0.2 sec)

  1. src/debug/elf/testdata/go-relocation-test-gcc930-ranges-with-rela-x86-64

    Victor Michel <******@****.***> 1598820219 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 31 18:42:38 UTC 2020
    - 7.5K bytes
    - Viewed (0)
  2. src/sync/cond.go

    // which must be held when changing the condition and
    // when calling the [Cond.Wait] method.
    //
    // A Cond must not be copied after first use.
    //
    // In the terminology of [the Go memory model], Cond arranges that
    // a call to [Cond.Broadcast] or [Cond.Signal] “synchronizes before” any Wait call
    // that it unblocks.
    //
    // For many simple use cases, users will be better off using channels than a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. src/runtime/heapdump.go

    	} else {
    		dumpbool(true) // big-endian ptrs
    	}
    	dumpint(goarch.PtrSize)
    	var arenaStart, arenaEnd uintptr
    	for i1 := range mheap_.arenas {
    		if mheap_.arenas[i1] == nil {
    			continue
    		}
    		for i, ha := range mheap_.arenas[i1] {
    			if ha == nil {
    				continue
    			}
    			base := arenaBase(arenaIdx(i1)<<arenaL1Shift | arenaIdx(i))
    			if arenaStart == 0 || base < arenaStart {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. src/debug/buildinfo/buildinfo.go

    	case bytes.HasPrefix(ident, []byte("\xCA\xFE\xBA\xBE")) || bytes.HasPrefix(ident, []byte("\xCA\xFE\xBA\xBF")):
    		f, err := macho.NewFatFile(r)
    		if err != nil || len(f.Arches) == 0 {
    			return "", "", errUnrecognizedFormat
    		}
    		x = &machoExe{f.Arches[0].File}
    	case bytes.HasPrefix(ident, []byte{0x01, 0xDF}) || bytes.HasPrefix(ident, []byte{0x01, 0xF7}):
    		f, err := xcoff.NewFile(r)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm64/list7.go

    	"VS",
    	"VC",
    	"HI",
    	"LS",
    	"GE",
    	"LT",
    	"GT",
    	"LE",
    	"AL",
    	"NV",
    }
    
    func init() {
    	obj.RegisterRegister(obj.RBaseARM64, REG_SPECIAL+1024, rconv)
    	obj.RegisterOpcode(obj.ABaseARM64, Anames)
    	obj.RegisterRegisterList(obj.RegListARM64Lo, obj.RegListARM64Hi, rlconv)
    	obj.RegisterOpSuffix("arm64", obj.CConvARM)
    	obj.RegisterSpecialOperands(int64(SPOP_BEGIN), int64(SPOP_END), SPCconv)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. docs/pt/docs/project-generation.md

    * Fácil integração com Python através dos **Kernels Jupyter** para desenvolvimento remoto ou no Docker com extensões como Atom Hydrogen ou Visual Studio Code Jupyter.
    * _Frontend_ **Vue**:
        * Gerado com Vue CLI.
        * Controle de **Autenticação JWT**.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Oct 17 05:50:32 UTC 2020
    - 6.3K bytes
    - Viewed (0)
  7. src/runtime/mpagealloc.go

    	assertLockHeld(p.mheapLock)
    
    	// If we're not in a test, validate first by checking mheap_.arenas.
    	// This is a fast path which is only safe to use outside of testing.
    	ai := arenaIndex(addr.addr())
    	if p.test || mheap_.arenas[ai.l1()] == nil || mheap_.arenas[ai.l1()][ai.l2()] == nil {
    		vAddr, ok := p.inUse.findAddrGreaterEqual(addr.addr())
    		if ok {
    			return offAddr{vAddr}
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/internal/upload/run.go

    		return fmt.Errorf("reports failed: %v", err)
    	}
    	u.logger.Printf("Uploading %d reports", len(ready))
    	for _, f := range ready {
    		u.uploadReport(f)
    	}
    	return nil
    }
    
    // debugLogFile arranges to write a log file in the given debug directory, if
    // it exists.
    func debugLogFile(debugDir string) (*os.File, error) {
    	fd, err := os.Stat(debugDir)
    	if os.IsNotExist(err) {
    		return nil, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. src/internal/xcoff/xcoff.go

    	SSUBTYP_DWPBTYP = 0x40000 // DWARF public types section
    	SSUBTYP_DWARNGE = 0x50000 // DWARF aranges section
    	SSUBTYP_DWABREV = 0x60000 // DWARF abbreviation section
    	SSUBTYP_DWSTR   = 0x70000 // DWARF strings section
    	SSUBTYP_DWRNGES = 0x80000 // DWARF ranges section
    	SSUBTYP_DWLOC   = 0x90000 // DWARF location lists section
    	SSUBTYP_DWFRAME = 0xA0000 // DWARF frames section
    	SSUBTYP_DWMAC   = 0xB0000 // DWARF macros section
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:36:37 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/mips/a.out.go

    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package mips
    
    import (
    	"cmd/internal/obj"
    )
    
    //go:generate go run ../stringer.go -i $GOFILE -o anames.go -p mips
    
    /*
     * mips 64
     */
    const (
    	NSNAME = 8
    	NSYM   = 50
    	NREG   = 32 /* number of general registers */
    	NFREG  = 32 /* number of floating point registers */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 7.6K bytes
    - Viewed (0)
Back to top