Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for asan (0.06 sec)

  1. docs/az/docs/index.md

    * **İntuitiv**: Əla redaktor dəstəyi. Hər yerdə <abbr title="auto-complete, autocompletion, IntelliSense olaraq da bilinir">otomatik tamamlama</abbr>. Xətaları müəyyənləşdirməyə daha az vaxt sərf edəcəksiniz.
    * **Asan**: İstifadəsi və öyrənilməsi asan olması üçün nəzərdə tutulmuşdur. Sənədləri oxumaq üçün daha az vaxt ayıracaqsınız.
    * **Qısa**: Kod təkrarlanmasını minimuma endirin. Hər bir parametr tərifində birdən çox xüsusiyyət ilə və daha az səhvlə qarşılaşacaqsınız.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  2. src/cmd/internal/objabi/pkgspecial.go

    	"internal/stringslite",
    }
    
    // extraNoInstrumentPkgs is the set of packages in addition to runtimePkgs that
    // should have NoInstrument set.
    var extraNoInstrumentPkgs = []string{
    	"runtime/race",
    	"runtime/msan",
    	"runtime/asan",
    	// We omit bytealg even though it's imported by runtime because it also
    	// backs a lot of package bytes. Currently we don't have a way to omit race
    	// instrumentation when used from the runtime while keeping race
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 02:32:19 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/main.go

    	flagDumpDep       = flag.Bool("dumpdep", false, "dump symbol dependency graph")
    	flagRace          = flag.Bool("race", false, "enable race detector")
    	flagMsan          = flag.Bool("msan", false, "enable MSan interface")
    	flagAsan          = flag.Bool("asan", false, "enable ASan interface")
    	flagAslr          = flag.Bool("aslr", true, "enable ASLR for buildmode=c-shared on windows")
    
    	flagFieldTrack = flag.String("k", "", "set field tracking `symbol`")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. src/cmd/dist/test.go

    		"run only those tests matching the regular expression; empty means to run all. "+
    			"Special exception: if the string begins with '!', the match is inverted.")
    	flag.BoolVar(&t.msan, "msan", false, "run in memory sanitizer builder mode")
    	flag.BoolVar(&t.asan, "asan", false, "run in address sanitizer builder mode")
    	flag.BoolVar(&t.json, "json", false, "report test results in JSON")
    
    	xflagparse(-1) // any number of args
    	if noRebuild {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  5. src/go/build/deps_test.go

    	< runtime/internal/sys
    	< internal/runtime/syscall
    	< internal/runtime/atomic
    	< internal/runtime/exithook
    	< runtime/internal/math
    	< runtime
    	< sync/atomic
    	< internal/race
    	< internal/msan
    	< internal/asan
    	< internal/weak
    	< sync
    	< internal/bisect
    	< internal/godebug
    	< internal/reflectlite
    	< errors
    	< internal/oserror;
    
    	cmp, internal/race, math/bits
    	< iter
    	< maps, slices;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/cfg/cfg.go

    	BuildModReason     string                  // reason -mod was set, if set by default
    	BuildLinkshared    bool                    // -linkshared flag
    	BuildMSan          bool                    // -msan flag
    	BuildASan          bool                    // -asan flag
    	BuildCover         bool                    // -cover flag
    	BuildCoverMode     string                  // -covermode flag
    	BuildCoverPkg      []string                // -coverpkg flag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/pkg.go

    	if cfg.BuildRace {
    		deps = append(deps, "runtime/race")
    	}
    	// Using memory sanitizer forces an import of runtime/msan.
    	if cfg.BuildMSan {
    		deps = append(deps, "runtime/msan")
    	}
    	// Using address sanitizer forces an import of runtime/asan.
    	if cfg.BuildASan {
    		deps = append(deps, "runtime/asan")
    	}
    	// Building for coverage forces an import of runtime/coverage.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/lib.go

    		suffixsep = "_"
    		suffix = *flagInstallSuffix
    	} else if *flagRace {
    		suffixsep = "_"
    		suffix = "race"
    	} else if *flagMsan {
    		suffixsep = "_"
    		suffix = "msan"
    	} else if *flagAsan {
    		suffixsep = "_"
    		suffix = "asan"
    	}
    
    	if buildcfg.GOROOT != "" {
    		Lflag(ctxt, filepath.Join(buildcfg.GOROOT, "pkg", fmt.Sprintf("%s_%s%s%s", buildcfg.GOOS, buildcfg.GOARCH, suffixsep, suffix)))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testsanitizers/tsan_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	goarch, err := goEnv("GOARCH")
    	if err != nil {
    		t.Fatal(err)
    	}
    	// The msan tests require support for the -msan option.
    	if !compilerRequiredTsanVersion(goos, goarch) {
    		t.Skipf("skipping on %s/%s; compiler version for -tsan option is too old.", goos, goarch)
    	}
    
    	t.Parallel()
    	requireOvercommit(t)
    	config := configure("thread")
    	config.skipIfCSanitizerBroken(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 21:14:49 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. src/runtime/malloc.go

    	// It's possible for any malloc to trigger sweeping, which may in
    	// turn queue finalizers. Record this dynamic lock edge.
    	lockRankMayQueueFinalizer()
    
    	userSize := size
    	if asanenabled {
    		// Refer to ASAN runtime library, the malloc() function allocates extra memory,
    		// the redzone, around the user requested memory region. And the redzones are marked
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top