- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 302 for expiry (0.06 sec)
-
docs/bn/docs/environment-variables.md
//// tab | লিনাক্স, ম্যাকওএস, উইন্ডোজ Bash <div class="termy"> ```console // আপনি চাইলে MY_NAME নামে একটি env var তৈরি করতে পারেন $ export MY_NAME="Wade Wilson" // তারপরে এটিকে চাইলে অন্যান্য প্রোগ্রামে ব্যবহার করতে পারেন $ echo "Hello $MY_NAME" Hello Wade Wilson ``` </div> //// //// tab | উইন্ডোজ পাওয়ারশেল
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Thu Jun 05 08:15:56 UTC 2025 - 17.2K bytes - Viewed (0) -
docs/es/docs/environment-variables.md
Puedes **crear** y usar variables de entorno en la **shell (terminal)**, sin necesidad de Python: //// tab | Linux, macOS, Windows Bash <div class="termy"> ```console // Podrías crear una env var MY_NAME con $ export MY_NAME="Wade Wilson" // Luego podrías usarla con otros programas, como $ echo "Hello $MY_NAME" Hello Wade Wilson ``` </div> //// //// tab | Windows PowerShell <div class="termy">
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 8.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/backup/ApiAdminBackupAction.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
docs/em/docs/advanced/settings.md
👆 💪 ✍ & ⚙️ 🌐 🔢 🐚, 🍵 💆♂ 🐍: //// tab | 💾, 🇸🇻, 🚪 🎉 <div class="termy"> ```console // You could create an env var MY_NAME with $ export MY_NAME="Wade Wilson" // Then you could use it with other programs, like $ echo "Hello $MY_NAME" Hello Wade Wilson ``` </div> //// //// tab | 🚪 📋 <div class="termy">
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 11.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtStatus.java
int NT_STATUS_INVALID_LOGON_HOURS = 0xC000006f; /** Logon failure: user not allowed to log on to this computer */ int NT_STATUS_INVALID_WORKSTATION = 0xC0000070; /** The user's password has expired */ int NT_STATUS_PASSWORD_EXPIRED = 0xC0000071; /** The referenced account is currently disabled */ int NT_STATUS_ACCOUNT_DISABLED = 0xC0000072; /** No mapping between account names and security IDs was done */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 13.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/cache/LocalCacheTest.java
assertThat(map.segments).hasLength(4); // initial capacity / concurrency level assertEquals(16 / map.segments.length, map.segments[0].table.length()); assertFalse(map.evictsBySize()); assertFalse(map.expires()); assertFalse(map.expiresAfterWrite()); assertFalse(map.expiresAfterAccess()); assertFalse(map.refreshes()); } public void testSetKeyEquivalence() { Equivalence<Object> testEquivalence =
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 110.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/witness/WitnessEnumTest.java
assertNotNull(WitnessRegistration.WitnessRegistrationState.UNREGISTERING); assertNotNull(WitnessRegistration.WitnessRegistrationState.FAILED); assertNotNull(WitnessRegistration.WitnessRegistrationState.EXPIRED); } @Test void testEnumToStringConversions() { // Test that enum toString methods work properly assertEquals("CLUSTER_WITNESS", WitnessServiceType.CLUSTER_WITNESS.toString());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 6.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureBenchmarks.java
setState(finalState); return true; } /** * Blocks until the task is complete or the timeout expires. Throws a {@link TimeoutException} * if the timer expires, otherwise behaves like {@link #get()}. */ V get(long nanos) throws TimeoutException, CancellationException, ExecutionException, InterruptedException {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jan 30 16:59:10 UTC 2025 - 13.7K bytes - Viewed (0) -
src/test/java/jcifs/smb/Kerb5ContextTest.java
// Arrange GSS context so method can run without NPE GSSName src = mock(GSSName.class); GSSName targ = mock(GSSName.class); when(src.export()).thenReturn(buildExportName(new Oid("1.2.3"), "client")); when(targ.export()).thenReturn(buildExportName(new Oid("1.2.3"), "service")); when(gssContext.getSrcName()).thenReturn(src); when(gssContext.getTargName()).thenReturn(targ);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 14.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/AzureAdCredential.java
if (tokenExpiryTime < currentTime) { if (logger.isDebugEnabled()) { logger.debug("Token expired: expiryTime={}, currentTime={}", tokenExpiryTime, currentTime); } return false; } // Attempt to refresh token using MSAL4J silent authentication try {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 28 09:13:08 UTC 2025 - 7.5K bytes - Viewed (0)