- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 191 for setPath (0.11 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/ApiAdminDictStopwordsAction.java
body.dictId = dictId; validateApi(body, messages -> {}); return stopwordsService.getStopwordsFile(body.dictId) .map(file -> asStream(new File(file.getPath()).getName()).contentTypeOctetStream().stream(out -> { file.writeOut(out); })).orElseGet(() -> {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 7.2K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/ProjectDependenciesResolverTest.java
File pom = getProject("it0063"); Properties eps = new Properties(); eps.setProperty("jre.home", new File(pom.getParentFile(), "jdk/jre").getPath()); MavenSession session = createMavenSession(pom, eps); MavenProject project = session.getCurrentProject();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryFile.java
this.id = id; this.path = path; this.timestamp = timestamp; } public String getId() { return id; } public String getPath() { return path; } public Date getTimestamp() { return timestamp; } public DictionaryFile<T> manager(final DictionaryManager dictionaryManager) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 6.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java
super(id, path, timestamp); } @Override public String getType() { return MAPPING; } @Override public String getPath() { return path; } @Override public OptionalEntity<CharMappingItem> get(final long id) { if (mappingItemList == null) { reload(null); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 10.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/MetadataBridge.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.4K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultTransformerContextBuilder.java
loadFullReactor(); source = getSource(groupId, artifactId); } if (source != null) { if (!addEdge(from, source.getPath(), problems)) { return null; } try { ModelBuildingRequest gaBuildingRequest =
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 9.1K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultArtifactDescriptorReader.java
if (resolveResult.getRepository() instanceof WorkspaceRepository) { modelRequest.setPomPath(pomArtifact.getPath()); } else { modelRequest.setModelSource(new ArtifactModelSource( pomArtifact.getPath(), pomArtifact.getGroupId(), pomArtifact.getArtifactId(),
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 17K bytes - Viewed (0) -
src/main/java/jcifs/smb/DirFileEntryEnumIterator1.java
@Override protected final FileEntry open () throws CIFSException { SmbResourceLocator loc = this.getParent().getLocator(); String unc = loc.getUNCPath(); 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 ) ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Nov 13 15:13:49 UTC 2021 - 5.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/io/Smb2WriteRequest.java
return new Smb2WriteResponse(tc.getConfig()); } /** * @param data * the data to set * @param offset * @param length */ public void setData ( byte[] data, int offset, int length ) { this.data = data; this.dataOffset = offset; this.dataLength = length; } /** * @param remainingBytes
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/Source.java
* Provides access the file to be parsed, if this source is backed by a file. * * @return the underlying {@code Path}, or {@code null} if this source is not backed by a file */ @Nullable Path getPath(); /** * Creates a new byte stream to the source contents. * Closing the returned stream is the responsibility of the caller. * * @return a byte stream to the source contents, never {@code null}
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Apr 12 10:50:18 UTC 2024 - 3.5K bytes - Viewed (0)