- Sort Score
- Result 10 results
- Languages All
Results 281 - 290 of 1,285 for Url (0.01 sec)
-
src/main/java/org/codelibs/core/io/FileUtil.java
assertArgumentNotEmpty("path", path); assertArgumentNotEmpty("encoding", encoding); final URL url = ResourceUtil.getResource(path); if (url.getProtocol().equals("file")) { return readText(URLUtil.toFile(url), encoding); } final InputStream is = URLUtil.openStream(url); try {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 8.8K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java
} private String canonicalFileUrl(String url) throws IOException { if (!url.startsWith("file:")) { url = "file://" + url; } else if (url.startsWith("file:") && !url.startsWith("file://")) { url = "file://" + url.substring("file:".length()); } // So now we have an url of the form file://<path>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 31.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/PropertiesUtil.java
} /** * Loads the specified {@link URL} into the {@link Properties} (wraps exception handling). * * @param props * Property set. Must not be {@literal null}. * @param url * URL. Must not be {@literal null}. */ public static void load(final Properties props, final URL url) { assertArgumentNotNull("props", props);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 7.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapUrl.java
*/ private String priority; /** * Returns the location URL of this sitemap entry. * @return the location URL */ @Override public String getLoc() { return loc; } /** * Sets the location URL of this sitemap entry. * @param loc the location URL to set */ public void setLoc(final String loc) { this.loc = loc; }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 6.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java
if (!allowUserInteraction) { return null; } try { final URL url = getURL(); final String protocol = url.getProtocol(); int port = url.getPort(); if (port == -1) { port = "https".equalsIgnoreCase(protocol) ? 443 : 80; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 22.1K bytes - Viewed (0) -
compat/maven-builder-support/src/test/java/org/apache/maven/building/UrlSourceTest.java
NullPointerException e = assertThrows( NullPointerException.class, () -> new UrlSource(null), "Should fail, since you must specify a url"); assertEquals("url cannot be null", e.getMessage()); } @Test void testGetInputStream() throws Exception { URL txtFile = new File("target/test-classes/source.txt").toURI().toURL(); UrlSource source = new UrlSource(txtFile);
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFileInputStream.java
* an SMB server addressed by the <code>url</code> parameter. See {@link * jcifs.smb1.smb1.SmbFile} for a detailed description and examples of the smb * URL syntax. * * @param url An smb URL string representing the file to read from */ /** * Creates an input stream for reading from the specified SMB URL * * @param url the SMB URL to read from
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 9.4K bytes - Viewed (0) -
compat/maven-compat/src/main/resources/META-INF/maven/plugin-expressions/project.paramdoc.xml
<repository> <id>repo</id> <name>Repository Name</name> <url>scp://host/path/to/repo</url> </repository> <!-- use the following if you ARE using a snapshot version. --> <snapshotRepository> <id>repo</id> <name>Repository Name</name> <url>scp://host/path/to/repo</url> </snapshotRepository> </distributionManagement> ]]></configuration>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/cbean/ca/bs/BsClickLogCA.java
} public void setUrl_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda) { setUrl_Terms("url", opLambda, null); } public void setUrl_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsClickLogCA> aggsLambda) { setUrl_Terms("url", opLambda, aggsLambda); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 45.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/ca/bs/BsFailureUrlCA.java
} public void setUrl_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda) { setUrl_Terms("url", opLambda, null); } public void setUrl_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsFailureUrlCA> aggsLambda) { setUrl_Terms("url", opLambda, aggsLambda); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 46.5K bytes - Viewed (0)