- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 201 for getXml (0.04 sec)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/merge/MavenModelMerger.java
String src = source.getUrl(); if (src != null) { if (sourceDominant) { target.setUrl(src); target.setLocation("url", source.getLocation("url")); } else if (target.getUrl() == null) { target.setUrl(extrapolateChildUrl(src, source.isChildProjectUrlInheritAppendPath(), context));Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 21.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/FaultTolerantClient.java
throw e; } catch (final Exception e) { if (logger.isDebugEnabled()) { logger.debug("Failed to access to {}", request.getUrl(), e); } if (listener != null) { listener.onException(this, request, count, e); }Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 7.8K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/DefaultMirrorSelector.java
* @param originalRepository * @return true if external. */ static boolean isExternalRepo(ArtifactRepository originalRepository) { try { URL url = new URL(originalRepository.getUrl()); return !(isLocal(url.getHost()) || url.getProtocol().equals("file")); } catch (MalformedURLException e) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 8K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/service/impl/UrlQueueServiceImplTest.java
if ("https://example.com/page1".equals(queue.getUrl())) { foundPage1 = true; assertEquals("GET", queue.getMethod()); assertEquals("https://example.com", queue.getParentUrl()); assertEquals(Long.valueOf(123456789L), queue.getLastModified()); } else if ("https://example.com/page2".equals(queue.getUrl())) { foundPage2 = true;Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:29:22 UTC 2025 - 14.1K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/repository/TestRepositoryConnector.java
String repositoryUrl = repository.getUrl(); if (repositoryUrl.contains("${")) { // the repository url contains unresolved properties and getting the basedir is not possible // in JDK 20+ 'new URL(string)' will fail if the string contains a curly brace this.basedir = null; } else { try { URL url = new URL(repository.getUrl());Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Sep 11 17:20:46 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 32.9K bytes - Viewed (0) -
src/test/java/jcifs/context/BaseContextTest.java
assertNotSame(pipe1, pipe2, "Different pipes should be different instances"); assertTrue(resource1.getLocator().getURL().toString().contains("server1"), "First resource should contain server1"); assertTrue(resource2.getLocator().getURL().toString().contains("server2"), "Second resource should contain server2"); }
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/DirFileEntryEnumIterator1.java
final SmbResourceLocator loc = this.getParent().getLocator(); final String unc = loc.getUNCPath(); final String p = loc.getURL().getPath(); if (p.lastIndexOf('/') != p.length() - 1) { throw new SmbException(loc.getURL() + " directory must end with '/'"); } if (unc.lastIndexOf('\\') != unc.length() - 1) { throw new SmbException(unc + " UNC must end with '\\'");
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java
@Override public ResultData transform(final ResponseData responseData) { if (responseData == null || !responseData.hasResponseBody()) { final String url = responseData != null ? responseData.getUrl() : "unknown"; throw new CrawlingAccessException("No response body for URL: " + url + ". Cannot transform empty response."); } final ResultData resultData = new ResultData();Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 25.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/XmlReaderRequest.java
* * @since 4.0.0 */ @Experimental @Immutable public interface XmlReaderRequest { @Nullable Path getPath(); @Nullable Path getRootDirectory(); @Nullable URL getURL(); @Nullable InputStream getInputStream(); @Nullable Reader getReader(); @Nullable Transformer getTransformer(); boolean isStrict(); @NullableRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Aug 29 12:46:27 UTC 2025 - 6.8K bytes - Viewed (0)