- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for getdirent (0.06 sec)
-
src/main/java/jcifs/smb/SmbSessionImpl.java
} } /** * @return the digest * @throws SmbException */ public SMBSigningDigest getDigest () throws SmbException { if ( this.digest != null ) { return this.digest; } return this.transport.getDigest(); } /** * @param tf * @param tdom * @param thost * @return */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Nov 14 17:41:04 UTC 2021 - 49K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java
if (groupId == null && model.getParent() != null) { groupId = model.getParent().getGroupId(); } return groupId; } private String getVersion(Model model) { String version = model.getVersion(); if (version == null && model.getParent() != null) { version = model.getParent().getVersion(); } return version;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 83.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
* @param digest */ public void setDigest ( SMBSigningDigest digest ) { this.digest = digest; } /** * @return the digest */ public SMBSigningDigest getDigest () { return this.digest; } /** * @return the context associated with this transport connection */ @Override public CIFSContext getContext () {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 18 23:47:00 UTC 2023 - 67K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java
public void validateFileModel(Model ma, ModelBuildingRequest request, ModelProblemCollector problems) { org.apache.maven.api.model.Model m = ma.getDelegate(); Parent parent = m.getParent(); if (parent != null) { validateStringNotEmpty( "parent.groupId", problems, Severity.FATAL, Version.BASE, parent.getGroupId(), parent); validateStringNotEmpty(
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 77.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
* <code>smb://</code> if the resource refers to the root of the URL * hierarchy which incidentally is also <code>smb://</code>. */ public String getParent () { return this.fileLocator.getParent(); } /** * Returns the full uncanonicalized URL of this SMB resource. An * <code>SmbFile</code> constructed with the result of this method will
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu May 23 01:50:13 UTC 2024 - 82.3K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
if (Files.isDirectory(path)) { topDirectory = path; } else if (Files.isRegularFile(path)) { topDirectory = path.getParent(); if (!Files.isDirectory(topDirectory)) { System.err.println("Directory " + topDirectory
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 76.8K bytes - Viewed (0)