Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for asan (0.07 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. tensorflow/compiler/jit/BUILD

            "mark_for_compilation_pass_test.cc",
            "partially_decluster_pass_test.cc",
            "rearrange_function_argument_pass_test.cc",
        ],
        tags = [
            # TODO(b/141643254) Re-enable msan after fixing
            # use-of-uninitialized-value error.
            "nomsan",
        ] + tf_cuda_tests_tags(),
        deps = [
            ":common",
            ":compilability_check_util",
            ":compilation_passes",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  6. pkg/controller/daemon/daemon_controller.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 ds to create more replicas asap, not wait
    		// until the kubelet actually deletes the pod.
    		dsc.deletePod(logger, curPod)
    		return
    	}
    
    	curControllerRef := metav1.GetControllerOf(curPod)
    	oldControllerRef := metav1.GetControllerOf(oldPod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  7. pkg/controller/job/job_controller.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 job to create more pods asap, not wait
    		// until the kubelet actually deletes the pod.
    		jm.deletePod(logger, curPod, false)
    		return
    	}
    
    	// Don't check if oldPod has the finalizer, as during ownership transfer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
Back to top