Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 86 for Minuten (0.08 sec)

  1. src/main/java/jcifs/dcerpc/msrpc/srvsvc.java

            /**
             * The current minute (0-59).
             */
            public int mins;
            /**
             * The current second (0-59).
             */
            public int secs;
            /**
             * The current hundredth of a second (0-99).
             */
            public int hunds;
            /**
             * The time zone offset from UTC in minutes.
             */
            public int timezone;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 27K bytes
    - Viewed (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cookie.kt

          require(hour in 0..23)
          require(minute in 0..59)
          require(second in 0..59)
    
          GregorianCalendar(UTC).apply {
            isLenient = false
            set(Calendar.YEAR, year)
            set(Calendar.MONTH, month - 1)
            set(Calendar.DAY_OF_MONTH, dayOfMonth)
            set(Calendar.HOUR_OF_DAY, hour)
            set(Calendar.MINUTE, minute)
            set(Calendar.SECOND, second)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 23.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/util/AuthenticationRateLimiter.java

         *
         * @param maxAttemptsPerAccount max failed attempts per account before lockout
         * @param maxAttemptsPerIp max attempts from single IP
         * @param maxGlobalAttemptsPerMinute max global attempts per minute
         * @param lockoutDuration duration to lock out account/IP
         * @param cleanupInterval interval for cleaning up old entries
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/config/BaseConfiguration.java

        /**
         * Timeout in milliseconds for witness heartbeat messages
         */
        protected long witnessHeartbeatTimeout = 120000; // 2 minutes
        /**
         * Timeout in milliseconds for witness registration
         */
        protected long witnessRegistrationTimeout = 300000; // 5 minutes
        /**
         * Delay in milliseconds before attempting witness reconnection
         */
        protected long witnessReconnectDelay = 1000; // 1 second
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/util/ResourceManager.java

        private volatile boolean shutdownInProgress = false;
    
        // Configuration
        private long maxResourceAge = TimeUnit.HOURS.toMillis(1); // 1 hour default
        private long cleanupInterval = TimeUnit.MINUTES.toMillis(5); // 5 minutes default
        private boolean leakDetectionEnabled = true;
        private boolean autoCleanupEnabled = true;
    
        /**
         * Resource holder that tracks resource lifecycle
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.2K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/cache/CacheExpirationTest.java

        Cache<Integer, Integer> cache =
            CacheBuilder.newBuilder()
                .expireAfterAccess(1, MINUTES)
                .removalListener(listener)
                .ticker(ticker)
                .build();
        cache.put(1, 1);
        ticker.advance(10, MINUTES);
        cache.invalidateAll();
    
        assertThat(listener.poll().getCause()).isEqualTo(RemovalCause.EXPIRED);
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 18.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb1/com/ServerData.java

         * Maximum raw buffer size for raw read/write operations.
         */
        public int maxRawSize;
        /**
         * Server's system time.
         */
        public long serverTime;
        /**
         * Server's time zone offset in minutes from UTC.
         */
        public int serverTimeZone;
        /**
         * Length of the encryption key.
         */
        public int encryptionKeyLength;
        /**
         * Encryption key for password encryption.
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  8. docs/smb3-features/02-persistent-handles-design.md

        public static final int SMB2_DHANDLE_FLAG_PERSISTENT = 0x00000002;
        
        // Timeout values (milliseconds)
        public static final long DEFAULT_DURABLE_TIMEOUT = 120000;  // 2 minutes
        public static final long MAX_DURABLE_TIMEOUT = 300000;      // 5 minutes
        public static final long PERSISTENT_TIMEOUT = 0;            // Infinite for persistent
    }
    ```
    
    ## 4. Data Structures
    
    ### 4.1 Handle GUID Structure
    ```java
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 31.6K bytes
    - Viewed (0)
  9. okhttp/src/jvmTest/kotlin/okhttp3/CacheTest.kt

            .addHeader("Date: " + formatDate(-2, TimeUnit.MINUTES))
            .addHeader("Cache-Control: s-maxage=60")
            .addHeader("Cache-Control: max-age=180")
            .build(),
        )
      }
    
      @Test
      fun maxAgePreferredOverHigherMaxAge() {
        assertNotCached(
          MockResponse
            .Builder()
            .addHeader("Date: " + formatDate(-2, TimeUnit.MINUTES))
            .addHeader("Cache-Control: s-maxage=180")
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 16 09:39:51 UTC 2025
    - 113.6K bytes
    - Viewed (0)
  10. src/test/java/jcifs/util/AuthenticationRateLimiterTest.java

            // Create rate limiter with test-friendly settings
            rateLimiter = new AuthenticationRateLimiter(3, // max attempts per account
                    5, // max attempts per IP
                    20, // max global attempts per minute
                    Duration.ofSeconds(2), // short lockout for testing
                    Duration.ofMinutes(1) // cleanup interval
            );
        }
    
        @AfterEach
        public void tearDown() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 15.8K bytes
    - Viewed (0)
Back to top