- Sort Score
- Num 10 results
- Language All
Results 341 - 350 of 494 for shard (0.02 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
android/guava/src/com/google/common/hash/Striped64.java
* scattered in memory and thus don't interfere much with each * other. But Atomic objects residing in arrays will tend to be * placed adjacent to each other, and so will most often share * cache lines (with a huge negative performance impact) without * this precaution. * * In part because Cells are relatively large, we avoid creating
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Jan 15 22:17:15 GMT 2025 - 11.4K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/AbstractUpgradeGoal.java
import static eu.maveniverse.domtrip.maven.MavenPomElements.Files.MVN_DIRECTORY; import static eu.maveniverse.domtrip.maven.MavenPomElements.ModelVersions.MODEL_VERSION_4_1_0; /** * Base class for upgrade goals containing shared functionality. * Subclasses only differ in whether they save modifications to disk. * * <h2>Supported Upgrades</h2> * * <h3>Model Version Upgrades</h3> * <ul>
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 12.5K bytes - Click Count (0) -
docs/pt/docs/tutorial/dependencies/index.md
Você apenas envia para `Depends` e o **FastAPI** sabe como fazer o resto. /// ## Compartilhando dependências `Annotated` { #share-annotated-dependencies } Nos exemplos acima, você pode ver que existe uma pequena **duplicação de código**.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 10.6K bytes - Click Count (0) -
docs/zh/docs/tutorial/dependencies/index.md
``` 这样,你只需编写一次共享代码,**FastAPI** 会在你的*路径操作*中为你调用它。 /// check | 检查 注意,无需创建专门的类并传给 **FastAPI** 去“注册”之类的操作。 只要把它传给 `Depends`,**FastAPI** 就知道该怎么做了。 /// ## 共享 `Annotated` 依赖项 { #share-annotated-dependencies } 在上面的示例中,你会发现这里有一点点**代码重复**。 当你需要使用 `common_parameters()` 这个依赖时,你必须写出完整的带类型注解和 `Depends()` 的参数: ```Python commons: Annotated[dict, Depends(common_parameters)] ```Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 8.7K bytes - Click Count (0) -
misc/cgo/gmp/gmp.go
files. The first two, 6g.go and 6c.c, are a Go source file for 6g and a C source file for 6c; both compile as part of the named package (gmp, in this example). The third, gcc.c, is a C source file for gcc; it compiles into a shared object (.so) that is dynamically linked into any 6.out that imports the first two files. The stanza // #include <gmp.h> import "C" is a signal to cgo. The doc comment on the import of "C" provides
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Mon Apr 11 16:34:30 GMT 2022 - 9.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/base/FessAdminActionTest.java
final Path baseDir = Files.createDirectories(tempDir.resolve("vardata")); System.setProperty("fess.var.path", baseDir.toString()); // A directory that does NOT share the prefix final Path otherDir = Files.createDirectories(tempDir.resolve("other")); final File fileInOther = new File(otherDir.toFile(), "test.txt"); fileInOther.createNewFile();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 22.7K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/dependencies/index.md
``` 如此一來,你只需撰寫一次共用程式碼,**FastAPI** 會替你的各個「路徑操作」呼叫它。 /// check | 檢查 注意,你不必建立特殊的類別並把它傳到 **FastAPI** 去「註冊」或做類似的事。 只要把它傳給 `Depends`,**FastAPI** 就知道該怎麼處理其餘的部分。 /// ## 共用 `Annotated` 依賴 { #share-annotated-dependencies } 在上面的範例中,可以看到有一點點的「重複程式碼」。 當你要使用 `common_parameters()` 這個依賴時,你得寫出完整的型別註解搭配 `Depends()`: ```Python commons: Annotated[dict, Depends(common_parameters)] ```Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 8.9K bytes - Click Count (0) -
architecture/standards/0006-use-of-provider-apis-in-gradle.md
The Gradle codebase has evolved over time and has a mixture of simple getter/setter methods, Provider API and things in between. It can be hard to follow best practices because Gradle provided types are reused in unexpected ways and extended by third party plugins.
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 05 12:39:41 GMT 2026 - 10K bytes - Click Count (0) -
android/guava/src/com/google/common/io/FileBackedOutputStream.java
* It's theoretically possible for Reference.reachabilityFence to exist under older VMs but * not work. (Under Android in particular, we really should check the API Level instead of * probing for methods....) But it's hard to imagine how reachabilityFence in particular could * exist but throw, so we propagate anything that's thrown, presumably an unchecked Exception * or Error. */ throwIfUnchecked(e.getCause());
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Mar 07 17:30:49 GMT 2026 - 12.4K bytes - Click Count (0) -
src/test/java/jcifs/dcerpc/msrpc/MsrpcShareGetInfoTest.java
assertEquals(testSharename, msrpcShareGetInfo.sharename); } @ParameterizedTest @NullAndEmptySource @ValueSource(strings = { "", "share1", "\\\\server\\share", "C$", "ADMIN$", "IPC$" }) void testConstructorWithDifferentSharenames(String sharename) { // Test with various sharename values MsrpcShareGetInfo shareGetInfo = new MsrpcShareGetInfo(testServer, sharename);
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 14.3K bytes - Click Count (0)