- Sort Score
- Result 10 results
- Languages All
Results 1361 - 1370 of 3,170 for LIST (0.13 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/profiles/ProfilesConversionUtils.java
profile.setProperties(profileXmlProfile.getProperties()); List repos = profileXmlProfile.getRepositories(); if (repos != null) { for (Object repo : repos) { profile.addRepository(convertFromProfileXmlRepository((org.apache.maven.profiles.Repository) repo)); } } List pluginRepos = profileXmlProfile.getPluginRepositories(); if (pluginRepos != null) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.8K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/MethodsRemovedInInternalSuperClassRule.groovy
} private List<String> filterChangesToReport(CtClass c, Set<CtMethod> methods) { return methods.findAll { isFirstPublicClassInHierarchy(it, c) }*.longName.sort() } private boolean isFirstPublicClassInHierarchy(CtMethod method, CtClass c) { List<CtClass> classesContainingMethod = [] CtClass current = cRegistered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Dec 24 14:15:15 UTC 2025 - 4.2K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/model/SimpleClassMetaDataRepository.java
T t = classes.get(fullyQualifiedClassName); if (t != null) { t.attach(this); } return t; } private List<String> findPossibleMatches(String fullyQualifiedClassName) { List<String> candidates = new ArrayList<String>(); for (String className : classes.keySet()) { if (getLevenshteinDistance(fullyQualifiedClassName, className) < 8) {
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed May 21 06:20:45 UTC 2025 - 4K bytes - Viewed (0) -
docs/ja/docs/tutorial/query-params-str-validations.md
また、値が指定されていない場合はデフォルトの`list`を定義することもできます。 {* ../../docs_src/query_params_str_validations/tutorial012.py hl[9] *} 以下のURLを開くと: ``` http://localhost:8000/items/ ``` `q`のデフォルトは: `["foo", "bar"]` となり、レスポンスは以下のようになります: ```JSON { "q": [ "foo", "bar" ] } ``` #### `list`を使う `List[str]`の代わりに直接`list`を使うこともできます:Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 10.2K bytes - Viewed (0) -
docs/es/docs/python-types.md
#### Lista { #list } Por ejemplo, vamos a definir una variable para ser una `list` de `str`. Declara la variable, con la misma sintaxis de dos puntos (`:`). Como tipo, pon `list`. Como la lista es un tipo que contiene algunos tipos internos, los pones entre corchetes:Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 16.4K bytes - Viewed (1) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/rule/RuleManagerTest.java
public void clearRules() { rules.clear(); } public List<Rule> getRules() { return new ArrayList<>(rules); } } /** * Thread-safe implementation of RuleManager */ public static class ThreadSafeRuleManager implements RuleManager { private final List<Rule> rules = new CopyOnWriteArrayList<>(); @Override
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 23.8K bytes - Viewed (0) -
docs/ru/docs/python-types.md
#### List { #list } Например, давайте определим переменную как `list` из `str`. Объявите переменную с тем же синтаксисом двоеточия (`:`). В качестве типа укажите `list`. Так как список — это тип, содержащий внутренние типы, укажите их в квадратных скобках:Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 24.4K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/transform/AbstractVersionTransformation.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.repository.legacy.resolver.transform; import javax.inject.Inject; import java.util.List; import org.apache.maven.artifact.Artifact; import org.apache.maven.artifact.repository.ArtifactRepository; import org.apache.maven.artifact.repository.DefaultRepositoryRequest;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 5.2K bytes - Viewed (0) -
tests/test_invalid_path_param.py
def test_invalid_sequence(): with pytest.raises(AssertionError): app = FastAPI() class Item(BaseModel): title: str @app.get("/items/{id}") def read_items(id: list[Item]): pass # pragma: no cover def test_invalid_tuple(): with pytest.raises(AssertionError): app = FastAPI() class Item(BaseModel): title: str
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 21:25:59 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelInfo.java
*/ public long getRequestsPending() { return pendingOperations.size(); } /** * Get pending operations list * * @return list of pending operations */ public List<CommonServerMessageBlock> getPendingOperations() { return pendingOperations; } /** * Add a pending operation *Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 10.6K bytes - Viewed (0)