Ejemplo n.º 1
0
 public static GcMode WithServer(this GcMode mode, bool value) => mode.WithCore(m => m.Server = value);
Ejemplo n.º 2
0
 public static GcMode WithConcurrent(this GcMode mode, bool value) => mode.WithCore(m => m.Concurrent = value);
Ejemplo n.º 3
0
 public static GcMode WithAllowVeryLargeObjects(this GcMode mode, bool value) => mode.WithCore(m => m.AllowVeryLargeObjects = value);
Ejemplo n.º 4
0
 public static GcMode WithRetainVm(this GcMode mode, bool value) => mode.WithCore(m => m.RetainVm = value);
Ejemplo n.º 5
0
 public static GcMode WithForce(this GcMode mode, bool value) => mode.WithCore(m => m.Force = value);
Ejemplo n.º 6
0
 public static GcMode WithCpuGroups(this GcMode mode, bool value) => mode.WithCore(m => m.CpuGroups = value);
Ejemplo n.º 7
0
 public static GcMode WithHeapAffinitizeMask(this GcMode mode, int heapAffinitizeMask) => mode.WithCore(m => m.HeapAffinitizeMask = heapAffinitizeMask);
Ejemplo n.º 8
0
 public static GcMode WithNoAffinitize(this GcMode mode, bool value) => mode.WithCore(m => m.NoAffinitize = value);
Ejemplo n.º 9
0
 public static GcMode WithHeapCount(this GcMode mode, int heapCount) => mode.WithCore(m => m.HeapCount = heapCount);