- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 87 for fewa (0.03 seconds)
-
src/archive/tar/reader_test.go
input []byte wantMap sparseDatas wantSize int64 wantErr error }{{ input: makeInput(FormatUnknown, ""), wantErr: ErrHeader, }, { input: makeInput(FormatGNU, "1234", "fewa"), wantSize: 01234, wantErr: ErrHeader, }, { input: makeInput(FormatGNU, "0031"), wantSize: 031, }, { input: makeInput(FormatGNU, "80"), wantErr: ErrHeader, }, {
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Tue Dec 30 15:28:53 GMT 2025 - 47.5K bytes - Click Count (0) -
docs/fr/docs/tutorial/path-params-numeric-validations.md
* les avoir dans un ordre différent * ne pas utiliser `Annotated` ... Python a une petite syntaxe spéciale pour cela. Passez `*`, comme premier paramètre de la fonction.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 7.1K bytes - Click Count (0) -
internal/grid/types.go
func (j *Array[T]) Value() []T { if j.val == nil { j.val = j.p.newA(10) } return j.val } // Append a value to the underlying array. // The returned Array is always the same as the one called. func (j *Array[T]) Append(v ...T) *Array[T] { if j.val == nil { j.val = j.p.newA(uint32(len(v))) } j.val = append(j.val, v...) return j }
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 15.5K bytes - Click Count (0) -
docs/fr/docs/tutorial/body-nested-models.md
## Déclarer des champs de liste { #list-fields } Vous pouvez définir un attribut comme étant un sous-type. Par exemple, une `list` Python : {* ../../docs_src/body_nested_models/tutorial001_py310.py hl[12] *} Cela fera de `tags` une liste, bien que le type des éléments de la liste ne soit pas déclaré. ## Champs de liste avec paramètre de type { #list-fields-with-type-parameter }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 7.8K bytes - Click Count (0) -
docs/fr/docs/tutorial/dependencies/sub-dependencies.md
Tout cela peut ne pas sembler très utile avec ces exemples simples. Mais vous verrez à quel point c'est utile dans les chapitres sur la **sécurité**. Et vous verrez aussi la quantité de code que cela vous fera économiser.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:12:41 GMT 2026 - 4.2K bytes - Click Count (0) -
architecture/standards/0003-avoid-introducing-Groovy-types-to-public-api.md
When the Kotlin DSL was introduced, we made an effort to add non-Groovy equivalents for all APIs. This has been mostly done, but there remain a few holdouts (fixing these is out of scope). To keep the Groovy DSL ergonomic, we generate methods as necessary from the non-Groovy equivalents. Doing this provides the following specific benefits:
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 05 12:39:41 GMT 2026 - 1.8K bytes - Click Count (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/AbstractBuildScanInfoCollectingService.kt
import org.gradle.tooling.events.task.TaskFinishEvent import org.gradle.tooling.events.task.TaskOperationResult import java.io.Serializable /** * A BuildService which monitors a few tasks (in both build-logic and main build) and collects information for Build Scan. * It's currently implemented by two use cases: * 1. Collect cache misses for compilation tasks and publish a `CACHE_MISS` tag for a Build Scan.
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Jun 10 05:45:46 GMT 2025 - 2.3K bytes - Click Count (0) -
internal/bpool/pool.go
// You should have received a copy of the GNU Affero General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. package bpool import "sync" // Pool is a single type sync.Pool with a few extra properties: // If New is not set Get may return the zero value of T. type Pool[T any] struct { New func() T p sync.Pool } // Get will retuen a new T func (p *Pool[T]) Get() T { v, ok := p.p.Get().(T)
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue Feb 18 16:25:55 GMT 2025 - 1.2K bytes - Click Count (0) -
docs/tuning/tuned.conf
kernel.numa_balancing=1 # Do not use swap at all vm.swappiness=0 vm.vfs_cache_pressure=50 # Start writeback at 3% memory vm.dirty_background_ratio=3 # Force writeback at 10% memory vm.dirty_ratio=10 # Quite a few memory map # areas may be consumed vm.max_map_count=524288 # Default is 500000 = 0.5ms kernel.sched_migration_cost_ns=5000000 # stalled hdd io threads kernel.hung_task_timeout_secs=85
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Jul 12 23:31:18 GMT 2024 - 1.9K bytes - Click Count (0) -
docs/fr/docs/tutorial/dependencies/dependencies-with-yield.md
{* ../../docs_src/dependencies/tutorial007_py310.py hl[5:6] *} /// tip | Astuce Vous pouvez utiliser des fonctions `async` ou des fonctions classiques. **FastAPI** fera ce qu'il faut dans chaque cas, comme avec des dépendances normales. /// ## Créer une dépendance avec `yield` et `try` { #a-dependency-with-yield-and-try }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 13.9K bytes - Click Count (0)