- Sort Score
- Num 10 results
- Language All
Results 2471 - 2480 of 3,625 for Gist (0.43 seconds)
-
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectManager.java
} @Override @Nonnull public List<RemoteRepository> getRemoteProjectRepositories(@Nonnull Project project) { return Collections.unmodifiableList(new MappedList<>( getMavenProject(project).getRemoteProjectRepositories(), session::getRemoteRepository)); } @Override @Nonnull public List<RemoteRepository> getRemotePluginRepositories(@Nonnull Project project) {Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Dec 17 16:17:01 GMT 2025 - 10.9K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/extra-models.md
```Python some_variable: PlaneItem | CarItem ``` 但若寫成指定值 `response_model=PlaneItem | CarItem` 會發生錯誤,因為 Python 會嘗試在 `PlaneItem` 與 `CarItem` 之間執行「無效運算」,而非將其視為型別註記。 ## 模型的清單 { #list-of-models } 同樣地,你可以將回應宣告為物件的 `list`。 為此,使用標準的 Python `list`: {* ../../docs_src/extra_models/tutorial004_py310.py hl[18] *} ## 以任意 `dict` 作為回應 { #response-with-arbitrary-dict } 你也可以用一般的任意 `dict` 宣告回應,只需指定鍵和值的型別,而不必使用 Pydantic 模型。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 6.3K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/Hc5HttpClient.java
@Resource protected MimeTypeHelper mimeTypeHelper; /** The HTTP client instance */ protected volatile CloseableHttpClient httpClient; /** List of request headers to be sent with each request */ private final List<Header> requestHeaderList = new ArrayList<>(); /** Map of HTTP client properties */ private final Map<String, Object> httpClientPropertyMap = new HashMap<>();Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Sat Jan 31 12:23:29 GMT 2026 - 62.2K bytes - Click Count (0) -
.gitignore
/tensorflow/python/framework/fast_tensor_util.cpp /tensorflow/lite/gen/** /tensorflow/lite/tools/make/downloads/** /tensorflow/lite/tools/make/gen/** /api_init_files_list.txt /estimator_api_init_files_list.txt *.whl dist venv/ # Android .gradle .idea *.iml local.properties gradleBuild # iOS *.pbxproj *.xcworkspace /*.podspec /tensorflow/lite/**/coreml/**/BUILD /tensorflow/lite/**/ios/BUILD
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Tue Mar 17 21:30:22 GMT 2026 - 963 bytes - Click Count (0) -
android/guava/src/com/google/common/base/Joiner.java
import com.google.errorprone.annotations.CanIgnoreReturnValue; import java.io.IOException; import java.util.AbstractList; import java.util.Arrays; import java.util.Iterator; import java.util.List; import java.util.Map; import java.util.Map.Entry; import org.jspecify.annotations.Nullable; /** * An object which joins pieces of text (specified as an array, {@link Iterable}, varargs or even a
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 17 20:26:29 GMT 2025 - 19.3K bytes - Click Count (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle
tasks.register("cleanAcceptedApiChanges", CleanAcceptedApiChanges) { description = 'Cleans up all existing accepted API changes.' jsonFileDirectory = apiChangesJsonDirectory } static List<String> toPatterns(List<String> packages) { packages.collect { it.replaceAll('\\*\\*', '###') .replaceAll('/\\*', '/[A-Z][a-z_A-Z0-9]+') .replaceAll('$', '\\$') .replaceAll('/', '[.]')
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Dec 30 10:14:25 GMT 2025 - 8.9K bytes - Click Count (0) -
guava/src/com/google/common/collect/ArrayListMultimap.java
import java.io.IOException; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import java.util.ArrayList; import java.util.Collection; import java.util.HashMap; import java.util.List; import java.util.Map; import org.jspecify.annotations.Nullable; /** * Implementation of {@code Multimap} that uses an {@code ArrayList} to store the values for a givenCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Dec 05 23:15:58 GMT 2025 - 6.8K bytes - Click Count (0) -
apache-maven/src/main/appended-resources/META-INF/NOTICE.vm
binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the copyright holders nor the names of its...
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sat Sep 10 19:27:25 GMT 2022 - 5.5K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/transfer/SimplexTransferListener.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.cling.transfer; import java.util.ArrayList; import java.util.List; import java.util.concurrent.ArrayBlockingQueue; import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.CountDownLatch; import java.util.concurrent.atomic.AtomicBoolean; import java.util.function.Consumer;
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Feb 06 11:28:05 GMT 2025 - 8.7K bytes - Click Count (0) -
docs/ja/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md
しかし、それでも実行・解決される必要があります。 そのような場合、`Depends` で *path operation 関数* のパラメータを宣言する代わりに、*path operation デコレータ*に `dependencies` の `list` を追加できます。 ## *path operation デコレータ*に`dependencies`を追加 { #add-dependencies-to-the-path-operation-decorator } *path operation デコレータ*はオプション引数`dependencies`を受け取ります。 それは`Depends()`の`list`であるべきです: {* ../../docs_src/dependencies/tutorial006_an_py310.py hl[19] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 3.6K bytes - Click Count (0)