Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 138 for my_all (0.12 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zptrace_mipsnnle_linux.go

    // Code generated by linux/mkall.go generatePtracePair("mipsle", "mips64le"). DO NOT EDIT.
    
    //go:build linux && (mipsle || mips64le)
    
    package unix
    
    import "unsafe"
    
    // PtraceRegsMipsle is the registers used by mipsle binaries.
    type PtraceRegsMipsle struct {
    	Regs     [32]uint64
    	Lo       uint64
    	Hi       uint64
    	Epc      uint64
    	Badvaddr uint64
    	Status   uint64
    	Cause    uint64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/mod/rsc.io_quote_v0.0.0-20180709162918-a91498bed0a7.txt

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package quote
    
    import (
    	"os"
    	"testing"
    )
    
    func init() {
    	os.Setenv("LC_ALL", "en")
    }
    
    func TestHello(t *testing.T) {
    	hello := "Hello, world."
    	if out := Hello(); out != hello {
    		t.Errorf("Hello() = %q, want %q", out, hello)
    	}
    }
    
    func TestGlass(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/mod/rsc.io_!q!u!o!t!e_v1.5.2.txt

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package QUOTE
    
    import (
    	"os"
    	"testing"
    )
    
    func init() {
    	os.Setenv("LC_ALL", "en")
    }
    
    func TestHELLO(t *testing.T) {
    	hello := "HELLO, WORLD"
    	if out := HELLO(); out != hello {
    		t.Errorf("HELLO() = %q, want %q", out, hello)
    	}
    }
    
    func TestGLASS(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 20 15:30:21 UTC 2018
    - 1.8K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/mod/rsc.io_!q!u!o!t!e_v1.5.3-!p!r!e.txt

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package QUOTE
    
    import (
    	"os"
    	"testing"
    )
    
    func init() {
    	os.Setenv("LC_ALL", "en")
    }
    
    func TestHELLO(t *testing.T) {
    	hello := "HELLO, WORLD"
    	if out := HELLO(); out != hello {
    		t.Errorf("HELLO() = %q, want %q", out, hello)
    	}
    }
    
    func TestGLASS(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 20 15:30:21 UTC 2018
    - 1.8K bytes
    - Viewed (0)
  5. src/runtime/tls_mips64x.s

    // license that can be found in the LICENSE file.
    
    //go:build mips64 || mips64le
    
    #include "go_asm.h"
    #include "go_tls.h"
    #include "funcdata.h"
    #include "textflag.h"
    
    // If !iscgo, this is a no-op.
    //
    // NOTE: mcall() assumes this clobbers only R23 (REGTMP).
    TEXT runtime·save_g(SB),NOSPLIT|NOFRAME,$0-0
    	MOVB	runtime·iscgo(SB), R23
    	BEQ	R23, nocgo
    
    	MOVV	R3, R23	// save R3
    	MOVV	g, runtime·tls_g(SB) // TLS relocation clobbers R3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 733 bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/README.md

    and have each OS upgrade correspond to a single change.
    
    To build the files for your current OS and architecture, make sure GOOS and
    GOARCH are set correctly and run `mkall.sh`. This will generate the files for
    your specific system. Running `mkall.sh -n` shows the commands that will be run.
    
    Requirements: bash, go
    
    ### New Build System (currently for `GOOS == "linux"`)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 06 14:32:58 UTC 2021
    - 8.5K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/mod/rsc.io_quote_v0.0.0-20180710144737-5d9f230bcfba.txt

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package quote
    
    import (
    	"os"
    	"testing"
    )
    
    func init() {
    	os.Setenv("LC_ALL", "en")
    }
    
    func TestHello(t *testing.T) {
    	hello := "Hello, world."
    	if out := Hello(); out != hello {
    		t.Errorf("Hello() = %q, want %q", out, hello)
    	}
    }
    
    func TestGlass(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/rsc.io_quote_v1.5.3-pre1.txt

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package quote
    
    import (
    	"os"
    	"testing"
    )
    
    func init() {
    	os.Setenv("LC_ALL", "en")
    }
    
    func TestHello(t *testing.T) {
    	hello := "Hello, world."
    	if out := Hello(); out != hello {
    		t.Errorf("Hello() = %q, want %q", out, hello)
    	}
    }
    
    func TestGlass(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  9. src/cmd/internal/objabi/funcid.go

    	"goexit":             abi.FuncID_goexit,
    	"gogo":               abi.FuncID_gogo,
    	"gopanic":            abi.FuncID_gopanic,
    	"handleAsyncEvent":   abi.FuncID_handleAsyncEvent,
    	"main":               abi.FuncID_runtime_main,
    	"mcall":              abi.FuncID_mcall,
    	"morestack":          abi.FuncID_morestack,
    	"mstart":             abi.FuncID_mstart,
    	"panicwrap":          abi.FuncID_panicwrap,
    	"runfinq":            abi.FuncID_runfinq,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 21:33:59 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zptrace_mipsnn_linux.go

    // Code generated by linux/mkall.go generatePtracePair("mips", "mips64"). DO NOT EDIT.
    
    //go:build linux && (mips || mips64)
    
    package unix
    
    import "unsafe"
    
    // PtraceRegsMips is the registers used by mips binaries.
    type PtraceRegsMips struct {
    	Regs     [32]uint64
    	Lo       uint64
    	Hi       uint64
    	Epc      uint64
    	Badvaddr uint64
    	Status   uint64
    	Cause    uint64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top