- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 115 for max_age (1.96 sec)
-
guava/src/com/google/common/util/concurrent/AbstractExecutionThreadService.java
/** * Base class for services that can implement {@link #startUp}, {@link #run} and {@link #shutDown} * methods. This class uses a single thread to execute the service; consider {@link AbstractService} * if you would like to manage any threading manually. * * @author Jesse Wilson * @since 1.0 */ @GwtIncompatible @J2ktIncompatible public abstract class AbstractExecutionThreadService implements Service {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 11 18:52:30 UTC 2025 - 7.5K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/MockHttp2Peer.kt
this.headerBlock = headerBlock } override fun alternateService( streamId: Int, origin: String, protocol: ByteString, host: String, port: Int, maxAge: Long, ): Unit = throw UnsupportedOperationException() } companion object { private val logger = Logger.getLogger(MockHttp2Peer::class.java.name) }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 8.7K bytes - Viewed (0) -
docs/en/docs/fastapi-cli.md
# FastAPI CLI { #fastapi-cli } **FastAPI CLI** is a command line program that you can use to serve your FastAPI app, manage your FastAPI project, and more. When you install FastAPI (e.g. with `pip install "fastapi[standard]"`), it includes a package called `fastapi-cli`, this package provides the `fastapi` command in the terminal. To run your FastAPI app for development, you can use the `fastapi dev` command: <div class="termy"> ```console
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 4.8K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NameTest.java
assertFalse(result.contains(".")); } @Test void writeWireFormat_withMaxLengthName_shouldHandleCorrectly() { String maxName = "123456789012345"; // 15 characters Name name = new Name(mockConfig, maxName, 0x20, null); byte[] dst = new byte[100]; int length = name.writeWireFormat(dst, 0); // Should encode all 15 characters
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.4K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/AbstractExecutionThreadService.java
/** * Base class for services that can implement {@link #startUp}, {@link #run} and {@link #shutDown} * methods. This class uses a single thread to execute the service; consider {@link AbstractService} * if you would like to manage any threading manually. * * @author Jesse Wilson * @since 1.0 */ @GwtIncompatible @J2ktIncompatible public abstract class AbstractExecutionThreadService implements Service {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 11 18:52:30 UTC 2025 - 7.2K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ExecutionList.java
import java.util.concurrent.Executor; import java.util.logging.Level; import org.jspecify.annotations.Nullable; /** * A support class for {@code ListenableFuture} implementations to manage their listeners. An * instance contains a list of listeners, each with an associated {@code Executor}, and guarantees * that every {@code Runnable} that is {@linkplain #add added} will be executed after {@link
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 6.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/JobLogService.java
import jakarta.annotation.Resource; /** * Service class for managing job logs in the Fess application. * Provides functionality to create, read, update, and delete job log entries, * as well as manage job status and perform cleanup operations. */ public class JobLogService { /** * Behavior class for job log database operations. */ @Resource protected JobLogBhv jobLogBhv; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
README.md
Apache Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project's build, reporting and documentation from a central piece of information. If you think you have found a bug, please file an issue in the [Maven Issue Tracker](https://github.com/apache/maven/issues). Documentation
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:30:05 UTC 2025 - 4.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lease/LeaseManagerTest.java
assertNotNull(limitedManager.getLease(key2)); } finally { limitedManager.shutdown(); } } @Test @DisplayName("Should register and manage file cache") void testFileCache() { String path = "/share/cached.txt"; Smb2LeaseKey key = leaseManager.requestLease(path, Smb2LeaseState.SMB2_LEASE_FULL); // Register a mock file with cache
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 00:16:17 UTC 2025 - 13.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java
import org.opensearch.search.aggregations.bucket.terms.TermsAggregationBuilder; /** * Helper class for managing crawling information and statistics. * Provides functionality to track crawling sessions, manage document expiration, * and handle crawling information storage and retrieval. */ public class CrawlingInfoHelper { /** * Creates a new instance of CrawlingInfoHelper. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 15.2K bytes - Viewed (0)