OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GOGC
(Results
1 - 14
of
14
) sorted by null
/prebuilts/go/darwin-x86/src/runtime/
crash_unix_test.go
77
// Set
GOGC
=off. Because of golang.org/issue/10958, the tight
82
if !strings.HasPrefix(s, "
GOGC
=") {
86
cmd.Env = append(newEnv, "
GOGC
=off")
mgc.go
122
// the amount already in use. The proportion is controlled by
GOGC
environment variable
123
// (100 by default). If
GOGC
=100 and we're using 4M, we'll GC again when we get to 8M
125
// proportion to the allocation cost. Adjusting
GOGC
just changes the linear constant
157
// For small heaps, this overrides the usual
GOGC
*live set rule.
160
// collecting when the heap reaches
GOGC
*live results in many GC
164
// During initialization this is set to 4MB*
GOGC
/100. In the case of
165
//
GOGC
==0, this will set heapminimum to 0, resulting in constant
170
// defaultHeapMinimum is the value of heapminimum for
GOGC
==100.
173
// Initialized from $
GOGC
.
GOGC
=off means no GC
[
all
...]
extern.go
17
The
GOGC
variable sets the initial garbage collection target percentage.
20
is
GOGC
=100. Setting
GOGC
=off disables the garbage collector entirely.
gc_test.go
20
if os.Getenv("
GOGC
") == "off" {
21
t.Skip("skipping test;
GOGC
=off in environment")
505
// Test that runtime.GC() triggers a GC even if
GOGC
=off.
mstats.go
101
// previous cycle. This should be ?
GOGC
/100 so the trigger
348
// value of
GOGC
.
402
// even if
GOGC
=off.
/prebuilts/go/darwin-x86/src/runtime/debug/
garbage_test.go
150
// Adjust
GOGC
to 50. NextGC should be ~150 MB.
157
// Trigger a GC and get back to 100 MB live with
GOGC
=100.
162
// Lower
GOGC
to 10. This must force a GC.
garbage.go
88
// The initial setting is the value of the
GOGC
environment variable
/prebuilts/go/linux-x86/src/runtime/
crash_unix_test.go
77
// Set
GOGC
=off. Because of golang.org/issue/10958, the tight
82
if !strings.HasPrefix(s, "
GOGC
=") {
86
cmd.Env = append(newEnv, "
GOGC
=off")
mgc.go
122
// the amount already in use. The proportion is controlled by
GOGC
environment variable
123
// (100 by default). If
GOGC
=100 and we're using 4M, we'll GC again when we get to 8M
125
// proportion to the allocation cost. Adjusting
GOGC
just changes the linear constant
157
// For small heaps, this overrides the usual
GOGC
*live set rule.
160
// collecting when the heap reaches
GOGC
*live results in many GC
164
// During initialization this is set to 4MB*
GOGC
/100. In the case of
165
//
GOGC
==0, this will set heapminimum to 0, resulting in constant
170
// defaultHeapMinimum is the value of heapminimum for
GOGC
==100.
173
// Initialized from $
GOGC
.
GOGC
=off means no GC
[
all
...]
extern.go
17
The
GOGC
variable sets the initial garbage collection target percentage.
20
is
GOGC
=100. Setting
GOGC
=off disables the garbage collector entirely.
gc_test.go
20
if os.Getenv("
GOGC
") == "off" {
21
t.Skip("skipping test;
GOGC
=off in environment")
505
// Test that runtime.GC() triggers a GC even if
GOGC
=off.
mstats.go
101
// previous cycle. This should be ?
GOGC
/100 so the trigger
348
// value of
GOGC
.
402
// even if
GOGC
=off.
/prebuilts/go/linux-x86/src/runtime/debug/
garbage_test.go
150
// Adjust
GOGC
to 50. NextGC should be ~150 MB.
157
// Trigger a GC and get back to 100 MB live with
GOGC
=100.
162
// Lower
GOGC
to 10. This must force a GC.
garbage.go
88
// The initial setting is the value of the
GOGC
environment variable
Completed in 1094 milliseconds