Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 175 for aranes (0.36 sec)

  1. src/main/webapp/css/admin/fonts/fa-brands-400.woff2

    Shinsuke Sugaya <******@****.***> 1576358545 +0900
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 74.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/gccgo.go

    	var absOfiles []string
    	for _, f := range ofiles {
    		absOfiles = append(absOfiles, mkAbs(objdir, f))
    	}
    	var arArgs []string
    	if cfg.Goos == "aix" && cfg.Goarch == "ppc64" {
    		// AIX puts both 32-bit and 64-bit objects in the same archive.
    		// Tell the AIX "ar" command to only care about 64-bit objects.
    		arArgs = []string{"-X64"}
    	}
    	absAfile := mkAbs(objdir, afile)
    	// Try with D modifier first, then without if that fails.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. src/runtime/malloc.go

    // themselves allocated off-heap.
    //
    // Since arenas are aligned, the address space can be viewed as a
    // series of arena frames. The arena map (mheap_.arenas) maps from
    // arena frame number to *heapArena, or nil for parts of the address
    // space not backed by the Go heap. The arena map is structured as a
    // two-level array consisting of a "L1" arena map and many "L2" arena
    // maps; however, since arenas are large, on many architectures, the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/stringer.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build ignore
    
    // This is a mini version of the stringer tool customized for the Anames table
    // in the architecture support for obj.
    // This version just generates the slice of strings, not the String method.
    
    package main
    
    import (
    	"bufio"
    	"flag"
    	"fmt"
    	"log"
    	"os"
    	"regexp"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. src/runtime/mheap.go

    	// map and possibly many L2 maps. This saves space when there
    	// are a huge number of arena frames. However, on many
    	// platforms (even 64-bit), arenaL1Bits is 0, making this
    	// effectively a single-level map. In this case, arenas[0]
    	// will never be nil.
    	arenas [1 << arenaL1Bits]*[1 << arenaL2Bits]*heapArena
    
    	// arenasHugePages indicates whether arenas' L2 entries are eligible
    	// to be backed by huge pages.
    	arenasHugePages bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  6. src/debug/dwarf/entry_test.go

    			}
    			ranges, err := d.Ranges(entry)
    			if err != nil {
    				t.Errorf("%s: subprogram %d: %v", test.filename, i, err)
    				continue
    			}
    			if !reflect.DeepEqual(ranges, subprograms[i].ranges) {
    				t.Errorf("%s: subprogram %d ranges are %x, expected %x", test.filename, i, ranges, subprograms[i].ranges)
    			}
    			i++
    		}
    
    		if i < len(subprograms) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/util.go

    // to a given instruction number range.
    func RegisterOpcode(lo As, Anames []string) {
    	if len(Anames) > AllowedOpCodes {
    		panic(fmt.Sprintf("too many instructions, have %d max %d", len(Anames), AllowedOpCodes))
    	}
    	aSpace = append(aSpace, opSet{lo, Anames})
    }
    
    func (a As) String() string {
    	if 0 <= a && int(a) < len(Anames) {
    		return Anames[a]
    	}
    	for i := range aSpace {
    		as := &aSpace[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/loong64/list.go

    package loong64
    
    import (
    	"cmd/internal/obj"
    	"fmt"
    )
    
    func init() {
    	obj.RegisterRegister(obj.RBaseLOONG64, REG_LAST+1, rconv)
    	obj.RegisterOpcode(obj.ABaseLoong64, Anames)
    }
    
    func rconv(r int) string {
    	if r == 0 {
    		return "NONE"
    	}
    	if r == REGG {
    		// Special case.
    		return "g"
    	}
    	if REG_R0 <= r && r <= REG_R31 {
    		return fmt.Sprintf("R%d", r-REG_R0)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 11 20:11:34 UTC 2022
    - 931 bytes
    - Viewed (0)
  9. test/fixedbugs/issue6977.go

    // errorcheck
    
    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    import "io"
    
    // Alan's initial report.
    
    type I interface { f(); String() string }
    type J interface { g(); String() string }
    
    type IJ1 = interface { I; J }
    type IJ2 = interface { f(); g(); String() string }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 03 20:30:02 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  10. src/runtime/mcheckmark.go

    //
    // The world must be stopped.
    func startCheckmarks() {
    	assertWorldStopped()
    
    	// Clear all checkmarks.
    	for _, ai := range mheap_.allArenas {
    		arena := mheap_.arenas[ai.l1()][ai.l2()]
    		bitmap := arena.checkmarks
    
    		if bitmap == nil {
    			// Allocate bitmap on first use.
    			bitmap = (*checkmarksMap)(persistentalloc(unsafe.Sizeof(*bitmap), 0, &memstats.gcMiscSys))
    			if bitmap == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top