- Sort Score
- Num 10 results
- Language All
Results 41 - 50 of 196 for periods (0.07 seconds)
-
android/guava-tests/test/com/google/common/util/concurrent/WrappingScheduledExecutorServiceTest.java
@Override public ScheduledFuture<?> scheduleAtFixedRate( Runnable command, long initialDelay, long period, TimeUnit unit) { assertThat(command).isInstanceOf(WrappedRunnable.class); lastMethodCalled = "scheduleAtFixedRate"; lastInitialDelay = initialDelay; lastDelay = period; lastUnit = unit; return null; } @OverrideCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 7.5K bytes - Click Count (0) -
guava-tests/test/com/google/common/util/concurrent/ListeningScheduledExecutorServiceTest.java
} } @Override public ListenableScheduledFuture<?> scheduleAtFixedRate( Runnable command, long initialDelay, long period, TimeUnit unit) { recordedCommand = command; recordedDelay = initialDelay; recordedInterval = period; recordedTimeUnit = unit; return ImmediateScheduledFuture.of("scheduleAtFixedRate"); } @OverrideCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Mar 07 02:20:33 GMT 2026 - 6.5K bytes - Click Count (0) -
src/main/assemblies/extension/kibana/README.md
1. Click **Create index pattern**. 1. Click **Saved Objects**. 1. Click **Import** and select "fess\_log.ndjson" to import example settings. 1. Click **Dashboard**. 1. Select "fess\_log" dashboard. 1. (Change the period from upper right if you want to do.) ## FAQ #### Q. Kibana can't connect Elasticsearch. A. Please check `${KIBANA_HOME}/config/kibana.yml` and set correct Elasticsearch URL. Example: ```
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Aug 12 01:26:21 GMT 2019 - 1.2K bytes - Click Count (0) -
docs/bucket/retention/README.md
Object locking requires locking to be enabled on a bucket at the time of bucket creation refer to `mc mb --with-lock`, object locking enables versioning on the bucket and cannot be disabled.
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue Aug 12 18:20:36 GMT 2025 - 4K bytes - Click Count (0) -
docs/ja/llm-prompt.md
- Keep the tone concise and technical (match existing Japanese FastAPI docs). ### Headings - Follow the existing Japanese style: short, descriptive headings (often noun phrases), e.g. 「チェック」. - Do not add a trailing period at the end of headings. ### Quotes - Prefer Japanese corner brackets 「」 in normal prose when quoting a term. - Do not change quotes inside inline code, code blocks, URLs, or file paths. ### Ellipsis
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Feb 04 16:44:21 GMT 2026 - 1.3K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/ListeningScheduledExecutorService.java
/** * @since 15.0 (previously returned ScheduledFuture) */ @Override ListenableScheduledFuture<?> scheduleAtFixedRate( Runnable command, long initialDelay, long period, TimeUnit unit); /** * @since 15.0 (previously returned ScheduledFuture) */ @Override ListenableScheduledFuture<?> scheduleWithFixedDelay(
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Feb 11 17:30:04 GMT 2025 - 2.1K bytes - Click Count (0) -
mockwebserver-deprecated/src/main/kotlin/okhttp3/mockwebserver/MockResponse.kt
apply { this.http2ErrorCode = http2ErrorCode } fun throttleBody( bytesPerPeriod: Long, period: Long, unit: TimeUnit, ) = apply { throttleBytesPerPeriod = bytesPerPeriod throttlePeriodAmount = period throttlePeriodUnit = unit } fun getThrottlePeriod(unit: TimeUnit): Long = unit.convert(throttlePeriodAmount, throttlePeriodUnit)Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sat May 10 11:15:14 GMT 2025 - 7.1K bytes - Click Count (1) -
.github/PULL_REQUEST_TEMPLATE
+ The package name goes before the colon + The part after the colon uses the verb tense + phrase that completes the blank in, "This change modifies Go to ___________" + Lowercase verb after the colon + No trailing period + Keep the title as short as possible. ideally under 76 characters or shorter + No Markdown + The first PR comment (this one) is wrapped at 76 characters, unless it's really needed (ASCII art, table, or long link)Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Wed Feb 21 02:07:46 GMT 2018 - 1.2K bytes - Click Count (0) -
src/main/java/jcifs/util/transport/ConnectionTimeoutException.java
*/ package jcifs.util.transport; /** * Exception thrown when a network connection times out during SMB communication. * Indicates that the connection could not be established within the specified timeout period. * * @author mbechler */ public class ConnectionTimeoutException extends TransportException { /** * */ private static final long serialVersionUID = 7327198103204592731L; /**Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 2K bytes - Click Count (0) -
internal/bucket/object/lock/lock.go
if *retention.Days == 0 { return fmt.Errorf("Default retention period must be a positive integer value for 'Days'") } if *retention.Days > maximumRetentionDays { return fmt.Errorf("Default retention period too large for 'Days' %d", *retention.Days) } } else if *retention.Years == 0 { return fmt.Errorf("Default retention period must be a positive integer value for 'Years'")Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 17.9K bytes - Click Count (0)