- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 141 for getPaths (0.05 sec)
-
src/test/java/org/codelibs/fess/util/GsaConfigParserTest.java
assertTrue(parser.getFileConfig().isPresent()); parser.getFileConfig().ifPresent(config -> { assertTrue(config.getPaths().contains("file:///test")); assertTrue(config.getPaths().contains("smb://server/share")); }); } public void test_parseWithMixedUrls() { GsaConfigParser parser = new GsaConfigParser();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverResult.java
* This collection has the same content as {@code getDependencies.values()} except that it does not contain * null elements. * * @return the paths of all dependencies */ @Nonnull List<Path> getPaths(); /** * Returns the file paths of all dependencies and their assignments to different paths. * The {@link PathType} keys identify, for example, {@code --class-path} or {@code --module-path} options.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Mar 05 14:29:21 UTC 2025 - 6.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsFileConfig.java
registerModifiedProperty("numOfThread"); this.numOfThread = value; } public String getPaths() { checkSpecifiedProperty("paths"); return convertEmptyToNull(paths); } public void setPaths(String value) { registerModifiedProperty("paths"); this.paths = value; } public String[] getPermissions() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 13.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/FileConfigDbm.java
"numOfThread"); setupEpg(_epgMap, et -> ((FileConfig) et).getPaths(), (et, vl) -> ((FileConfig) et).setPaths(DfTypeUtil.toString(vl)), "paths"); setupEpg(_epgMap, et -> ((FileConfig) et).getPermissions(), (et, vl) -> ((FileConfig) et).setPermissions((String[]) vl), "permissions");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 18.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Session.java
/** * Shortcut for {@code getService(ArtifactManager.class).getPath(...)}. * * @param artifact the artifact for which to get a path * @return path associated to the given artifact * * @see org.apache.maven.api.services.ArtifactManager#getPath(Artifact) */ @Nonnull Optional<Path> getArtifactPath(@Nonnull Artifact artifact); /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jul 03 14:18:26 UTC 2025 - 36.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java
final Crawler crawler = ComponentUtil.getComponent(Crawler.class); crawler.setSessionId(sid); sessionIdList.add(sid); final String pathsStr = fileConfig.getPaths(); if (StringUtil.isBlank(pathsStr)) { logger.warn("No target uris. Skipped"); break; } final int intervalTime =
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 24.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ResourceUtil.java
return getPath("WEB-INF/", "classes", names); } /** * Gets the path to original files directory. * * @param names the path components to append to the orig directory * @return the Path object pointing to the original files directory */ public static Path getOrigPath(final String... names) { return getPath("WEB-INF/", "orig", names); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/persistent/HandleReconnector.java
} // Perform the actual reconnection boolean success = performReconnection(info); if (success) { handleManager.completeReconnect(info.getPath(), true); log.info("Successfully reconnected handle: {}", info.getPath()); return info;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 8.5K bytes - Viewed (1) -
src/test/java/jcifs/smb1/smb1/SmbFileFilterTest.java
when(mockFile.getPath()).thenReturn("/share/dir/"); RecordingFilter filter = new RecordingFilter(); filter.accept(mockFile); // Verify the filter stored the reference // assertSame may not be necessary but demonstrates captured file // we simply check that getPath was called verify(mockFile, times(1)).getPath(); } }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/Smb2CreateRequestTest.java
assertEquals("\\test\\directory", request.getPath()); // Test single backslash request.setPath("\\"); assertEquals("\\", request.getPath()); // Test empty path request.setPath(""); assertEquals("\\", request.getPath()); } @Test @DisplayName("Test getPath returns correct formatted path") void testGetPath() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 18.6K bytes - Viewed (0)