- Sort Score
- Result 10 results
- Languages All
Results 291 - 300 of 377 for initialAge (0.96 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/AdminDictKuromojiAction.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 21.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/Smb3KeyDerivationTest.java
*/ @DisplayName("Smb3KeyDerivation Tests") class Smb3KeyDerivationTest { private byte[] sessionKey; private byte[] preauthIntegrity; @BeforeEach void setUp() { // Initialize test keys sessionKey = new byte[16]; // 128-bit session key preauthIntegrity = new byte[64]; // Preauth integrity hash new SecureRandom().nextBytes(sessionKey);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.5K bytes - Viewed (0) -
helm-releases/minio-2.0.1.tgz
minio/templates/configmap.yaml apiVersion: v1 kind: ConfigMap metadata: name: {{ template "minio.fullname" . }} labels: app: {{ template "minio.name" . }} chart: {{ template "minio.chart" . }} release: {{ .Release.Name }} heritage: {{ .Release.Service }} data: initialize: |- {{ include (print $.Template.BasePath "/_helper_create_bucket.txt") . | indent 4 }} add-user: |- {{ include (print $.Template.BasePath "/_helper_create_user.txt") . | indent 4 }} minio/templates/console-ingress.yaml {{- if .Values.consoleIngress.enabled...
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 31 09:09:09 UTC 2021 - 13.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/io/Smb2WriteRequestTest.java
assertTrue(writeRequest instanceof ServerMessageBlock2Request); assertTrue(writeRequest instanceof RequestWithFileId); } @Test @DisplayName("Should initialize with SMB2_WRITE command") void testCommandInitialization() { Smb2WriteRequest writeRequest = new Smb2WriteRequest(mockConfig, testFileId); // Command is set in parent constructor
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 22.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java
* The cache is configured with a maximum size of 100 entries and expires after 10 minutes. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initialize {}", this.getClass().getSimpleName()); } crawlingConfigCache = CacheBuilder.newBuilder().maximumSize(100).expireAfterWrite(10, TimeUnit.MINUTES).build(); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.5K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcBindTest.java
assertEquals(0, defaultBind.getOpnum(), "Default opnum should be 0"); } @Test @DisplayName("Package constructor should initialize with binding and handle") void testPackageConstructor() throws Exception { // Given int maxXmit = 4096; int maxRecv = 4096;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 22.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchLogHelper.java
/** * Initializes the SearchLogHelper. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initialize {}", this.getClass().getSimpleName()); } userInfoCache = CacheBuilder.newBuilder()// .maximumSize(userInfoCacheSize)//
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.3K bytes - Viewed (0) -
src/main/java/jcifs/http/NetworkExplorer.java
this.transportContext = new BaseContext(new PropertyConfiguration(p)); } catch (final CIFSException ex) { throw new ServletException("Failed to initialize CIFS context", ex); } } /** * Handles file download requests for SMB files. * @param req the HTTP servlet request * @param resp the HTTP servlet response
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lock/Smb2LockRequestTest.java
assertTrue(lockRequest instanceof ServerMessageBlock2Request); assertTrue(lockRequest instanceof RequestWithFileId); } @Test @DisplayName("Should initialize with SMB2_LOCK command") void testCommandInitialization() { Smb2LockRequest lockRequest = new Smb2LockRequest(mockConfig, testFileId, testLocks); assertNotNull(lockRequest); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 25.3K bytes - Viewed (0) -
internal/lru/lru.go
} res := LRU[K, V]{ ttl: ttl, size: size, evictList: NewList[K, V](), items: make(map[K]*Entry[K, V]), onEvict: onEvict, done: make(chan struct{}), } // initialize the buckets res.buckets = make([]bucket[K, V], numBuckets) for i := 0; i < numBuckets; i++ { res.buckets[i] = bucket[K, V]{entries: make(map[K]*Entry[K, V])} }
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Fri Apr 25 08:22:26 UTC 2025 - 12.5K bytes - Viewed (0)