- Sort Score
- Result 10 results
- Languages All
Results 211 - 220 of 643 for setName (0.06 sec)
-
src/main/java/org/codelibs/fess/helper/PluginHelper.java
final List<Artifact> list = new ArrayList<>(jarFiles.length); for (final File file : jarFiles) { list.add(getArtifactFromFileName(artifactType, file.getName())); } list.sort(Comparator.comparing(Artifact::getName)); return list.toArray(new Artifact[list.size()]); } final File[] jarFiles = ResourceUtil.getPluginJarFiles(artifactType.getId());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lease/DirectoryLeasingIntegrationTest.java
} } @Test public void testCompleteDirectoryLeasingWorkflow() throws Exception { String directoryPath = "/test/integration"; // Setup mock files when(mockFile1.getName()).thenReturn("document.txt"); when(mockFile1.length()).thenReturn(2048L); when(mockFile1.lastModified()).thenReturn(System.currentTimeMillis() - 3600000); when(mockFile1.isDirectory()).thenReturn(false);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 14.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/LdapConfigurationExceptionTest.java
// The first element should be from this test method StackTraceElement firstElement = stackTrace[0]; assertEquals("test_stackTrace", firstElement.getMethodName()); assertEquals(this.getClass().getName(), firstElement.getClassName()); } public void test_serialization() { // Test that the exception is serializable String message = "Serialization test";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/MethodUtil.java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 12.6K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbResourceLocatorImplTest.java
assertEquals("share/", b.getName()); // host when no path/share SmbResourceLocatorImpl c = locator("smb://server/"); assertEquals("server/", c.getName()); // root fallback SmbResourceLocatorImpl d = locator("smb:///"); assertEquals("smb://", d.getName()); } @Test @DisplayName("Parent URL is computed correctly")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.6K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/StringWagon.java
throws TransferFailedException, ResourceDoesNotExistException, AuthorizationException { Resource resource = inputData.getResource(); String content = expectedContent.get(resource.getName()); if (content != null) { resource.setContentLength(content.length()); resource.setLastModified(System.currentTimeMillis());
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerAction.java
messages.addErrorsFailedToStartJob(GLOBAL, entity.getName()); }); } try { entity.start(); } catch (final Exception e) { throwValidationErrorApi(messages -> { messages.addErrorsFailedToStartJob(GLOBAL, entity.getName()); }); } }).orElse(() -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/UnsupportedSearchExceptionTest.java
boolean foundTestMethod = false; for (StackTraceElement element : exception.getStackTrace()) { if (element.getMethodName().equals("test_stackTrace") && element.getClassName().equals(this.getClass().getName())) { foundTestMethod = true; break; } } assertTrue(foundTestMethod); } public void test_serialization() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.4K bytes - Viewed (0) -
docs/smb3-features/02-persistent-handles-design.md
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 31.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/tomcat/webresources/FessWebResourceRoot.java
*/ public class FessWebResourceRoot extends StandardRoot { /** Logger instance for this class */ private static final Logger logger = Logger.getLogger(FessWebResourceRoot.class.getName()); /** * Constructs a new FessWebResourceRoot with the specified context. * * @param context the Tomcat context for this web resource root */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.3K bytes - Viewed (0)