Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for private (0.26 sec)

  1. src/cmd/api/testdata/src/pkg/p1/p1.go

    type I interface {
    	Namer
    	ptwo.Twoer
    	Set(name string, balance int64)
    	// Deprecated: use GetNamed.
    	Get(string) int64
    	GetNamed(string) (balance int64)
    	private()
    }
    
    type Public interface {
    	X()
    	Y()
    }
    
    // Deprecated: Use Unexported.
    type Private interface {
    	X()
    	y()
    }
    
    type Error interface {
    	error
    	Temporary() bool
    }
    
    func (myInt) privateTypeMethod()           {}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:29:41 GMT 2022
    - 3.3K bytes
    - Viewed (0)
  2. .github/ISSUE_TEMPLATE/01-pkgsite.yml

          required: false
      - type: textarea
        id: what-did-you-do
        attributes:
          label: "What did you do?"
          description: "If possible, provide a recipe for reproducing the error. Starting with a Private/Incognito tab/window may help rule out problematic browser extensions."
        validations:
          required: true
      - type: textarea
        id: actual-behavior
        attributes:
          label: "What did you see happen?"
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Jan 04 23:31:17 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  3. api/go1.3.txt

    pkg syscall (netbsd-386), const MAP_INHERIT_SHARE ideal-int
    pkg syscall (netbsd-386), const MAP_NORESERVE = 64
    pkg syscall (netbsd-386), const MAP_NORESERVE ideal-int
    pkg syscall (netbsd-386), const MAP_PRIVATE = 2
    pkg syscall (netbsd-386), const MAP_PRIVATE ideal-int
    pkg syscall (netbsd-386), const MAP_RENAME = 32
    pkg syscall (netbsd-386), const MAP_RENAME ideal-int
    pkg syscall (netbsd-386), const MAP_SHARED = 1
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Jun 02 02:45:00 GMT 2014
    - 117K bytes
    - Viewed (0)
  4. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const MAP_PREFAULT_READ = 262144 #53466
    pkg syscall (freebsd-riscv64), const MAP_PREFAULT_READ ideal-int #53466
    pkg syscall (freebsd-riscv64), const MAP_PRIVATE = 2 #53466
    pkg syscall (freebsd-riscv64), const MAP_PRIVATE ideal-int #53466
    pkg syscall (freebsd-riscv64), const MAP_RENAME = 32 #53466
    pkg syscall (freebsd-riscv64), const MAP_RENAME ideal-int #53466
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  5. src/cmd/api/testdata/src/pkg/p1/golden.txt

    pkg p1, type I interface, unexported methods
    pkg p1, type MyInt int
    pkg p1, type Namer interface { Name }
    pkg p1, type Namer interface, Name() string
    pkg p1, type Private interface, X()
    pkg p1, type Private interface, unexported methods
    pkg p1, type Private //deprecated
    pkg p1, type Public interface { X, Y }
    pkg p1, type Public interface, X()
    pkg p1, type Public interface, Y()
    pkg p1, type S struct
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:29:41 GMT 2022
    - 3.6K bytes
    - Viewed (0)
  6. src/bytes/boundary_test.go

    func dangerousSlice(t *testing.T) []byte {
    	pagesize := syscall.Getpagesize()
    	b, err := syscall.Mmap(0, 0, 3*pagesize, syscall.PROT_READ|syscall.PROT_WRITE, syscall.MAP_ANONYMOUS|syscall.MAP_PRIVATE)
    	if err != nil {
    		t.Fatalf("mmap failed %s", err)
    	}
    	err = syscall.Mprotect(b[:pagesize], syscall.PROT_NONE)
    	if err != nil {
    		t.Fatalf("mprotect low failed %s\n", err)
    	}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 30 20:05:58 GMT 2023
    - 2.8K bytes
    - Viewed (0)
  7. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const MAP_NORESERVE = 64
    pkg syscall (netbsd-arm64-cgo), const MAP_NORESERVE ideal-int
    pkg syscall (netbsd-arm64-cgo), const MAP_PRIVATE = 2
    pkg syscall (netbsd-arm64-cgo), const MAP_PRIVATE ideal-int
    pkg syscall (netbsd-arm64-cgo), const MAP_RENAME = 32
    pkg syscall (netbsd-arm64-cgo), const MAP_RENAME ideal-int
    pkg syscall (netbsd-arm64-cgo), const MAP_SHARED = 1
    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)
  8. src/cmd/cgo/internal/swig/testdata/callback/main.h

    // license that can be found in the LICENSE file.
    
    class Callback {
    public:
    	virtual ~Callback() { }
    	virtual std::string run() { return "Callback::run"; }
    };
    
    class Caller {
    private:
    	Callback *callback_;
    public:
    	Caller(): callback_(0) { }
    	~Caller() { delCallback(); }
    	void delCallback() { delete callback_; callback_ = 0; }
    	void setCallback(Callback *cb) { delCallback(); callback_ = cb; }
    C
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri May 12 12:00:07 GMT 2023
    - 529 bytes
    - Viewed (0)
  9. api/go1.10.txt

    pkg debug/elf, const R_ARM_PRIVATE_4 R_ARM
    pkg debug/elf, const R_ARM_PRIVATE_5 = 117
    pkg debug/elf, const R_ARM_PRIVATE_5 R_ARM
    pkg debug/elf, const R_ARM_PRIVATE_6 = 118
    pkg debug/elf, const R_ARM_PRIVATE_6 R_ARM
    pkg debug/elf, const R_ARM_PRIVATE_7 = 119
    pkg debug/elf, const R_ARM_PRIVATE_7 R_ARM
    pkg debug/elf, const R_ARM_PRIVATE_8 = 120
    pkg debug/elf, const R_ARM_PRIVATE_8 R_ARM
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Feb 06 05:00:01 GMT 2018
    - 30.1K bytes
    - Viewed (0)
  10. api/go1.txt

    pkg syscall (darwin-386), const MAP_NOCACHE ideal-int
    pkg syscall (darwin-386), const MAP_NOEXTEND ideal-int
    pkg syscall (darwin-386), const MAP_NORESERVE ideal-int
    pkg syscall (darwin-386), const MAP_PRIVATE ideal-int
    pkg syscall (darwin-386), const MAP_RENAME ideal-int
    pkg syscall (darwin-386), const MAP_RESERVED0080 ideal-int
    pkg syscall (darwin-386), const MAP_SHARED ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
Back to top