mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-05-12 21:03:05 -07:00
Auto configure memory. (#24474)
This commit is contained in:
@@ -153,7 +153,7 @@ they appear in the UI.
|
|||||||
|
|
||||||
| UI Label | Setting | Description | Default |
|
| UI Label | Setting | Description | Default |
|
||||||
| --------------------------------- | ------------------------------ | --------------------------------------------- | ------- |
|
| --------------------------------- | ------------------------------ | --------------------------------------------- | ------- |
|
||||||
| Auto Configure Max Old Space Size | `advanced.autoConfigureMemory` | Automatically configure Node.js memory limits | `false` |
|
| Auto Configure Max Old Space Size | `advanced.autoConfigureMemory` | Automatically configure Node.js memory limits | `true` |
|
||||||
|
|
||||||
### Experimental
|
### Experimental
|
||||||
|
|
||||||
|
|||||||
@@ -1565,7 +1565,7 @@ their corresponding top-level category object in your `settings.json` file.
|
|||||||
|
|
||||||
- **`advanced.autoConfigureMemory`** (boolean):
|
- **`advanced.autoConfigureMemory`** (boolean):
|
||||||
- **Description:** Automatically configure Node.js memory limits
|
- **Description:** Automatically configure Node.js memory limits
|
||||||
- **Default:** `false`
|
- **Default:** `true`
|
||||||
- **Requires restart:** Yes
|
- **Requires restart:** Yes
|
||||||
|
|
||||||
- **`advanced.dnsResolutionOrder`** (string):
|
- **`advanced.dnsResolutionOrder`** (string):
|
||||||
|
|||||||
@@ -1887,7 +1887,7 @@ const SETTINGS_SCHEMA = {
|
|||||||
label: 'Auto Configure Max Old Space Size',
|
label: 'Auto Configure Max Old Space Size',
|
||||||
category: 'Advanced',
|
category: 'Advanced',
|
||||||
requiresRestart: true,
|
requiresRestart: true,
|
||||||
default: false,
|
default: true,
|
||||||
description: 'Automatically configure Node.js memory limits',
|
description: 'Automatically configure Node.js memory limits',
|
||||||
showInDialog: true,
|
showInDialog: true,
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -2712,8 +2712,8 @@
|
|||||||
"autoConfigureMemory": {
|
"autoConfigureMemory": {
|
||||||
"title": "Auto Configure Max Old Space Size",
|
"title": "Auto Configure Max Old Space Size",
|
||||||
"description": "Automatically configure Node.js memory limits",
|
"description": "Automatically configure Node.js memory limits",
|
||||||
"markdownDescription": "Automatically configure Node.js memory limits\n\n- Category: `Advanced`\n- Requires restart: `yes`\n- Default: `false`",
|
"markdownDescription": "Automatically configure Node.js memory limits\n\n- Category: `Advanced`\n- Requires restart: `yes`\n- Default: `true`",
|
||||||
"default": false,
|
"default": true,
|
||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
},
|
},
|
||||||
"dnsResolutionOrder": {
|
"dnsResolutionOrder": {
|
||||||
|
|||||||
Reference in New Issue
Block a user