Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for mutexprofilefraction (0.66 sec)

  1. src/cmd/go/internal/test/flagdefs.go

    	"fuzzminimizetime":     true,
    	"fuzztime":             true,
    	"list":                 true,
    	"memprofile":           true,
    	"memprofilerate":       true,
    	"mutexprofile":         true,
    	"mutexprofilefraction": true,
    	"outputdir":            true,
    	"parallel":             true,
    	"run":                  true,
    	"short":                true,
    	"shuffle":              true,
    	"skip":                 true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. pilot/pkg/features/tuning.go

    			"accelerate configuration push, but it also means that istiod will consume more CPU resources.",
    	).Get()
    
    	MutexProfileFraction = env.Register("MUTEX_PROFILE_FRACTION", 1000,
    		"If set to a non-zero value, enables mutex profiling a rate of 1/MUTEX_PROFILE_FRACTION events."+
    			" For example, '1000' will record 0.1% of events. "+
    			"Set to 0 to disable entirely.").Get()
    
    	StatusUpdateInterval = env.Register(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 04:22:19 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. src/testing/testing.go

    	mutexProfile = flag.String("test.mutexprofile", "", "write a mutex contention profile to the named file after execution")
    	mutexProfileFraction = flag.Int("test.mutexprofilefraction", 1, "if >= 0, calls runtime.SetMutexProfileFraction()")
    	panicOnExit0 = flag.Bool("test.paniconexit0", false, "panic on call to os.Exit(0)")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/test/testflag.go

    	cf.StringVar(&testList, "list", "", "")
    	cf.StringVar(&testMemProfile, "memprofile", "", "")
    	cf.String("memprofilerate", "", "")
    	cf.StringVar(&testMutexProfile, "mutexprofile", "", "")
    	cf.String("mutexprofilefraction", "", "")
    	cf.Var(&testOutputDir, "outputdir", "")
    	cf.Int("parallel", 0, "")
    	cf.String("run", "", "")
    	cf.Bool("short", false, "")
    	cf.String("skip", "", "")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. pilot/pkg/xds/debug.go

    	// They will be exposed on XDS-over-TLS in future releases.
    	if !features.EnableDebugOnHTTP {
    		return
    	}
    
    	if enableProfiling {
    		runtime.SetMutexProfileFraction(features.MutexProfileFraction)
    		runtime.SetBlockProfileRate(features.MutexProfileFraction)
    		s.addDebugHandler(mux, internalMux, "/debug/pprof/", "Displays pprof index", pprof.Index)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  6. src/runtime/extern.go

    	interface value or an untyped nil.
    
    	runtimecontentionstacks: setting runtimecontentionstacks=1 enables inclusion of call stacks
    	related to contention on runtime-internal locks in the "mutex" profile, subject to the
    	MutexProfileFraction setting. When runtimecontentionstacks=0, contention on
    	runtime-internal locks will report as "runtime._LostContendedRuntimeLock". When
    	runtimecontentionstacks=1, the call stacks will correspond to the unlock call that released
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/test.go

    	-mutexprofile mutex.out
    	    Write a mutex contention profile to the specified file
    	    when all tests are complete.
    	    Writes test binary as -c would.
    
    	-mutexprofilefraction n
    	    Sample 1 in n stack traces of goroutines holding a
    	    contended mutex.
    
    	-outputdir directory
    	    Place output files from profiling in the specified directory,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    //
    //	-mutexprofile mutex.out
    //	    Write a mutex contention profile to the specified file
    //	    when all tests are complete.
    //	    Writes test binary as -c would.
    //
    //	-mutexprofilefraction n
    //	    Sample 1 in n stack traces of goroutines holding a
    //	    contended mutex.
    //
    //	-outputdir directory
    //	    Place output files from profiling in the specified directory,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top