Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 39 for asan (0.05 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/compile/internal/ssagen/ssa.go

    }
    
    // instrumentFields instruments a read/write operation on addr.
    // If it is instrumenting for MSAN or ASAN and t is a struct type, it instruments
    // operation for each field, instead of for the whole struct.
    func (s *state) instrumentFields(t *types.Type, addr *ssa.Value, kind instrumentKind) {
    	if !(base.Flag.MSan || base.Flag.ASan) || !t.IsStruct() {
    		s.instrument(t, addr, kind)
    		return
    	}
    	for _, f := range t.Fields() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. src/runtime/mheap.go

    				traceRelease(trace)
    			}
    		}
    
    		lock(&h.lock)
    		if msanenabled {
    			// Tell msan that this entire span is no longer in use.
    			base := unsafe.Pointer(s.base())
    			bytes := s.npages << _PageShift
    			msanfree(base, bytes)
    		}
    		if asanenabled {
    			// Tell asan that this entire span is no longer in use.
    			base := unsafe.Pointer(s.base())
    			bytes := s.npages << _PageShift
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/runtime/race_ppc64le.s

    	GO_ARGS
    	BR	sync∕atomic·SwapInt64(SB)
    
    // Add atomic in tsan
    TEXT	sync∕atomic·AddInt32(SB), NOSPLIT, $0-20
    	GO_ARGS
    	// void __tsan_go_atomic32_fetch_add(ThreadState *thr, uptr cpc, uptr pc, u8 *a);
    	MOVD	$__tsan_go_atomic32_fetch_add(SB), R8
    	ADD	$64, R1, R6	// addr of caller's 1st arg
    	BL	racecallatomic<>(SB)
    	// The tsan fetch_add result is not as expected by Go,
    	// so the 'add' must be added to the result.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  7. docs/id/docs/tutorial/index.md

    Ini juga dibangun untuk digunakan sebagai referensi yang akan datang.
    
    Sehingga kamu dapat kembali lagi dan mencari apa yang kamu butuhkan dengan tepat.
    
    ## Jalankan kode
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testsanitizers/testdata/tsan15.go

    // Copyright 2024 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.
    
    package main
    
    // Test case for issue 66427.
    // Running under TSAN, this fails with "signal handler
    // spoils errno".
    
    /*
    #include <pthread.h>
    #include <signal.h>
    #include <stdlib.h>
    
    void go_callback();
    
    static void *thr(void *arg) {
    	int i;
    	for (i = 0; i < 10; i++)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 21:14:49 UTC 2024
    - 968 bytes
    - Viewed (0)
  9. docs/tr/docs/how-to/general.md

    ## Yanıt Açıklaması Dokümantasyonu - OpenAPI
    
    Dokümantasyon arayüzünde yer alan yanıt açıklamasını tanımlamak için, [Tutorial - Path Operation Configurations - Response description](../tutorial/path-operation-configuration.md#response-description){.internal-link target=_blank} sayfasını okuyun.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 27 16:20:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. docs/tr/docs/tutorial/cookie-params.md

        ```Python hl_lines="9"
        {!> ../../../docs_src/cookie_params/tutorial001.py!}
        ```
    
    !!! note "Teknik Detaylar"
        `Cookie` sınıfı `Path` ve `Query` sınıflarının kardeşidir. Diğerleri gibi `Param` sınıfını miras alan bir sınıftır.
    
        Ancak `fastapi`'dan projenize dahil ettiğiniz `Query`, `Path`, `Cookie` ve diğerleri aslında özel sınıflar döndüren birer fonksiyondur.
    
    !!! info "Bilgi"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue May 14 19:35:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top