Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 136 for pcflags (0.12 sec)

  1. src/runtime/libfuzzer.go

    	start := unsafe.Pointer(&__start___sancov_cntrs)
    	end := unsafe.Pointer(&__stop___sancov_cntrs)
    
    	// PC tables are arrays of ptr-sized integers representing pairs [PC,PCFlags] for every instrumented block.
    	// The number of PCs and PCFlags is the same as the number of 8-bit counters. Each PC table entry has
    	// the size of two ptr-sized integers. We allocate one more byte than what we actually need so that we can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 23 01:12:02 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/ntlmssp/av/AvFlags.java

    /**
     * @author mbechler
     *
     */
    public class AvFlags extends AvPair {
    
        /**
         * @param raw
         */
        public AvFlags ( byte[] raw ) {
            super(AvPair.MsvAvFlags, raw);
        }
    
    
        /**
         * 
         * @param flags
         */
        public AvFlags ( int flags ) {
            this(encode(flags));
        }
    
    
        /**
         * 
         * @return flags
         */
        public int getFlags () {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/flag_test.go

    			{path: "net", flags: []string{}},
    		},
    	},
    
    	// -gcflags=net/...=-S net math
    	// applies -S to net and net/http but not math
    	{
    		args: []string{"net/...=-S"},
    		pkgs: []ppfTestPackage{
    			{path: "net", flags: []string{"-S"}},
    			{path: "net/http", flags: []string{"-S"}},
    			{path: "math", flags: []string{}},
    		},
    	},
    
    	// -gcflags=net/...=-S -gcflags=-m net math
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 15:04:04 UTC 2017
    - 3.9K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testerrors/errors_test.go

    }
    
    func TestToleratesOptimizationFlag(t *testing.T) {
    	for _, cflags := range []string{
    		"",
    		"-O",
    	} {
    		cflags := cflags
    		t.Run(cflags, func(t *testing.T) {
    			testenv.MustHaveGoBuild(t)
    			testenv.MustHaveCGO(t)
    			t.Parallel()
    
    			cmd := exec.Command("go", "build", path("issue14669.go"))
    			cmd.Env = append(os.Environ(), "CGO_CFLAGS="+cflags)
    			out, err := cmd.CombinedOutput()
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. src/runtime/cgo/cgo.go

    */
    package cgo
    
    /*
    
    #cgo darwin,!arm64 LDFLAGS: -lpthread
    #cgo darwin,arm64 LDFLAGS: -framework CoreFoundation
    #cgo dragonfly LDFLAGS: -lpthread
    #cgo freebsd LDFLAGS: -lpthread
    #cgo android LDFLAGS: -llog
    #cgo !android,linux LDFLAGS: -lpthread
    #cgo netbsd LDFLAGS: -lpthread
    #cgo openbsd LDFLAGS: -lpthread
    #cgo aix LDFLAGS: -Wl,-berok
    #cgo solaris LDFLAGS: -lxnet
    #cgo solaris LDFLAGS: -lsocket
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 14:29:46 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. src/runtime/vdso_elf64.go

    	e_shnum     uint16           /* Section header table entry count */
    	e_shstrndx  uint16           /* Section header string table index */
    }
    
    type elfPhdr struct {
    	p_type   uint32 /* Segment type */
    	p_flags  uint32 /* Segment flags */
    	p_offset uint64 /* Segment file offset */
    	p_vaddr  uint64 /* Segment virtual address */
    	p_paddr  uint64 /* Segment physical address */
    	p_filesz uint64 /* Segment size in file */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 19:32:35 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  7. src/runtime/vdso_elf32.go

    	p_filesz uint32 /* Segment size in file */
    	p_memsz  uint32 /* Segment size in memory */
    	p_flags  uint32 /* Segment flags */
    	p_align  uint32 /* Segment alignment */
    }
    
    type elfShdr struct {
    	sh_name      uint32 /* Section name (string tbl index) */
    	sh_type      uint32 /* Section type */
    	sh_flags     uint32 /* Section flags */
    	sh_addr      uint32 /* Section virtual addr at execution */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/gcflags_patterns.txt

    [!compiler:gc] skip 'using -gcflags and -ldflags'
    [short] skip
    
    # -gcflags=-e applies to named packages, not dependencies
    go build -a -n -v -gcflags=-e z1 z2
    stderr 'compile.* -p z1.* -e '
    stderr 'compile.* -p z2.* -e '
    stderr 'compile.* -p y'
    ! stderr 'compile.* -p [^z].* -e '
    
    # -gcflags can specify package=flags, and can be repeated; last match wins
    go build -a -n -v -gcflags=-e -gcflags=z1=-N z1 z2
    stderr 'compile.* -p z1.* -N '
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 21 14:58:44 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. src/runtime/cpuflags.go

    Martin Möhrmann <******@****.***> 1629711291 +0200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 23 21:22:58 UTC 2021
    - 810 bytes
    - Viewed (0)
  10. src/cmd/go/internal/base/goflags.go

    	"cmd/internal/quoted"
    )
    
    var goflags []string // cached $GOFLAGS list; can be -x or --x form
    
    // GOFLAGS returns the flags from $GOFLAGS.
    // The list can be assumed to contain one string per flag,
    // with each string either beginning with -name or --name.
    func GOFLAGS() []string {
    	InitGOFLAGS()
    	return goflags
    }
    
    // InitGOFLAGS initializes the goflags list from $GOFLAGS.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 14:42:39 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top