Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for writable (0.22 sec)

  1. src/cmd/asm/internal/asm/testdata/arm64error.s

    	MSR	R6, AMEVTYPER02_EL0                              // ERROR "system register is not writable"
    	MSR	R6, AMEVTYPER03_EL0                              // ERROR "system register is not writable"
    	MSR	R6, AMEVTYPER04_EL0                              // ERROR "system register is not writable"
    	MSR	R6, AMEVTYPER05_EL0                              // ERROR "system register is not writable"
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 08 03:28:17 GMT 2023
    - 37.8K bytes
    - Viewed (0)
  2. api/go1.1.txt

    pkg syscall (openbsd-386), const IPV6_RECVPKTINFO = 36
    pkg syscall (openbsd-386), const IPV6_RECVRTHDR = 38
    pkg syscall (openbsd-386), const IPV6_RECVTCLASS = 57
    pkg syscall (openbsd-386), const IPV6_RTABLE = 4129
    pkg syscall (openbsd-386), const IPV6_RTHDR = 51
    pkg syscall (openbsd-386), const IPV6_RTHDRDSTOPTS = 35
    pkg syscall (openbsd-386), const IPV6_RTHDR_LOOSE = 0
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  3. doc/go_spec.html

    func SliceData(slice []ArbitraryType) *ArbitraryType
    func String(ptr *byte, len IntegerType) string
    func StringData(str string) *byte
    </pre>
    
    <!--
    These conversions also apply to type parameters with suitable core types.
    Determine if we can simply use core type instead of underlying type here,
    of if the general conversion rules take care of this.
    -->
    
    <p>
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  4. api/go1.2.txt

    pkg syscall (openbsd-386), const IPV6_RECVPKTINFO ideal-int
    pkg syscall (openbsd-386), const IPV6_RECVRTHDR ideal-int
    pkg syscall (openbsd-386), const IPV6_RECVTCLASS ideal-int
    pkg syscall (openbsd-386), const IPV6_RTABLE ideal-int
    pkg syscall (openbsd-386), const IPV6_RTHDR ideal-int
    pkg syscall (openbsd-386), const IPV6_RTHDRDSTOPTS ideal-int
    pkg syscall (openbsd-386), const IPV6_RTHDR_LOOSE ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
  5. lib/time/mkzip.go

    // license that can be found in the LICENSE file.
    
    //go:build ignore
    
    // Mkzip writes a zoneinfo.zip with the content of the current directory
    // and its subdirectories, with no compression, suitable for package time.
    //
    // Usage:
    //
    //	go run ../../mkzip.go ../../zoneinfo.zip
    //
    // We use this program instead of 'zip -0 -r ../../zoneinfo.zip *' to get
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Mar 04 17:32:07 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  6. misc/ios/README

    id and a provisioned bundle id to use. They're specified with the environment variables
    GOIOS_DEV_ID, GOIOS_TEAM_ID and GOIOS_APP_ID. The detect.go program in this directory will
    attempt to auto-detect suitable values. Run it as
    
    	go run detect.go
    
    which will output something similar to
    
    	export GOIOS_DEV_ID="iPhone Developer: ******@****.*** (XXXXXXXX)"
    	export GOIOS_APP_ID=YYYYYYYY.some.bundle.id
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Dec 29 21:49:26 GMT 2020
    - 2.7K bytes
    - Viewed (0)
  7. src/archive/tar/common.go

    	// This package transparently handles these types.
    	TypeGNULongName = 'L'
    	TypeGNULongLink = 'K'
    )
    
    // Keywords for PAX extended header records.
    const (
    	paxNone     = "" // Indicates that no PAX key is suitable
    	paxPath     = "path"
    	paxLinkpath = "linkpath"
    	paxSize     = "size"
    	paxUid      = "uid"
    	paxGid      = "gid"
    	paxUname    = "uname"
    	paxGname    = "gname"
    	paxMtime    = "mtime"
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 15 16:01:50 GMT 2024
    - 24.7K bytes
    - Viewed (2)
  8. misc/ios/go_ios_exec.go

    		return nil
    	}
    	// Some devices only give us an ImageSignature key.
    	if _, exists := dict["ImageSignature"]; exists {
    		return nil
    	}
    	// No image is mounted. Find a suitable image.
    	imgPath, err := findDevImage()
    	if err != nil {
    		return err
    	}
    	sigPath := imgPath + ".signature"
    	cmd = idevCmd(exec.Command("ideviceimagemounter", imgPath, sigPath))
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Apr 11 16:34:30 GMT 2022
    - 23.4K bytes
    - Viewed (0)
Back to top