- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 173 for get_path (0.08 sec)
-
src/main/java/org/codelibs/core/io/TraversalUtil.java
addTraverserFactory("code-source", (url, rootPackage, rootDir) -> new JarFileTraverser(URLUtil.create("jar:file:" + url.getPath()), rootPackage, rootDir)); addTraverserFactory("vfszip", VfsZipTraverser::new); } /** * {@link TraverserFactory}を追加します。 * * @param protocol
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 19.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/RepositoryUtils.java
} Map<String, String> props = null; if (org.apache.maven.artifact.Artifact.SCOPE_SYSTEM.equals(artifact.getScope())) { String localPath = (artifact.getFile() != null) ? artifact.getFile().getPath() : ""; props = Collections.singletonMap(MavenArtifactProperties.LOCAL_PATH, localPath); } Artifact result = new DefaultArtifact( artifact.getGroupId(),
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 16K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
* context to use * @throws MalformedURLException */ public SmbFile ( URL url, CIFSContext tc ) throws MalformedURLException { super(url); if ( url.getPath() != null && !url.getPath().isEmpty() && url.getPath().charAt(0) != '/' ) { throw new MalformedURLException("Invalid SMB URL: " + url); } this.transportContext = tc;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu May 23 01:50:13 UTC 2024 - 82.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/net/URLUtil.java
*/ public static File toFile(final URL fileUrl) { assertArgumentNotNull("fileUrl", fileUrl); try { final String path = URLDecoder.decode(fileUrl.getPath(), "UTF-8"); return new File(path).getAbsoluteFile(); } catch (final Exception e) { throw new ClRuntimeException("ECL0091", asArray(fileUrl), e); } }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 7.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/repository/MavenArtifactRepository.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 11K bytes - Viewed (0) -
build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java
} } static void forEachLeakingJavaProcess(File rootProjectDir, BiConsumer<String, String> action) { Pattern commandLineArgsPattern = Pattern.compile(generateLeakingProcessKillPattern(rootProjectDir.getPath())); forEachJavaProcess(ps(), commandLineArgsPattern, action); } private static void forEachJavaProcess(List<String> psOutput, Pattern commandLineArgsPattern, BiConsumer<String, String> action) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Aug 19 15:07:24 UTC 2024 - 11.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java
super(id, path, timestamp); } @Override public String getType() { return SYNONYM; } @Override public String getPath() { return path; } @Override public synchronized OptionalEntity<SynonymItem> get(final long id) { if (synonymItemList == null) { reload(null); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 12.5K bytes - Viewed (0) -
mockwebserver-deprecated/api/mockwebserver.api
public final fun getHeader (Ljava/lang/String;)Ljava/lang/String; public final fun getHeaders ()Lokhttp3/Headers; public final fun getMethod ()Ljava/lang/String; public final fun getPath ()Ljava/lang/String; public final fun getRequestLine ()Ljava/lang/String; public final fun getRequestUrl ()Lokhttp3/HttpUrl; public final fun getSequenceNumber ()I public final fun getTlsVersion ()Lokhttp3/TlsVersion;
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Jul 22 12:28:51 UTC 2023 - 10.2K bytes - Viewed (0) -
architecture/standards/0006-use-of-provider-apis-in-gradle.md
} } ``` You should prefer to use managed types when possible. #### Identity information This is an inappropriate use of lazy types: ```groovy class Example { Provider<String> getPath() { return project.provider(() -> path) } } ``` Like above, this is an immutable part of the identity of the domain object and cannot be changed. ### Properties in entirely new classes
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Oct 15 20:00:57 UTC 2024 - 10K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbClient.java
} } catch (final IOException e) { throw new CrawlingAccessException("Could not access " + file.getPath(), e); } } protected void processAllowedSIDs(final SmbFile file, final SID sid, final Set<SID> sidSet) { if (logger.isDebugEnabled()) { logger.debug("SID:{}", sid);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:32 UTC 2024 - 18.9K bytes - Viewed (0)