Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for asan (0.04 sec)

  1. src/cmd/go/alldocs.go

    //		linux/ppc64le and linux/arm64 (only for 48-bit VMA).
    //	-msan
    //		enable interoperation with memory sanitizer.
    //		Supported only on linux/amd64, linux/arm64, linux/loong64, freebsd/amd64
    //		and only with Clang/LLVM as the host C compiler.
    //		PIE build mode will be used on all platforms except linux/amd64.
    //	-asan
    //		enable interoperation with address sanitizer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    	if p.Standard && p.ImportPath == "runtime/cgo" {
    		cgoflags = append(cgoflags, "-import_runtime_cgo=false")
    	}
    	if p.Standard && (p.ImportPath == "runtime/race" || p.ImportPath == "runtime/msan" || p.ImportPath == "runtime/cgo" || p.ImportPath == "runtime/asan") {
    		cgoflags = append(cgoflags, "-import_syscall=false")
    	}
    
    	// cgoLDFLAGS, which includes p.CgoLDFLAGS, can be very long.
    	// Pass it to cgo on the command line, so that we use a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/data.go

    	sbld := l.CreateSymForUpdate(p, 0)
    	sbld.Addstring(value)
    	sbld.SetType(sym.SRODATA)
    
    	// Don't reset the variable's size. String variable usually has size of
    	// 2*PtrSize, but in ASAN build it can be larger due to red zone.
    	// (See issue 56175.)
    	bld.SetData(make([]byte, arch.PtrSize*2))
    	bld.SetReadOnly(false)
    	bld.ResetRelocs()
    	bld.SetAddrPlus(arch, 0, sbld.Sym(), 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    // Function is executed only during Kubelet start which improves latency to ready node by updating
    // kubelet state, runtime status and node statuses ASAP.
    func (kl *Kubelet) fastStatusUpdateOnce() {
    	ctx := context.Background()
    	start := kl.clock.Now()
    	stopCh := make(chan struct{})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top