- Sort Score
- Num 10 results
- Language All
Results 141 - 150 of 1,790 for NOTE (0.1 seconds)
-
ci/official/README.md
# # You will need the NVIDIA Container Toolkit for GPU testing: # https://github.com/NVIDIA/nvidia-container-toolkit # # Note: if you interrupt a bazel command on docker (ctrl-c), you # will need to run `docker exec tf pkill bazel` to quit bazel. # # Note: new files created from the container are owned by "root". # You can run e.g. `docker exec tf chown -R $(id -u):$(id -g) build_output`
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Thu Feb 01 03:21:19 GMT 2024 - 8K bytes - Click Count (0) -
.bazelversion
7.7.0
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Thu Oct 30 17:27:38 GMT 2025 - 85 bytes - Click Count (0) -
docs/zh/docs/advanced/testing-websockets.md
# 测试 WebSockets { #testing-websockets } 你可以使用同一个 `TestClient` 来测试 WebSockets。 为此,在 `with` 语句中使用 `TestClient` 连接到 WebSocket: {* ../../docs_src/app_testing/tutorial002_py310.py hl[27:31] *} /// note | 注意 更多细节请查看 Starlette 的文档:[测试 WebSockets](https://www.starlette.dev/testclient/#testing-websocket-sessions)。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 403 bytes - Click Count (0) -
android/guava/src/com/google/common/base/Suppliers.java
* words, the new supplier's value will be computed by retrieving the value from {@code supplier}, * and then applying {@code function} to that value. Note that the resulting supplier will not * call {@code supplier} or invoke {@code function} until it is called. */ public static <F extends @Nullable Object, T extends @Nullable Object> Supplier<T> compose(
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 31 21:24:28 GMT 2026 - 16.1K bytes - Click Count (0) -
android/guava/src/com/google/common/cache/CacheLoader.java
* * <p>This implementation synchronously delegates to {@link #load}. It is recommended that it be * overridden with an asynchronous implementation when using {@link * CacheBuilder#refreshAfterWrite}. * * <p><b>Note:</b> <i>all exceptions thrown by this method will be logged and then swallowed</i>. * * @param key the non-null key whose value should be loaded * @param oldValue the non-null old value corresponding to {@code key}Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Jan 28 22:39:02 GMT 2026 - 9.7K bytes - Click Count (0) -
guava/src/com/google/common/cache/CacheBuilder.java
* API</h2> * * <p>The successor to Guava's caching API is <a * href="https://github.com/ben-manes/caffeine/wiki">Caffeine</a>. Its API is designed to make it a * nearly drop-in replacement. Note that it is not available for Android or GWT/J2CL and that it may * have <a href="https://github.com/ben-manes/caffeine/wiki/Guava">different (usually better)
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Feb 23 13:13:59 GMT 2026 - 51.7K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/RepositorySystem.java
* mirror, its URL and ID will be updated to match the values from the mirror specification. Repositories without a * matching mirror will pass through unchanged. Note: This method must be called before * {@link #injectAuthentication(List, List)} or the repositories will end up with the wrong credentials. *Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 7.7K bytes - Click Count (0) -
docs/zh/docs/tutorial/middleware.md
* 它接收你的应用的每一个**请求**。 * 然后它可以对这个**请求**做一些事情或者执行任何需要的代码。 * 然后它将这个**请求**传递给应用程序的其他部分(某个*路径操作*)处理。 * 之后它获取应用程序生成的**响应**(由某个*路径操作*产生)。 * 它可以对该**响应**做一些事情或者执行任何需要的代码。 * 然后它返回这个**响应**。 /// note | 技术细节 如果你有使用 `yield` 的依赖,依赖中的退出代码会在中间件之后运行。 如果有任何后台任务(会在[后台任务](background-tasks.md)一节中介绍,你稍后会看到),它们会在所有中间件之后运行。 /// ## 创建中间件 { #create-a-middleware } 要创建中间件,你可以在函数的顶部使用装饰器 `@app.middleware("http")`。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 3.7K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/ProjectSegment.java
import org.apache.maven.execution.ProjectDependencyGraph; import org.apache.maven.project.MavenProject; /** * A build context that matches a Maven project to a given task segment, and the session to be used. * <p> * A note to the reader; * </p> * <p> * There are several issues/discussions regarding how "aggregator" plugins should be handled. * Read for instance http://docs.codehaus.org/display/MAVEN/Deterministic+Lifecycle+Planning * </p>
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 3.5K bytes - Click Count (0) -
guava/src/com/google/common/base/Converter.java
* <li>{@code stringConverter().reverse().convert(1.0)} returns the string {@code "1.0"} -- * <i>not</i> the same string ({@code "1.00"}) we started with * </ol> * * <p>Note that it should still be the case that the round-tripped and original objects are * <i>similar</i>. * * <h3>Nullability</h3> *
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Jun 18 21:43:06 GMT 2025 - 22.8K bytes - Click Count (0)