- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 355 for retrieved (0.05 seconds)
-
src/test/java/org/codelibs/fess/script/AbstractScriptEngineTest.java
ScriptEngine retrieved1 = scriptEngineFactory.getScriptEngine("engine1"); ScriptEngine retrieved2 = scriptEngineFactory.getScriptEngine("engine2"); assertNotNull(retrieved1); assertNotNull(retrieved2); assertEquals(engine1, retrieved1); assertEquals(engine2, retrieved2); assertNotSame(retrieved1, retrieved2); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 6.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/script/ScriptEngineFactoryTest.java
ScriptEngine retrieved = scriptEngineFactory.getScriptEngine("TEST"); assertNotNull(retrieved); assertEquals(engine, retrieved); } // Test getScriptEngine with mixed case query @Test public void test_getScriptEngine_mixedCaseQuery() { TestScriptEngine engine = new TestScriptEngine(); scriptEngineFactory.add("test", engine);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 12.8K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelCacheTag.java
T intoCache(T data); /** * Creates a copy of the data suitable for retrieval from the cache. The retrieved data can be mutated after the * cache is queried but the state of the cache must not change so we need to make a copy. * * @param data The data to retrieve from the cache, must not be {@code null}. * @return The data being retrieved from the cache, never {@code null}. */ T fromCache(T data); /**
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 3.9K bytes - Click Count (0) -
src/main/java/org/codelibs/curl/io/ContentOutputStream.java
* <li>{@code done} - Flag indicating whether the file has been retrieved.</li> * </ul> * * <p>Constructors:</p> * <ul> * <li>{@code ContentOutputStream(int threshold, File tmpDir)} - Constructs a ContentOutputStream with a specified threshold and temporary directory.</li> * </ul> * * <p>Methods:</p> * <ul> * <li>{@code getFile()} - Marks the file as retrieved and returns the file.</li>
Created: Thu Apr 02 15:34:12 GMT 2026 - Last Modified: Thu Nov 20 13:34:13 GMT 2025 - 3.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/ComponentUtilTest.java
String retrieved = ComponentUtil.getComponent(String.class); assertSame(testInstance, retrieved); } @Test public void test_getComponent_byName_fromMap() { Integer testInstance = 42; String componentName = "testInteger"; ComponentUtil.register(testInstance, componentName); Integer retrieved = ComponentUtil.getComponent(componentName);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 7.7K bytes - Click Count (0) -
src/main/java/org/codelibs/core/beans/PropertyDesc.java
* * @return whether the property has a setter method */ boolean hasWriteMethod(); /** * Returns whether the property value can be retrieved. * * @return whether the property value can be retrieved */ boolean isReadable(); /** * Returns whether the property value can be set. * * @return whether the property value can be set */Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 4.3K bytes - Click Count (0) -
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 @Test public void test_getDataStore_nonExistingName() { DataStore retrieved = dataStoreFactory.getDataStore("nonExisting"); assertNull(retrieved); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 18.2K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ProjectDependencyGraph.java
* indirectly depends on the given project. * * @param project The project whose downstream projects should be retrieved, must not be {@code null}. * @param transitive A flag whether to retrieve all direct and indirect downstream projects or just the immediate * downstream projects. * @return The downstream projects in the build order, never {@code null}.Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.7K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/repository/RepositoryCache.java
* reference. If the cached data is to be modified after its retrieval, the caller is responsible to create a copy * of the returned data and use this instead of the cache record. * * @param request The repository request from which this cache was retrieved, must not be {@code null}. * @param key The key to use for lookup of the data, must not be {@code null}.Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.6K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDescResponse.java
import jcifs.internal.dtyp.SecurityDescriptor; import jcifs.internal.util.SMBUtil; /** * Response for SMB1 NT Transaction security descriptor query. * * This response contains the Windows security descriptor retrieved * from the server, including access control information. */ public class NtTransQuerySecurityDescResponse extends SmbComNtTransactionResponse { private SecurityDescriptor securityDescriptor; /**Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 3.2K bytes - Click Count (0)