Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for prod (0.26 sec)

  1. api/go1.3.txt

    pkg syscall (netbsd-386), const PROT_EXEC = 4
    pkg syscall (netbsd-386), const PROT_EXEC ideal-int
    pkg syscall (netbsd-386), const PROT_NONE = 0
    pkg syscall (netbsd-386), const PROT_NONE ideal-int
    pkg syscall (netbsd-386), const PROT_READ = 1
    pkg syscall (netbsd-386), const PROT_READ ideal-int
    pkg syscall (netbsd-386), const PROT_WRITE = 2
    pkg syscall (netbsd-386), const PROT_WRITE ideal-int
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Jun 02 02:45:00 GMT 2014
    - 117K bytes
    - Viewed (0)
  2. src/cmd/cgo/ast.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Parse input AST and prepare Prog structure.
    
    package main
    
    import (
    	"fmt"
    	"go/ast"
    	"go/format"
    	"go/parser"
    	"go/scanner"
    	"go/token"
    	"os"
    	"strings"
    )
    
    func parse(name string, src []byte, flags parser.Mode) *ast.File {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Jun 07 16:54:27 GMT 2023
    - 14.3K bytes
    - Viewed (0)
  3. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const PROT_EXEC = 4
    pkg syscall (netbsd-arm64-cgo), const PROT_EXEC ideal-int
    pkg syscall (netbsd-arm64-cgo), const PROT_NONE = 0
    pkg syscall (netbsd-arm64-cgo), const PROT_NONE ideal-int
    pkg syscall (netbsd-arm64-cgo), const PROT_READ = 1
    pkg syscall (netbsd-arm64-cgo), const PROT_READ ideal-int
    pkg syscall (netbsd-arm64-cgo), const PROT_WRITE = 2
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  4. src/bytes/boundary_test.go

    	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)
    	}
    	err = syscall.Mprotect(b[2*pagesize:], syscall.PROT_NONE)
    	if err != nil {
    		t.Fatalf("mprotect high failed %s\n", err)
    	}
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Nov 30 20:05:58 GMT 2023
    - 2.8K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/test/buildid_linux.go

    // one.
    
    import (
    	"bytes"
    	"debug/elf"
    	"os"
    	"testing"
    )
    
    func testBuildID(t *testing.T) {
    	f, err := elf.Open("/proc/self/exe")
    	if err != nil {
    		if os.IsNotExist(err) {
    			t.Skip("no /proc/self/exe")
    		}
    		t.Fatal("opening /proc/self/exe: ", err)
    	}
    	defer f.Close()
    
    	c := 0
    sections:
    	for i, s := range f.Sections {
    		if s.Type != elf.SHT_NOTE {
    			continue
    		}
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri May 12 12:00:02 GMT 2023
    - 1.7K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/arch/arm.go

    func ARMConditionCodes(prog *obj.Prog, cond string) bool {
    	if cond == "" {
    		return true
    	}
    	bits, ok := ParseARMCondition(cond)
    	if !ok {
    		return false
    	}
    	/* hack to make B.NE etc. work: turn it into the corresponding conditional */
    	if prog.As == arm.AB {
    		prog.As = bcode[(bits^arm.C_SCOND_XOR)&0xf]
    		bits = (bits &^ 0xf) | arm.C_SCOND_NONE
    	}
    	prog.Scond = bits
    	return true
    }
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Nov 18 17:59:44 GMT 2022
    - 6.1K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/issue1435.go

    	expected := filter + expect
    	pid := syscall.Getpid()
    	fs, err := os.ReadDir(fmt.Sprintf("/proc/%d/task", pid))
    	if err != nil {
    		return fmt.Errorf("unable to find %d tasks: %v", pid, err)
    	}
    	expectedProc := fmt.Sprintf("Pid:\t%d", pid)
    	foundAThread := false
    	for _, f := range fs {
    		tf := fmt.Sprintf("/proc/%s/status", f.Name())
    		d, err := os.ReadFile(tf)
    		if err != nil {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Jul 28 21:31:41 GMT 2023
    - 7.5K bytes
    - Viewed (0)
  8. api/go1.txt

    pkg syscall (windows-386), const PROV_INTEL_SEC ideal-int
    pkg syscall (windows-386), const PROV_MS_EXCHANGE ideal-int
    pkg syscall (windows-386), const PROV_REPLACE_OWF ideal-int
    pkg syscall (windows-386), const PROV_RNG ideal-int
    pkg syscall (windows-386), const PROV_RSA_AES ideal-int
    pkg syscall (windows-386), const PROV_RSA_FULL ideal-int
    pkg syscall (windows-386), const PROV_RSA_SCHANNEL ideal-int
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  9. api/go1.16.txt

    pkg syscall (darwin-arm64), const PROT_EXEC = 4
    pkg syscall (darwin-arm64), const PROT_EXEC ideal-int
    pkg syscall (darwin-arm64), const PROT_NONE = 0
    pkg syscall (darwin-arm64), const PROT_NONE ideal-int
    pkg syscall (darwin-arm64), const PROT_READ = 1
    pkg syscall (darwin-arm64), const PROT_READ ideal-int
    pkg syscall (darwin-arm64), const PROT_WRITE = 2
    pkg syscall (darwin-arm64), const PROT_WRITE ideal-int
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  10. api/go1.14.txt

    pkg syscall (freebsd-arm64), const PROT_EXEC = 4
    pkg syscall (freebsd-arm64), const PROT_EXEC ideal-int
    pkg syscall (freebsd-arm64), const PROT_NONE = 0
    pkg syscall (freebsd-arm64), const PROT_NONE ideal-int
    pkg syscall (freebsd-arm64), const PROT_READ = 1
    pkg syscall (freebsd-arm64), const PROT_READ ideal-int
    pkg syscall (freebsd-arm64), const PROT_WRITE = 2
    pkg syscall (freebsd-arm64), const PROT_WRITE ideal-int
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
Back to top