Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 143 for minuter (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/main/webapp/js/help.js

            "z-index": "10000"
          },
          listSelectedCssInfo: {
            "background-color": "rgba(82, 168, 236, 0.1)"
          },
          listDeselectedCssInfo: {
            "background-color": "#ffffff"
          },
          minterm: 1,
          adjustWidthVal: 11,
          searchForm: $("#searchForm")
        });
      }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/PopularWordHelper.java

                    .maximumSize(fessConfig.getSuggestPopularWordCacheSizeAsInteger().longValue())
                    .expireAfterWrite(fessConfig.getSuggestPopularWordCacheExpireAsInteger().longValue(), TimeUnit.MINUTES)
                    .build();
        }
    
        /**
         * Retrieves a list of popular words based on the specified search parameters.
         * Uses caching to improve performance for repeated requests.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  8. src/main/webapp/js/advance.js

            "z-index": "10000"
          },
          listSelectedCssInfo: {
            "background-color": "rgba(82, 168, 236, 0.1)"
          },
          listDeselectedCssInfo: {
            "background-color": "#ffffff"
          },
          minterm: 1,
          adjustWidthVal: 11,
          searchForm: $("#searchForm")
        });
      }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. src/main/webapp/js/index.js

            "z-index": "10000"
          },
          listSelectedCssInfo: {
            "background-color": "rgba(82, 168, 236, 0.1)"
          },
          listDeselectedCssInfo: {
            "background-color": "#ffffff"
          },
          minterm: 1,
          adjustWidthVal: 11,
          searchForm: $("#searchForm")
        });
      }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. docs/de/docs/deployment/docker.md

    │   └── main.py
    ├── Dockerfile
    └── requirements.txt
    ```
    
    #### Hinter einem TLS-Terminierungsproxy
    
    Wenn Sie Ihren Container hinter einem TLS-Terminierungsproxy (Load Balancer) wie Nginx oder Traefik ausführen, fügen Sie die Option `--proxy-headers` hinzu. Das sagt Uvicorn, den von diesem Proxy gesendeten Headern zu vertrauen und dass die Anwendung hinter HTTPS ausgeführt wird, usw.
    
    ```Dockerfile
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Nov 09 16:39:20 UTC 2024
    - 38.9K bytes
    - Viewed (0)
Back to top