Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Alan (0.24 sec)

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

    	LAA	R1, R2, 524287(R3)    // eb213fff7ff8
    	LAAG	R4, R5, -524288(R6)   // eb54600080e8
    	LAAL	R7, R8, 8192(R9)      // eb87900002fa
    	LAALG	R10, R11, -8192(R12)  // ebbac000feea
    	LAN	R1, R2, (R3)          // eb21300000f4
    	LANG	R4, R5, (R6)          // eb54600000e4
    	LAX	R7, R8, (R9)          // eb87900000f7
    	LAXG	R10, R11, (R12)       // ebbac00000e7
    	LAO	R1, R2, (R3)          // eb21300000f6
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Nov 22 03:55:32 GMT 2023
    - 21.6K bytes
    - Viewed (0)
  2. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const ETHERCAP_JUMBO_MTU ideal-int
    pkg syscall (netbsd-arm64-cgo), const ETHERCAP_VLAN_HWTAGGING = 2
    pkg syscall (netbsd-arm64-cgo), const ETHERCAP_VLAN_HWTAGGING ideal-int
    pkg syscall (netbsd-arm64-cgo), const ETHERCAP_VLAN_MTU = 1
    pkg syscall (netbsd-arm64-cgo), const ETHERCAP_VLAN_MTU ideal-int
    pkg syscall (netbsd-arm64-cgo), const ETHER_CRC_LEN = 4
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/lex/input.go

    				break
    			}
    		}
    		if err != nil {
    			in.Error("#include:", err)
    		}
    	}
    	in.Push(NewTokenizer(name, fd, fd))
    }
    
    // #line processing.
    func (in *Input) line() {
    	// Only need to handle Plan 9 format: #line 337 "filename"
    	tok := in.Stack.Next()
    	if tok != scanner.Int {
    		in.expectText("expected line number after #line")
    	}
    	line, err := strconv.Atoi(in.Stack.Text())
    	if err != nil {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 29 07:48:38 GMT 2023
    - 12.6K bytes
    - Viewed (0)
  4. api/go1.1.txt

    pkg syscall (netbsd-386), const ESRCH = 3
    pkg syscall (netbsd-386), const ESTALE = 70
    pkg syscall (netbsd-386), const ETHERCAP_JUMBO_MTU = 4
    pkg syscall (netbsd-386), const ETHERCAP_VLAN_HWTAGGING = 2
    pkg syscall (netbsd-386), const ETHERCAP_VLAN_MTU = 1
    pkg syscall (netbsd-386), const ETHERMIN = 46
    pkg syscall (netbsd-386), const ETHERMTU = 1500
    pkg syscall (netbsd-386), const ETHERMTU_JUMBO = 9000
    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)
  5. api/go1.2.txt

    pkg syscall (netbsd-386), const ERPCMISMATCH Errno
    pkg syscall (netbsd-386), const ETHERCAP_JUMBO_MTU ideal-int
    pkg syscall (netbsd-386), const ETHERCAP_VLAN_HWTAGGING ideal-int
    pkg syscall (netbsd-386), const ETHERCAP_VLAN_MTU ideal-int
    pkg syscall (netbsd-386), const ETHERMIN ideal-int
    pkg syscall (netbsd-386), const ETHERMTU ideal-int
    pkg syscall (netbsd-386), const ETHERMTU_JUMBO 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)
  6. doc/godebug.md

    restores the installation and use of preinstalled `.a` files.
    
    There is no plan to remove any of these settings.
    
    ### Go 1.19
    
    Go 1.19 made it an error for path lookups to resolve to binaries in the current directory,
    controlled by the [`execerrdot` setting](/pkg/os/exec#hdr-Executables_in_the_current_directory).
    There is no plan to remove this setting.
    
    ### Go 1.18
    
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 16 17:29:58 GMT 2024
    - 13.5K bytes
    - Viewed (0)
  7. .github/ISSUE_TEMPLATE/12-telemetry.yml

    - type: textarea
      attributes:
        label: Do the counters carry sensitive user information?
      validations:
        required: true
    - type: textarea
      attributes:
        label: How?
        description: |
          How do we plan to compute the info?
          If available, include the code location or cl that uses the golang.org/x/telemetry/counter API.
      validations:
        required: true
    - type: textarea
      attributes:
        label: Proposed Graph Config
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Nov 27 17:23:51 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  8. src/bytes/example_test.go

    	fmt.Printf("%q\n", bytes.Split([]byte("a,b,c"), []byte(",")))
    	fmt.Printf("%q\n", bytes.Split([]byte("a man a plan a canal panama"), []byte("a ")))
    	fmt.Printf("%q\n", bytes.Split([]byte(" xyz "), []byte("")))
    	fmt.Printf("%q\n", bytes.Split([]byte(""), []byte("Bernardo O'Higgins")))
    	// Output:
    	// ["a" "b" "c"]
    	// ["" "man " "plan " "canal panama"]
    	// [" " "x" "y" "z" " "]
    	// [""]
    }
    
    func ExampleSplitN() {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Mar 04 15:54:40 GMT 2024
    - 15K bytes
    - Viewed (1)
  9. doc/asm.html

    The document is not comprehensive.
    </p>
    
    <p>
    The assembler is based on the input style of the Plan 9 assemblers, which is documented in detail
    <a href="https://9p.io/sys/doc/asm.html">elsewhere</a>.
    If you plan to write assembly language, you should read that document although much of it is Plan 9-specific.
    The current document provides a summary of the syntax and the differences with
    what is explained in that document, and
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  10. api/go1.4.txt

    pkg syscall (windows-amd64), const SIO_UDP_CONNRESET = 2550136844
    pkg syscall (windows-amd64), const SIO_UDP_CONNRESET ideal-int
    
    # CL 102320044 syscall: implement syscall.Getppid() on Windows, Alan Shreve <alan@inconshreveable.com>
    pkg syscall (windows-386), const TH32CS_INHERIT = 2147483648
    pkg syscall (windows-386), const TH32CS_INHERIT ideal-int
    pkg syscall (windows-386), const TH32CS_SNAPALL = 15
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 12 03:01:01 GMT 2014
    - 34K bytes
    - Viewed (0)
Back to top