- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 42 for rootDirectory (0.05 sec)
-
impl/maven-core/src/main/java/org/apache/maven/ReactorReader.java
break; } } return packaged; } private Path relativizeOutputFile(final Path outputFile) { Path rootDirectory = session.getRequest().getRootDirectory(); return rootDirectory.relativize(outputFile); } /** * Tries to resolve the specified artifact from the artifacts of the given project. *Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Dec 15 11:20:38 UTC 2025 - 24.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java
* @since 4.0.0 */ Path getTopDirectory(); /** * Sets the root directory of the project. * * @since 4.0.0 */ MavenExecutionRequest setRootDirectory(Path rootDirectory); /** * Gets the root directory of the top project, which is the parent directory containing the {@code .mvn} * directory or a {@code pom.xml} file with the {@code root="true"} attribute.Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Dec 12 11:02:17 UTC 2024 - 18.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java
MavenProject project = projectIndex.get(r.getEffectiveModel().getId()); Path rootDirectory = rootLocator.findRoot(pom.getParentFile().toPath()); project.setRootDirectory(rootDirectory); project.setFile(pom); project.setExecutionRoot(pom.equals(pomFile));Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 17:20:31 UTC 2025 - 51.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Project.java
} /** * Returns a boolean indicating if the project is the top level project for * this reactor build. The top level project may be different from the * {@code rootDirectory}, especially if a subtree of the project is being * built, either because Maven has been launched in a subdirectory or using * a {@code -f} option. *Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Nov 07 13:11:07 UTC 2025 - 15.3K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.4.md
* Make the kubectl from k8s release the default on GCI * kubelet summary rootfs now refers to the filesystem that contains the Kubelet RootDirectory (var/lib/kubelet) instead of cadvisor's rootfs ( / ), since they may be different filesystems. ([#35136](https://github.com/kubernetes/kubernetes/pull/35136), [@dashpole](https://github.com/dashpole))
Registered: Fri Dec 26 09:05:12 UTC 2025 - Last Modified: Thu Dec 24 02:28:26 UTC 2020 - 133.5K bytes - Viewed (0) -
api/maven-api-model/src/main/mdo/maven.mdo
<p>The following properties are supported in expressions:</p> <ul> <li>`project.basedir`: The project directory</li> <li>`project.rootDirectory`: The root directory of the project</li> <li>`project.artifactId`: The artifactId of the project</li> <li>`project.packaging`: The packaging of the project</li> <li>user properties</li>Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Nov 26 03:07:35 UTC 2025 - 133.3K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/lsarpc.idl
typedef struct { uint32_t length; uint16_t impersonation_level; uint8_t context_mode; uint8_t effective_only; } LsarQosInfo; typedef struct { uint32_t length; uint8_t *root_directory; unicode_string *object_name; uint32_t attributes; uint32_t security_descriptor; LsarQosInfo *security_quality_of_service; } LsarObjectAttributes; typedef struct { unicode_string name;Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.1K bytes - Viewed (3) -
src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.idl
typedef struct { uint32_t length; uint16_t impersonation_level; uint8_t context_mode; uint8_t effective_only; } LsarQosInfo; typedef struct { uint32_t length; uint8_t *root_directory; unicode_string *object_name; uint32_t attributes; uint32_t security_descriptor; LsarQosInfo *security_quality_of_service; } LsarObjectAttributes; typedef struct { unicode_string name;Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 3.1K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/lsarpcTest.java
@Test void testLsarObjectAttributesEncode() throws NdrException { lsarpc.LsarObjectAttributes objAttr = new lsarpc.LsarObjectAttributes(); objAttr.length = 100; objAttr.root_directory = mock(NdrSmall.class); objAttr.object_name = mock(rpc.unicode_string.class); objAttr.attributes = 1; objAttr.security_descriptor = 2;Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 60.8K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/lsarpc.java
_dst.enc_ndr_long(this.length); _dst.enc_ndr_referent(this.root_directory, 1); _dst.enc_ndr_referent(this.object_name, 1); _dst.enc_ndr_long(this.attributes); _dst.enc_ndr_long(this.security_descriptor); _dst.enc_ndr_referent(this.security_quality_of_service, 1); if (this.root_directory != null) { _dst = _dst.deferred;
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 44.5K bytes - Viewed (0)