You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: i18n/ko/docusaurus-plugin-content-docs/current/api/config/auto_scheduling.md
+55-64Lines changed: 55 additions & 64 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,22 +35,20 @@ gantt.init("gantt_here");
35
35
### Details
36
36
37
37
:::note
38
-
This config is defined in the **auto_scheduling**extension, so you need to activate the [auto_scheduling](guides/extensions-list.md#autoscheduling)plugin. Read the details in the [Auto Scheduling](guides/auto-scheduling.md)article.
38
+
이 구성은 **auto_scheduling**확장에 정의되어 있으므로 [auto_scheduling](guides/extensions-list.md#autoscheduling)플러그인을 활성화해야 합니다. 자세한 내용은 [Auto Scheduling](guides/auto-scheduling.md)문서를 참조하십시오.
39
39
:::
40
40
41
-
While `auto_scheduling` config can be set as a boolean, usage of the object definition is the recommended approach for configuring the auto-scheduling behavior.
42
-
43
-
44
-
When set as an object, the following options are available:
41
+
`auto_scheduling` 구성을 불리언으로 설정하는 것도 가능하지만, 객체 정의를 사용하는 것이 자동 스케줄링 동작을 구성하는 권장 방법입니다.
45
42
43
+
객체로 설정할 때 사용 가능한 옵션은 다음과 같습니다:
46
44
47
45
#### enabled
48
46
49
-
**Type**: boolean
47
+
**타입**: boolean
50
48
51
-
**Default**: `false`
49
+
**기본값**: `false`
52
50
53
-
Turns auto-scheduling on or off (same as using a boolean value directly).
Setting the value to `false` switches auto scheduling to the mode that ignores constraints associated with tasks (e.g. ASAP, ALAP, SNET, etc.) and scheduling depends solely on task dependencies.
74
+
값을 `false`로 설정하면 제약 조건을 무시하는 모드로 자동 스케줄링이 전환되고, 작업 간의 의존성에만 스케줄링이 의존하게 됩니다.
77
75
78
-
This property replaces the deprecated [](api/config/auto_scheduling_compatibility.md)setting.
76
+
이 속성은 더 이상 사용되지 않는 [](api/config/auto_scheduling_compatibility.md)설정을 대체합니다.
By default (when the property is set to *true*), the whole project is moved during auto scheduling. It means that all tasks in the project remain on their places
152
-
relative to each other and the beginning of the project.
147
+
기본적으로(속성이 *true*로 설정된 경우), 자동 스케줄링 중 전체 프로젝트가 이동합니다. 이는 프로젝트 내 모든 작업이 서로의 위치와 프로젝트 시작 위치를 기준으로 제자리에 남아 있음을 의미합니다.
If the *move_projects* property is set to *false*, auto scheduling will move separate tasks inside of the project. Thus, some tasks will be moved, others will
158
-
remain on their places.
151
+
*move_projects* 속성이 *false*로 설정되면, 자동 스케줄링은 프로젝트 내부의 개별 작업을 이동시킵니다. 이로 인해 일부 작업은 이동하고 다른 작업은 제자리에 남아 있습니다.
If you use the constraint scheduling (*apply_constraints: true*), the *move_projects* config will be active only when the `gap_behavior`property is set to "preserve"`:
156
+
제약 조건 스케줄링(*apply_constraints: true*)을 사용하는 경우, `gap_behavior`속성이 "preserve"로 설정될 때에만 *move_projects* 구성이 활성화됩니다:
When the property is enabled, the critical path, slack, and auto scheduling algorithms will take the value of the task progress into account, similar to how these methods work in MS Project, namely:
183
+
해당 속성이 활성화되면, MS Project에서와 유사하게 작업 진행률 값을 고려하여 임계 경로, 여유 시간, 자동 스케줄링 알고리즘이 동작합니다. 구체적으로는:
192
184
193
-
1)Completed tasks (completed tasks - the tasks with 100% progress) always have zero slack;
185
+
1)완료된 작업(진행률이 100%인 작업)은 항상 여유 시간이 0입니다.
194
186
195
-
2)Completed tasks are excluded from the auto scheduling calculations. Relations that connect predecessors to completed tasks are ignored;
187
+
2)완료된 작업은 자동 스케줄링 계산에서 제외되며, 선행 작업에서 완료된 작업으로 연결되는 관계는 무시됩니다.
196
188
197
-
3)Completed tasks can't be critical.
189
+
3)완료된 작업은 중요 경로의 구성요소가 될 수 없습니다.
198
190
199
191
-[Use progress for auto-scheduling, critical path and slack calculations](https://snippet.dhtmlx.com/ju3km1uy)
200
192
201
193
#### schedule_from_end
202
194
203
-
**Type**: boolean
195
+
**타입**: boolean
204
196
205
-
**Default**: `false`
197
+
**기본값**: `false`
206
198
207
-
Enables backward scheduling.
199
+
역방향 스케줄링을 활성화합니다.
208
200
209
-
Setting this config to `true` will switch auto scheduling to the `as late as possible`mode.
201
+
이 구성을 `true`로 설정하면 auto scheduling이 `as late as possible`모드로 전환됩니다.
210
202
211
-
The value will be only applied if [](api/config/project_end.md) is specified as well.
203
+
해당 값은 [](api/config/project_end.md)도 함께 지정된 경우에만 적용됩니다.
By default, the constraint type of the parent project doesn't affect the constraint type of its nested tasks.
230
+
기본적으로 상위 프로젝트의 제약 유형은 하위 작업의 제약 유형에 영향을 주지 않습니다.
239
231
240
-
If you set the config to *true*, the child tasks (except for tasks with their own constraint type) will have the same constraint type as their parent project (for example,**finish no later than**).
232
+
구성을 *true*로 설정하면(자체 제약 유형이 있는 작업은 예외), 자식 작업은 상위 프로젝트와 같은 제약 유형을 갖게 됩니다(예:**finish no later than**).
0 commit comments