Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 983 for hand (0.06 sec)

  1. src/cmd/go/testdata/mod/rsc.io_needgo124_v0.0.1.txt

    rsc.io/needgo124 0.0.1
    written by hand
    
    -- .mod --
    module rsc.io/needgo124
    go 1.24
    
    -- go.mod --
    module rsc.io/needgo124
    go 1.24
    
    -- .info --
    {"Version":"v0.0.1"}
    -- p.go --
    package p
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 30 19:11:44 UTC 2023
    - 197 bytes
    - Viewed (0)
  2. test/fixedbugs/issue20813.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    func f() {
    	1 = 2 // ERROR "cannot assign to 1|invalid left hand side"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 14 17:37:52 UTC 2020
    - 259 bytes
    - Viewed (0)
  3. doc/next/6-stdlib/99-minor/go/types/66559.md

    The [Alias] type now has an [Rhs] method that returns the type on the
    right-hand side of its declaration: given `type A = B`, the `Rhs` of A
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:06:02 UTC 2024
    - 172 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/mod/rsc.io_badzip_v1.0.0.txt

    rsc.io/badzip v1.0.0
    written by hand
    
    -- .mod --
    module rsc.io/badzip
    -- .info --
    {"Version":"v1.0.0"}
    -- x.go --
    package x
    -- /rsc.io/******@****.*** --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 16 17:49:55 UTC 2018
    - 186 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/mod/rsc.io_badfile1_v1.0.0.txt

    rsc.io/badfile1 v1.0.0
    written by hand
    this is part of the badfile test but is a valid zip file.
    
    -- .mod --
    module rsc.io/badfile1
    -- .info --
    {"Version":"v1.0.0"}
    -- go.mod --
    module rsc.io/badfile1
    -- α.go --
    package α
    -- .gitignore --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 18 02:08:59 UTC 2018
    - 264 bytes
    - Viewed (0)
  6. src/runtime/defs_linux_arm64.go

    // Created by cgo -cdefs and converted (by hand) to Go
    // ../cmd/cgo/cgo -cdefs defs_linux.go defs1_linux.go defs2_linux.go
    
    package runtime
    
    import "unsafe"
    
    const (
    	_EINTR  = 0x4
    	_EAGAIN = 0xb
    	_ENOMEM = 0xc
    
    	_PROT_NONE  = 0x0
    	_PROT_READ  = 0x1
    	_PROT_WRITE = 0x2
    	_PROT_EXEC  = 0x4
    
    	_MAP_ANON    = 0x20
    	_MAP_PRIVATE = 0x2
    	_MAP_FIXED   = 0x10
    
    	_MADV_DONTNEED   = 0x4
    	_MADV_FREE       = 0x8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. src/runtime/pprof/defs_darwin_amd64.go

    package pprof
    
    type machVMRegionBasicInfoData struct {
    	Protection       int32
    	Max_protection   int32
    	Inheritance      uint32
    	Shared           uint32
    	Reserved         uint32
    	Offset           [8]byte // This is hand-edited since godefs generates: Pad_cgo_0 [8]byte. Cannot use uint64 due to alignment.
    	Behavior         int32
    	User_wired_count uint16
    	Pad_cgo_1        [2]byte
    }
    
    const (
    	_VM_PROT_READ    = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 23:35:39 UTC 2023
    - 609 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/example.com_generics_v1.0.0.txt

    example.com/generics v1.0.0
    written by hand
    
    -- .mod --
    module example.com/generics
    
    go 1.18
    -- .info --
    {"Version":"v1.0.0"}
    -- go.mod --
    module example.com/generics
    
    go 1.18
    -- generics.go --
    package generics
    
    type Int interface {
    	~int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 20:37:36 UTC 2022
    - 255 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/rsc.io_badfile5_v1.0.0.txt

    rsc.io/badfile5 v1.0.0
    written by hand
    
    -- .mod --
    module rsc.io/badfile5
    -- .info --
    {"Version":"v1.0.0"}
    -- go.mod --
    module rsc.io/badfile5
    -- x/y/z/w.go --
    package z
    -- x/Y/zz/ww.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 18 02:08:59 UTC 2018
    - 200 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/example.com_split_subpkg_v1.1.0.txt

    Written by hand.
    Test case for getting a package that has been moved to a different module.
    
    -- .mod --
    module example.com/split/subpkg
    
    require example.com/split v1.1.0
    -- .info --
    {"Version": "v1.1.0"}
    -- x.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 09 21:00:53 UTC 2018
    - 230 bytes
    - Viewed (0)
Back to top