- Sort Score
- Num 10 results
- Language All
Results 1711 - 1720 of over 10,000 for TO (0.12 seconds)
-
cmd/tier-last-day-stats.go
} // forwardTo moves time to t, clearing entries between last update and t. func (l *lastDayTierStats) forwardTo(t time.Time) { if t.IsZero() { t = time.Now() } since := t.Sub(l.UpdatedAt).Hours() // within the hour since l.UpdatedAt if since < 1 { return } idx, lastIdx := t.Hour(), l.UpdatedAt.Hour() l.UpdatedAt = t // update to the latest time index if since >= 24 {
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Mon Feb 19 22:54:46 GMT 2024 - 2.8K bytes - Click Count (0) -
src/main/java/org/codelibs/core/convert/IntegerConversionUtil.java
} /** * Converts to {@literal int}. * * @param o * The object to convert * @return The converted {@literal int} */ public static int toPrimitiveInt(final Object o) { return toPrimitiveInt(o, null); } /** * Converts to {@literal int}. * * @param o * The object to convert * @param patternCreated: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 3.2K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/PruneChangelogsTask.java
import java.util.stream.Stream; import javax.inject.Inject; /** * Once a minor release has happened, we no longer need to keep the changelog files that went into * that release in the development branch for that major series or the branch for the next major * series * <p> * This last examines the git history in order to work out which files can be deleted, and * does the deletion after confirming with the user. */
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Fri Sep 24 10:57:02 GMT 2021 - 6.6K bytes - Click Count (0) -
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/JSpecifyNullabilityChangesTest.kt
"Field finalField: From non-nullable to nullable breaking change.", "Method com.example.Source.foo(): From non-null returning to null returning breaking change." ) assertHasNoWarning() assertHasNoInformation() } } @Test fun `from non-null array element returning to null returning is breaking`() { checkNotBinaryCompatibleJava(Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu May 15 17:05:08 GMT 2025 - 18K bytes - Click Count (0) -
src/main/java/jcifs/ntlmssp/NtlmMessage.java
* @param flag * The flag to test (i.e., <code>NTLMSSP_NEGOTIATE_OEM</code>). * @return A <code>boolean</code> indicating whether the flag is set. */ public boolean getFlag(final int flag) { return (getFlags() & flag) != 0; } /** * Sets or clears the specified flag. * * @param flag * The flag to set/clear (i.e.,Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 5.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/SearchLogService.java
logger.debug("Failed to parse {}", pager.requestedTimeRange, e); } } } } /** * Parses a date/time string and converts it to UTC timezone. * * @param value The date/time string to parse * @param formatter The date/time formatter to use * @return LocalDateTime in UTC timezone */
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 32.7K bytes - Click Count (0) -
docs/tls/kubernetes/README.md
[Kubernetes secrets](https://kubernetes.io/docs/concepts/configuration/secret) are intended to hold sensitive information. We'll use secrets to hold the TLS certificate and key. To create a secret, update the paths to `private.key` and `public.crt` below. Then type ```sh kubectl create secret generic tls-ssl-minio --from-file=path/to/private.key --from-file=path/to/public.crt ``` Cross check if the secret is created successfully using
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue Aug 12 18:20:36 GMT 2025 - 3K bytes - Click Count (0) -
docs/zh/docs/deployment/fastapicloud.md
请确保你已有 **FastAPI Cloud** 账号(我们已从候补名单向你发出邀请 😉)。 然后登录: <div class="termy"> ```console $ fastapi login You are logged in to FastAPI Cloud 🚀 ``` </div> ## 部署 { #deploy } 现在用**一条命令**部署你的应用: <div class="termy"> ```console $ fastapi deploy Deploying to FastAPI Cloud... ✅ Deployment successful! 🐔 Ready the chicken! Your app is ready at https://myapp.fastapicloud.dev ```
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 1.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/pager/GroupPager.java
private boolean existPrePage; /** Flag indicating whether a next page exists. */ private boolean existNextPage; /** List of page numbers to display in pagination navigation. */ private List<Integer> pageNumberList; /** Number of records to display per page. */ private int pageSize; /** Current page number being displayed. */ private int currentPageNumber;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 7K bytes - Click Count (0) -
guava/src/com/google/common/collect/ImmutableMultiset.java
* elements are the result of applying {@code elementFunction} to the inputs, with counts equal to * the result of applying {@code countFunction} to the inputs. * * <p>If the mapped elements contain duplicates (according to {@link Object#equals}), the first * occurrence in encounter order appears in the resulting multiset, with count equal to the sum ofCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Sep 22 21:07:18 GMT 2025 - 20.6K bytes - Click Count (0)