- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 18 for ResourceName (0.2 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractor.java
public ExtractData getText(final InputStream in, final Map<String, String> params) { final String resourceName = params == null ? null : params.get(ExtractData.RESOURCE_NAME_KEY); String extention; String filePrefix; if (StringUtil.isNotBlank(resourceName)) { final String name = getFileName(resourceName); final String[] strings = name.split("\\.");
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 12:19:14 UTC 2025 - 16.1K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractorTest.java
url = null; resourceName = "hoge2.pdf"; assertNull(tikaExtractor.getPassword(createParams(url, resourceName))); url = null; resourceName = "hoge1.pdf"; assertEquals("password", tikaExtractor.getPassword(createParams(url, resourceName))); url = "http://test.com/fuga.pdf"; resourceName = null;Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 30.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessAsyncNotifyMessage.java
public String getResourceName() { return resourceName; } /** * Sets the resource name associated with the notification. * * @param resourceName the name of the resource affected by the change */ public void setResourceName(String resourceName) { this.resourceName = resourceName; } /**
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 16.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessNotification.java
* @return the resource name */ public String getResourceName() { return resourceName; } /** * Sets the resource name. * * @param resourceName the resource name */ public void setResourceName(String resourceName) { this.resourceName = resourceName; } /** * Gets the notification timestamp. *Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 6.4K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/PdfExtractorTest.java
String url; String resourceName; HashMap<String, String> params = new HashMap<>(); url = null; resourceName = null; params.put(ExtractData.URL, url); params.put(ExtractData.RESOURCE_NAME_KEY, resourceName); assertNull(pdfExtractor.getPassword(params)); url = "http://test.com/hoge1.pdf"; resourceName = null;Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 7.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/JodExtractorTest.java
} public void test_getText_ooow() { InputStream in = ResourceUtil.getResourceAsStream("extractor/ooo/test.odt"); Map<String, String> params = new HashMap<String, String>(); params.put("resourceName", "test.odt"); ExtractData extractData = jodExtractor.getText(in, params); String content = extractData.getContent(); CloseableUtil.closeQuietly(in); logger.info(content);Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 9.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/JodExtractor.java
} final String resourceName = params == null ? null : params.get(ExtractData.RESOURCE_NAME_KEY); String extension; String filePrefix; if (StringUtil.isNotBlank(resourceName)) { final String name = getFileName(resourceName); final String[] strings = name.split("\\.");Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 12:19:14 UTC 2025 - 10.4K bytes - Viewed (0) -
guava/src/com/google/common/io/Resources.java
public static URL getResource(String resourceName) { ClassLoader loader = MoreObjects.firstNonNull( Thread.currentThread().getContextClassLoader(), Resources.class.getClassLoader()); URL url = loader.getResource(resourceName); checkArgument(url != null, "resource %s not found.", resourceName); return url; } /**
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 7.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/witness/MockWitnessService.java
* @param eventType the event type * @param resourceName the resource name */ public void sendNotification(WitnessEventType eventType, String resourceName) { // In a real implementation, this would send notifications to registered clients // For the mock, we just log it log.info("Mock sending notification: {} for resource: {}", eventType, resourceName); // Count how many registrations this affectsRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 8.2K bytes - Viewed (0) -
docs/smb3-features/06-witness-protocol-design.md
public static final int WITNESS_RESOURCE_STATE_UNAVAILABLE = 0x000000FF; public WitnessNotification(WitnessEventType eventType, String resourceName) { this.eventType = eventType; this.resourceName = resourceName; this.timestamp = System.currentTimeMillis(); this.newIPAddresses = new ArrayList<>(); this.oldIPAddresses = new ArrayList<>();Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 42K bytes - Viewed (0)