Skip to content

Commit 61b66a8

Browse files
committed
Fix llms.txt
1 parent ab49068 commit 61b66a8

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

llms.txt

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -4579,27 +4579,27 @@ pub fn transfer<T: Config>(region_id: RegionId, new_owner: T::AccountId)
45794579

45804580
**Parameters:**
45814581

4582-
- **`origin`**: Must be a signed origin of the account which owns the region `region_id`
4583-
- **`region_id`**: The region whose ownership should change
4584-
- **`new_owner`**: The new owner for the region
4582+
- **`origin`**: Must be a signed origin of the account which owns the region `region_id`.
4583+
- **`region_id`**: The region whose ownership should change.
4584+
- **`new_owner`**: The new owner for the region.
45854585

45864586
## Partition
45874587

45884588
Split a bulk coretime region into two non-overlapping regions at a specific time point. This operation divides a region temporally, creating two shorter regions that together span the same duration as the original.
45894589

45904590
The [partition](https://paritytech.github.io/polkadot-sdk/master/pallet_broker/pallet/struct.Pallet.html#method.partition){target=\_blank} operation removes the original region and creates two new regions with the same owner and core mask. The first new region spans from the original start time to the pivot point, while the second spans from the pivot point to the original end time.
45914591

4592-
This is useful when you want to use part of your allocated time immediately and reserve the remainder for later use, or when you want to sell or transfer only a portion of your time allocation.
4592+
This is useful when you want to use part of your allocated time immediately and reserve the remainder for later use or when you want to sell or transfer only a portion of your time allocation.
45934593

45944594
```rust
45954595
pub fn partition<T: Config>(region_id: RegionId, pivot: Timeslice)
45964596
```
45974597

45984598
**Parameters:**
45994599

4600-
- **`origin`**: Must be a signed origin of the account which owns the region `region_id`
4601-
- **`region_id`**: The region which should be partitioned into two non-overlapping regions
4602-
- **`pivot`**: The offset in time into the region at which to make the split
4600+
- **`origin`**: Must be a signed origin of the account which owns the region `region_id`.
4601+
- **`region_id`**: The region which should be partitioned into two non-overlapping regions.
4602+
- **`pivot`**: The offset in time into the region at which to make the split.
46034603

46044604
## Interlace
46054605

@@ -4615,28 +4615,28 @@ pub fn interlace<T: Config>(region_id: RegionId, pivot: CoreMask)
46154615

46164616
Parameters:
46174617

4618-
- **`origin`**: Must be a signed origin of the account which owns the region `region_id`
4619-
- **`region_id`**: The region which should become two interlaced regions of incomplete regularity
4620-
- **`pivot`**: The interlace mask of one of the two new regions (the other is its partial complement)
4618+
- **`origin`**: Must be a signed origin of the account which owns the region `region_id`.
4619+
- **`region_id`**: The region which should become two interlaced regions of incomplete regularity.
4620+
- **`pivot`**: The interlace mask of one of the two new regions (the other is its partial complement).
46214621

46224622
## Assign
46234623

46244624
[Assign](https://paritytech.github.io/polkadot-sdk/master/pallet_broker/pallet/struct.Pallet.html#method.assign){target=\_blank} a bulk coretime region to a specific task for execution.
46254625

4626-
This operation places an item in the workplan corresponding to the region's properties and assigns it to the target task. If the region's end time has already passed, the operation becomes a no-op. If the region's beginning has passed, it effectively starts from the next schedulable timeslice.
4626+
This operation places an item in the work plan corresponding to the region's properties and assigns it to the target task. If the region's end time has already passed, the operation becomes a no-op. If the region's beginning has passed, it effectively starts from the next schedulable timeslice.
46274627

4628-
Use this operation to execute your tasks on the allocated cores. Choose final assignment when you're certain about the task allocation, or provisional when you might need flexibility for later changes.
4628+
Use this operation to execute your tasks on the allocated cores. Choose a final assignment when you're certain about the task allocation or provisional when you might need flexibility for later changes.
46294629

46304630
```rust
46314631
pub fn assign<T: Config>(region_id: RegionId, task: TaskId, finality: Finality)
46324632
```
46334633

46344634
**Parameters:**
46354635

4636-
- **`origin`**: Must be a signed origin of the account which owns the region `region_id`
4637-
- **`region_id`**: The region which should be assigned to the task
4638-
- **`task`**: The task to assign
4639-
- **`finality`**: Indication of whether this assignment is final or provisional
4636+
- **`origin`**: Must be a signed origin of the account which owns the region `region_id`.
4637+
- **`region_id`**: The region which should be assigned to the task.
4638+
- **`task`**: The task to assign.
4639+
- **`finality`**: Indication of whether this assignment is final or provisional.
46404640

46414641
## Pool
46424642

@@ -4652,10 +4652,10 @@ pub fn pool<T: Config>(region_id: RegionId, payee: T::AccountId, finality: Final
46524652

46534653
**Parameters:**
46544654

4655-
- **`origin`**: Must be a signed origin of the account which owns the region `region_id`
4656-
- **`region_id`**: The region which should be assigned to the pool
4657-
- **`payee`**: The account which can collect revenue from the usage of this region
4658-
- **`finality`**: Indication of whether this pool assignment is final or provisional
4655+
- **`origin`**: Must be a signed origin of the account which owns the region `region_id`.
4656+
- **`region_id`**: The region which should be assigned to the pool.
4657+
- **`payee`**: The account which can collect revenue from the usage of this region.
4658+
- **`finality`**: Indication of whether this pool assignment is final or provisional.
46594659
--- END CONTENT ---
46604660

46614661
Doc-Content: https://docs.polkadot.com/develop/parachains/deployment/obtain-coretime/

0 commit comments

Comments
 (0)