- Sort Score
- Result 10 results
- Languages All
Results 541 - 550 of 5,353 for Return (0.05 sec)
-
src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateResponseTest.java
@Test @DisplayName("Should return dialect revision") void testGetDialectRevision() throws Exception { // Given setPrivateField(response, "dialectRevision", 0x0311); // When int dialect = response.getDialectRevision(); // Then assertEquals(0x0311, dialect); } @Test @DisplayName("Should return server GUID")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 32.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/DataStoreFactory.java
* @return the data store instance if found, null if not found or name is null */ public DataStore getDataStore(final String name) { if (name == null) { return null; } return dataStoreMap.get(name.toLowerCase(Locale.ROOT)); } /** * Returns an array of available data store names discovered from plugin JAR files.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.4K bytes - Viewed (0) -
guava/src/com/google/common/collect/Queues.java
* * @param queue the queue to be wrapped in a synchronized view * @return a synchronized view of the specified queue * @since 14.0 */ @J2ktIncompatible // Synchronized public static <E extends @Nullable Object> Queue<E> synchronizedQueue(Queue<E> queue) { return Synchronized.queue(queue, null); } /** * Returns a synchronized (thread-safe) deque backed by the specified deque. In order to guarantee
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 18.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/WebFsIndexHelperTest.java
// In run all mode, this should return all web configs return Collections.emptyList(); } @Override public List<FileConfig> getFileConfigListByIds(List<String> fileConfigIdList) { // In run all mode, this should return all file configs return Collections.emptyList(); } };
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 15.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/FessBoot.java
if (value != null) { return value; } return super.prepareWebappPath(); } /** * Returns the directory path for temporary mark files. * * @return the absolute path to the fessboot directory in the system temp directory */ @Override protected String getMarkDir() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/Interpolator.java
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Mon Jan 13 16:14:35 UTC 2025 - 6.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/DynamicProperties.java
return getProperties().containsValue(value); } @Override public Enumeration<Object> elements() { return getProperties().elements(); } @Override public Set<java.util.Map.Entry<Object, Object>> entrySet() { return getProperties().entrySet(); } @Override public boolean equals(final Object o) { return getProperties().equals(o);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 13.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/MavenBuilderException.java
.append(problem.getMessage())); return msg.toString(); } /** * Returns the problem collector associated with this exception. * * @return the problem collector containing all problems related to this exception */ public ProblemCollector<BuilderProblem> getProblemCollector() { return problems; }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Apr 03 13:33:59 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/Base64Util.java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 6.2K bytes - Viewed (0) -
logger/logger.go
if l.Config.ParameterizedQueries { return sql, nil } return sql, params } type traceRecorder struct { Interface BeginAt time.Time SQL string RowsAffected int64 Err error } // New trace recorder func (l *traceRecorder) New() *traceRecorder { return &traceRecorder{Interface: l.Interface, BeginAt: time.Now()} }
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Sun Jan 12 10:19:28 UTC 2025 - 6.3K bytes - Viewed (0)