Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for asan (0.13 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/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)
  3. 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)
  4. 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)
  5. 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)
  6. src/runtime/race_arm64.s

    // func runtime·racereadrangepc1(void *addr, uintptr sz, void *pc)
    TEXT	runtime·racereadrangepc1(SB), NOSPLIT, $0-24
    	MOVD	addr+0(FP), R1
    	MOVD	size+8(FP), R2
    	MOVD	pc+16(FP), R3
    	ADD	$4, R3	// pc is function start, tsan wants return address.
    	// void __tsan_read_range(ThreadState *thr, void *addr, uintptr size, void *pc);
    	MOVD	$__tsan_read_range(SB), R9
    	JMP	racecalladdr<>(SB)
    
    // func runtime·racewriterange(addr, size uintptr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. src/runtime/chan.go

    	// instead of idx itself.  However, in a future version of this function,
    	// we can use idx to better handle the case of elemsize==0.
    	// A future improvement to the detector is to call TSan with c and idx:
    	// this way, Go will continue to not allocating buffer entries for channels
    	// of elemsize==0, yet the race detector can be made to handle multiple
    	// sync objects underneath the hood (one sync object per idx)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  8. docs/es/docs/async.md

    <img src="https://fastapi.tiangolo.com/img/async/concurrent-burgers/concurrent-burgers-06.png" alt="illustration">
    
    Tú y esa persona 😍 se comen las hamburguesas 🍔 y la pasan genial ✨.
    
    <img src="https://fastapi.tiangolo.com/img/async/concurrent-burgers/concurrent-burgers-07.png" alt="illustration">
    
    !!! info
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  9. pkg/controller/replicaset/replica_set.go

    		// and after such time has passed, the kubelet actually deletes it from the store. We receive an update
    		// for modification of the deletion timestamp and expect an rs to create more replicas asap, not wait
    		// until the kubelet actually deletes the pod. This is different from the Phase of a pod changing, because
    		// an rs never initiates a phase change, and so is never asleep waiting for the same.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    	errPrime := runProbeCheckAndLog(ctx, 0)
    
    	// if our initial attempt to prime failed, start trying to get to a valid state in the background ASAP
    	// this prevents a slow start when the external healthz checker is configured to ignore the KMS healthz endpoint
    	// since we want to support the plugin starting up async with the API server, this error is not fatal
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
Back to top