- Sort Score
- Num 10 results
- Language All
Results 51 - 60 of 509 for hardlink (0.08 seconds)
-
src/test/java/org/codelibs/fess/script/ScriptEngineTest.java
assertNotNull(result); assertTrue(result instanceof TestUser); assertEquals("TestUser", ((TestUser) result).name); } // Test evaluate method with error handling @Test public void test_evaluate_withErrorTemplate() { scriptEngine = new ErrorHandlingScriptEngine(); String template = "error"; Map<String, Object> paramMap = new HashMap<>();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 12.5K bytes - Click Count (0) -
android/guava/src/com/google/common/cache/CacheStats.java
* * <p><b>Note:</b> the values of the metrics are undefined in case of overflow (though it is * guaranteed not to throw an exception). If you require specific handling, we recommend * implementing your own stats collector. */ public long requestCount() { return saturatedAdd(hitCount, missCount); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Jul 08 18:32:10 GMT 2025 - 12.6K bytes - Click Count (0) -
guava/src/com/google/common/cache/CacheStats.java
* * <p><b>Note:</b> the values of the metrics are undefined in case of overflow (though it is * guaranteed not to throw an exception). If you require specific handling, we recommend * implementing your own stats collector. */ public long requestCount() { return saturatedAdd(hitCount, missCount); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Jul 08 18:32:10 GMT 2025 - 12.6K bytes - Click Count (0) -
docs/en/docs/advanced/websockets.md
/// With that you can connect the WebSocket and then send and receive messages: <img src="/img/tutorial/websockets/image05.png"> ## Handling disconnections and multiple clients { #handling-disconnections-and-multiple-clients }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Mar 07 09:29:03 GMT 2026 - 5.3K bytes - Click Count (0) -
docs/zh/docs/how-to/custom-request-and-route.md
如果你刚开始使用 **FastAPI**,可以先跳过本节。 /// ## 使用场景 { #use-cases } 一些使用场景包括: * 将非 JSON 的请求体转换为 JSON(例如 [`msgpack`](https://msgpack.org/index.html))。 * 解压缩使用 gzip 压缩的请求体。 * 自动记录所有请求体日志。 ## 处理自定义请求体编码 { #handling-custom-request-body-encodings } 来看如何用自定义的 `Request` 子类来解压 gzip 请求。 以及一个 `APIRoute` 子类来使用该自定义请求类。 ### 创建自定义 `GzipRequest` 类 { #create-a-custom-gziprequest-class } /// tip | 提示Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 4.1K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaErrorHandler.java
import java.io.IOException; import java.net.SocketException; import java.net.SocketTimeoutException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * RDMA error handling and recovery logic. * * This class provides centralized error handling for RDMA operations, * including retry logic and fallback mechanisms. */ public class RdmaErrorHandler {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 10.5K bytes - Click Count (0) -
docs/uk/docs/how-to/custom-request-and-route.md
- Розпакування тіл запитів, стиснених gzip. - Автоматичне логування всіх тіл запитів. ## Обробка користувацьких кодувань тіла запиту { #handling-custom-request-body-encodings } Розгляньмо, як використати користувацький підклас `Request` для розпакування gzip-запитів. А також підклас `APIRoute`, щоб застосувати цей користувацький клас запиту.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 6.8K bytes - Click Count (0) -
docs/tr/docs/how-to/custom-request-and-route.md
* gzip ile sıkıştırılmış request body'leri açmak (decompress). * Tüm request body'lerini otomatik olarak loglamak. ## Özel request body encoding'lerini ele alma { #handling-custom-request-body-encodings } Gzip request'lerini açmak için özel bir `Request` alt sınıfını nasıl kullanabileceğimize bakalım. Ayrıca, o özel request sınıfını kullanmak için bir `APIRoute` alt sınıfı da oluşturacağız.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 4.9K bytes - Click Count (0) -
src/main/java/org/codelibs/core/timer/TimeoutTarget.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.core.timer; /** * This is an interface for handling timeouts. * * @author higa * */ @FunctionalInterface public interface TimeoutTarget { /** * Describes the processing for a timeout. */ void expired();Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 872 bytes - Click Count (0) -
guava-testlib/src/com/google/common/collect/testing/google/BiMapTestSuiteBuilder.java
.named(parentBuilder.getName() + " [Map]") .suppressing(parentBuilder.getSuppressedTests()) .suppressing(SetCreationTester.class.getMethods()) // BiMap.entrySet() duplicate-handling behavior is too confusing for SetCreationTester .withSetUp(parentBuilder.getSetUp()) .withTearDown(parentBuilder.getTearDown()) .createTestSuite()); /*
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Oct 30 16:15:19 GMT 2024 - 6.8K bytes - Click Count (0)