Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for rootDirectory (0.04 sec)

  1. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            // This is used to compute {@code session.rootDirectory} but all {@code project.rootDirectory}
            // properties will be computed through the RootLocator found in the container.
            RootLocator rootLocator =
                    ServiceLoader.load(RootLocator.class).iterator().next();
            cliRequest.rootDirectory = rootLocator.findRoot(topDirectory);
    
            //
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Oct 27 13:24:03 UTC 2025
    - 78.1K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        /**
         * @since 4.0.0
         * @return the rootDirectory for this project
         * @throws IllegalStateException if the rootDirectory cannot be found
         */
        public Path getRootDirectory() {
            if (rootDirectory == null) {
                throw new IllegalStateException(RootLocator.UNABLE_TO_FIND_ROOT_PROJECT_MESSAGE);
            }
            return rootDirectory;
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Aug 29 12:47:20 UTC 2025
    - 67K bytes
    - Viewed (0)
  3. 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)
  4. 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)
Back to top