Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for getwd (0.05 sec)

  1. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

        }
    
        /** {@inheritDoc} */
        public String getRoleHint() {
            return getId();
        }
    
        /**
         * @return the id of the mojo, based on the goal name
         */
        public String getId() {
            return getPluginDescriptor().getId() + ":" + getGoal();
        }
    
        /**
         * @return the full goal name
         * @see PluginDescriptor#getGoalPrefix()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/AbstractProcessInstrumentationIntegrationTest.groovy

        ShellScript baseScript = ShellScript.builder().printEnvironmentVariable('FOOBAR').printWorkingDir().writeTo(testDirectory, "test")
    
        def setup() {
            testDirectory.createDir(pwd)
        }
    
    
        static String getPwd() {
            return "tmp"
        }
    
        abstract static class VarInitializer {
            final String description
    
            VarInitializer(String description) {
                this.description = description
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblems.kt

        fun ProblemSeverity.toProblemSeverity() = when {
            this == ProblemSeverity.Suppressed -> Severity.ADVICE
            isFailOnProblems -> Severity.ERROR
            else -> Severity.WARNING
        }
    
        override fun getId(): String {
            return "configuration-cache"
        }
    
        fun queryFailure(summary: Summary = summarizer.get(), htmlReportFile: File? = null): Throwable? {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. maven-embedder/src/main/java/org/apache/maven/cli/internal/BootstrapCoreExtensionManager.java

                        + ", " + STRATEGY_PLUGIN + " and " + STRATEGY_SELF_FIRST);
            }
            log.debug("Populating class realm {}", realm.getId());
            for (Artifact artifact : artifacts) {
                String id = artifact.getGroupId() + ":" + artifact.getArtifactId();
                if (providedArtifacts.contains(id)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. api/maven-api-plugin/src/main/mdo/plugin.mdo

            <codeSegment>
              <version>2.0.0+</version>
              <code><![CDATA[
        public String getPluginLookupKey() {
            return groupId + ":" + artifactId;
        }
    
        public String getId() {
            return groupId + ":" + artifactId + ":" + version;
        }
    
              ]]></code>
            </codeSegment>
          </codeSegments>
        </class>
    
        <class xdoc.anchorName="mojo">
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 24.9K bytes
    - Viewed (0)
Back to top