Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 40 for mapLit (0.15 sec)

  1. src/cmd/link/internal/ld/main.go

    	FlagTextAddr      = flag.Int64("T", -1, "set the start address of text symbols")
    	flagEntrySymbol   = flag.String("E", "", "set `entry` symbol name")
    	flagPruneWeakMap  = flag.Bool("pruneweakmap", true, "prune weak mapinit refs")
    	flagRandLayout    = flag.Int64("randlayout", 0, "randomize function layout")
    	cpuprofile        = flag.String("cpuprofile", "", "write cpu profile to `file`")
    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/link/internal/ld/deadcode.go

    				}
    			}
    			d.markableMethods = append(d.markableMethods, methods...)
    		}
    	}
    }
    
    // mapinitcleanup walks all pkg init functions and looks for weak relocations
    // to mapinit symbols that are no longer reachable. It rewrites
    // the relocs to target a new no-op routine in the runtime.
    func (d *deadcodePass) mapinitcleanup() {
    	for _, idx := range d.pkginits {
    		relocs := d.ldr.Relocs(idx)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. src/syscall/zerrors_darwin_arm64.go

    	MAP_ANON                          = 0x1000
    	MAP_COPY                          = 0x2
    	MAP_FILE                          = 0x0
    	MAP_FIXED                         = 0x10
    	MAP_HASSEMAPHORE                  = 0x200
    	MAP_JIT                           = 0x800
    	MAP_NOCACHE                       = 0x400
    	MAP_NOEXTEND                      = 0x100
    	MAP_NORESERVE                     = 0x40
    	MAP_PRIVATE                       = 0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.8K bytes
    - Viewed (0)
  4. pkg/volume/testing/testing.go

    }
    
    type FakeVolumePathHandler struct {
    	sync.RWMutex
    }
    
    func (fv *FakeVolumePathHandler) MapDevice(devicePath string, mapDir string, linkName string, bindMount bool) error {
    	// nil is success, else error
    	return nil
    }
    
    func (fv *FakeVolumePathHandler) UnmapDevice(mapDir string, linkName string, bindMount bool) error {
    	// nil is success, else error
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. src/syscall/zerrors_darwin_amd64.go

    	MAP_ANON                          = 0x1000
    	MAP_COPY                          = 0x2
    	MAP_FILE                          = 0x0
    	MAP_FIXED                         = 0x10
    	MAP_HASSEMAPHORE                  = 0x200
    	MAP_JIT                           = 0x800
    	MAP_NOCACHE                       = 0x400
    	MAP_NOEXTEND                      = 0x100
    	MAP_NORESERVE                     = 0x40
    	MAP_PRIVATE                       = 0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/typecheck/expr.go

    			r := l.Key
    			r = Expr(r)
    			l.Key = AssignConv(r, t.Key(), "map key")
    
    			r = l.Value
    			r = Expr(r)
    			l.Value = AssignConv(r, t.Elem(), "map value")
    		}
    
    		n.SetOp(ir.OMAPLIT)
    
    	case types.TSTRUCT:
    		// Need valid field offsets for Xoffset below.
    		types.CalcSize(t)
    
    		errored := false
    		if len(n.List) != 0 && nokeys(n.List) {
    			// simple list of variables
    			ls := n.List
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go

    	MAP_COPY                                = 0x2
    	MAP_FILE                                = 0x0
    	MAP_FIXED                               = 0x10
    	MAP_HASSEMAPHORE                        = 0x200
    	MAP_JIT                                 = 0x800
    	MAP_NOCACHE                             = 0x400
    	MAP_NOEXTEND                            = 0x100
    	MAP_NORESERVE                           = 0x40
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 87.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/expr.go

    		n := n.(*ir.ConvExpr)
    		return walkStringToBytesTemp(n, init)
    
    	case ir.OSTR2RUNES:
    		n := n.(*ir.ConvExpr)
    		return walkStringToRunes(n, init)
    
    	case ir.OARRAYLIT, ir.OSLICELIT, ir.OMAPLIT, ir.OSTRUCTLIT, ir.OPTRLIT:
    		return walkCompLit(n, init)
    
    	case ir.OSEND:
    		n := n.(*ir.SendStmt)
    		return walkSend(n, init)
    
    	case ir.OCLOSURE:
    		return walkClosure(n.(*ir.ClosureExpr), init)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go

    	MAP_COPY                                = 0x2
    	MAP_FILE                                = 0x0
    	MAP_FIXED                               = 0x10
    	MAP_HASSEMAPHORE                        = 0x200
    	MAP_JIT                                 = 0x800
    	MAP_NOCACHE                             = 0x400
    	MAP_NOEXTEND                            = 0x100
    	MAP_NORESERVE                           = 0x40
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 87.5K bytes
    - Viewed (0)
  10. src/encoding/gob/doc.go

    description, constructed from these types:
    
    	type wireType struct {
    		ArrayT           *ArrayType
    		SliceT           *SliceType
    		StructT          *StructType
    		MapT             *MapType
    		GobEncoderT      *gobEncoderType
    		BinaryMarshalerT *gobEncoderType
    		TextMarshalerT   *gobEncoderType
    
    	}
    	type arrayType struct {
    		CommonType
    		Elem typeId
    		Len  int
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 17.1K bytes
    - Viewed (0)
Back to top