Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for existingKey (0.61 sec)

  1. src/test/java/org/codelibs/fess/entity/DataStoreParamsTest.java

        }
    
        // Test getAsString with default value
        public void test_getAsStringWithDefaultValue() {
            dataStoreParams.put("existingKey", "existingValue");
            assertEquals("existingValue", dataStoreParams.getAsString("existingKey", "defaultValue"));
    
            assertNull(dataStoreParams.getAsString("nonExistentKey"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/lease/LeaseManager.java

            lock.writeLock().lock();
            try {
                // Check if we already have a lease for this path
                Smb2LeaseKey existingKey = pathToLease.get(path);
                if (existingKey != null) {
                    LeaseEntry entry = leases.get(existingKey);
                    if (entry != null && !entry.breaking) {
                        entry.lastAccessTime = System.currentTimeMillis();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  3. docs/smb3-features/01-smb3-lease-design.md

                Smb2LeaseKey existingKey = pathToLease.get(path);
                if (existingKey != null) {
                    LeaseEntry entry = leases.get(existingKey);
                    if (entry != null && !entry.breaking) {
                        entry.lastAccessTime = System.currentTimeMillis();
                        return existingKey;
                    }
                }
                
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 22K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/Striped.java

          ArrayReference<? extends L> existingRef = locks.get(index);
          L existing = existingRef == null ? null : existingRef.get();
          if (existing != null) {
            return existing;
          }
          L created = supplier.get();
          ArrayReference<L> newRef = new ArrayReference<>(created, index, queue);
          while (!locks.compareAndSet(index, existingRef, newRef)) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 20.6K bytes
    - Viewed (0)
Back to top