Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for projectE (0.1 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/Project.java

        /**
         * <p>Returns the root project for the hierarchy that this project belongs to.  In the case of a single-project
         * build, this method returns this project.</p>
         *
         * @return The root project. Never returns null.
         */
        Project getRootProject();
    
        /**
         * <p>Returns the root directory of this project. The root directory is the project directory of the root
         * project.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  2. cmd/sts-handlers_test.go

                            "projecta",
                            "projectb"
                        ]
                    }
                }
            }
        ]
    }`
    
    	policyProjectsMap = map[string]string{
    		// grants access to bucket `projecta` if user is in group `projecta`
    		"projecta": policyProjectA,
    
    		// grants access to bucket `projectb` if user is in group `projectb`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    In the case of multi-project builds, the `file()` method will always turn relative paths into paths relative to the current project directory, which may be a child project.
    
    === Using `Project.getRootDir()`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                        project.getGroupId(), project.getArtifactId(), project.getVersion(), null, project.getPackaging());
                project.setArtifact(projectArtifact);
    
                // only set those on 2nd phase, ignore on 1st pass
                if (project.getFile() != null) {
                    Build build = project.getBuild().getDelegate();
                    project.addScriptSourceRoot(build.getScriptSourceDirectory());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
Back to top