- Sort Score
- Num 10 results
- Language All
Results 1181 - 1190 of 3,297 for Gist (0.02 seconds)
-
docs/uk/docs/tutorial/query-params-str-validations.md
"bar" ] } ``` #### Використання тільки `list` Ви також можете використовувати `list` без уточнення типу, замість `list[str]`: {* ../../docs_src/query_params_str_validations/tutorial013_an_py39.py hl[9] *} /// note | Технічні деталі Майте на увазі, що в цьому випадку FastAPI не перевірятиме вміст списку.
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Fri May 30 14:17:24 GMT 2025 - 26.1K bytes - Click Count (0) -
docs_src/dataclasses_/tutorial002_py39.py
from dataclasses import dataclass, field from typing import Union from fastapi import FastAPI @dataclass class Item: name: str price: float tags: list[str] = field(default_factory=list) description: Union[str, None] = None tax: Union[float, None] = None app = FastAPI() @app.get("/items/next", response_model=Item) async def read_next_item(): return { "name": "Island In The Moon",Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Fri Dec 26 10:43:02 GMT 2025 - 543 bytes - Click Count (0) -
docs/smb3-features/04-directory-leasing-design.md
public List<SmbFile> batchExists(List<String> paths) { // Group paths by parent directory Map<String, List<String>> pathsByParent = paths.stream() .collect(Collectors.groupingBy(this::getParentPath)); List<SmbFile> results = new ArrayList<>(); for (Map.Entry<String, List<String>> entry : pathsByParent.entrySet()) {Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 36.2K bytes - Click Count (0) -
android/guava-testlib/src/com/google/common/collect/testing/OneSizeGenerator.java
SampleElements<E> samples = samples(); List<E> allSampleElements = asList(samples.e0(), samples.e1(), samples.e2(), samples.e3(), samples.e4()); return new ArrayList<>(allSampleElements.subList(0, howMany)); } @Override public CollectionSize getCollectionSize() { return collectionSize; } @Override public Iterable<E> order(List<E> insertionOrder) {
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 2.5K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/path/DefaultModelUrlNormalizer.java
scm.setDeveloperConnection(normalize(scm.getDeveloperConnection())); } DistributionManagement dist = model.getDistributionManagement(); if (dist != null) { Site site = dist.getSite(); if (site != null) { site.setUrl(normalize(site.getUrl())); } } }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 2.5K bytes - Click Count (1) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/PrefixedObjectValueSource.java
* prefixes and setting whether the {@link PrefixedValueSourceWrapper} allows * unprefixed expressions. * @param possiblePrefixes The possible prefixes. * @param root The root of the graph. * @param allowUnprefixedExpressions if we allow undefined expressions or not. */Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 2.6K bytes - Click Count (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/DefaultArtifact.java
private ArtifactFilter dependencyFilter; private ArtifactHandler artifactHandler; private List<String> dependencyTrail; private volatile String version; private VersionRange versionRange; private volatile boolean resolved; private boolean release; private List<ArtifactVersion> availableVersions; private Map<Object, ArtifactMetadata> metadataMap;Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jul 23 17:27:08 GMT 2025 - 14.6K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/prefix/internal/DefaultPluginPrefixResolver.java
} return null; } private PluginPrefixResult processResults( PluginPrefixRequest request, RequestTrace trace, List<MetadataResult> results, List<MetadataRequest> requests, LinkedHashMap<String, Set<String>> candidates) { for (MetadataResult res : results) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 17 13:14:10 GMT 2025 - 11.9K bytes - Click Count (0) -
scripts/notify_translations.py
class AllDiscussionsDiscussionLabels(BaseModel): edges: list[AllDiscussionsLabelsEdge] class AllDiscussionsDiscussionNode(BaseModel): title: str id: str number: int labels: AllDiscussionsDiscussionLabels class AllDiscussionsDiscussions(BaseModel): nodes: list[AllDiscussionsDiscussionNode] class AllDiscussionsRepository(BaseModel):
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 21:25:59 GMT 2025 - 12.7K bytes - Click Count (0) -
src/main/java/org/codelibs/core/lang/GenericsUtil.java
} /** * Returns the element type of a parameterized {@link List}. * <p> * If <code>type</code> is not a parameterized {@link List}, <code>null</code> is returned. * </p> * * @param type * the type to analyze * @return the element type of the list, or null if not a parameterized list */ public static Type getElementTypeOfList(final Type type) {Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 23.4K bytes - Click Count (0)