Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 124 for retrieved (0.04 sec)

  1. src/test/java/jcifs/util/SecureKeyManagerTest.java

            keyManager.storeSessionKey(sessionId2, key2, "AES");
    
            byte[] retrieved1 = keyManager.getRawKey(sessionId1);
            byte[] retrieved2 = keyManager.getRawKey(sessionId2);
    
            assertArrayEquals(key1, retrieved1, "Key 1 should match");
            assertArrayEquals(key2, retrieved2, "Key 2 should match");
            assertFalse(Arrays.equals(retrieved1, retrieved2), "Keys should be different");
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/script/ScriptEngineFactoryTest.java

            assertNotNull(retrieved);
            assertEquals(engine, retrieved);
        }
    
        // Test getScriptEngine with uppercase query
        public void test_getScriptEngine_uppercaseQuery() {
            TestScriptEngine engine = new TestScriptEngine();
            scriptEngineFactory.add("test", engine);
    
            ScriptEngine retrieved = scriptEngineFactory.getScriptEngine("TEST");
            assertNotNull(retrieved);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/ds/DataStoreFactoryTest.java

            DataStore retrieved = dataStoreFactory.getDataStore("myStore");
            assertNotNull(retrieved);
            assertSame(dataStore, retrieved);
        }
    
        // Test getDataStore with non-existing name
        public void test_getDataStore_nonExistingName() {
            DataStore retrieved = dataStoreFactory.getDataStore("nonExisting");
            assertNull(retrieved);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/Suppliers.java

        }
    
        @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0;
      }
    
      /**
       * Returns a supplier which caches the instance retrieved during the first call to {@code get()}
       * and returns that value on subsequent calls to {@code get()}. See: <a
       * href="http://en.wikipedia.org/wiki/Memoization">memoization</a>
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 16.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/netbios/NbtAddress.java

         * address, isPermanent, isBeingDeleted, ...etc. This information can only
         * be retrieved with the Node Status request.
         *
         * The degree of state that an NbtAddress has is dependant on how it was
         * created and what is required of it. The second degree of state is the
         * most common. This is the state information that would be retrieved from
         * WINS for example. Natrually it is not practical for every NbtAddress
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  6. compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/DefaultRepositoryMetadataManager.java

                                }
                            }
                        } catch (TransferFailedException e) {
                            getLogger()
                                    .warn(metadata + " could not be retrieved from repository: " + repository.getId()
                                            + " due to an error: " + e.getMessage());
                            getLogger().debug("Exception", e);
                        } finally {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/Kerb5Authenticator.java

         * which hold TGT retrieved from KDC. If multiple TGT are contained, the
         * first one will be used to retrieve user principal.
         *
         * @param subject
         *            represents the user who perform Kerberos authentication.
         *            It contains tickets retrieve from KDC.
         */
        public Kerb5Authenticator(Subject subject) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/Suppliers.java

        }
    
        @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0;
      }
    
      /**
       * Returns a supplier which caches the instance retrieved during the first call to {@code get()}
       * and returns that value on subsequent calls to {@code get()}. See: <a
       * href="http://en.wikipedia.org/wiki/Memoization">memoization</a>
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 16.5K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java

                    // Mock implementation
                }
            };
    
            // Set the customizer
            pagerCreator.setPagerCustomizer(customizer);
    
            // Verify it can be retrieved
            assertSame(customizer, pagerCreator.getPagerCustomizer());
        }
    
        // Test multiple set operations
        public void test_setPagerCustomizer_multiple_times() {
            // Create first customizer
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  10. src/test/java/jcifs/netbios/NameServiceClientImplTest.java

            assertThrows(UnknownHostException.class, () -> {
                nameServiceClient.getNodeStatus(mockNetbiosAddress);
            }, "Should throw UnknownHostException when node status cannot be retrieved");
        }
    
        @Test
        @DisplayName("Should handle getByName with boolean flag")
        void testGetByNameWithFlag() throws UnknownHostException {
            // When
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 11K bytes
    - Viewed (0)
Back to top