Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 52 for getGoal (0.2 sec)

  1. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator.java

                        .warning(":")
                        .warning(mojoExecution.getVersion())
                        .warning(":")
                        .warning(mojoExecution.getGoal());
    
                if (mojoExecution.getExecutionId() != null) {
                    messageBuilder.warning(" (");
                    messageBuilder.warning(mojoExecution.getExecutionId());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDebugLogger.java

            String mojoExecId =
                    mojoExecution.getGroupId() + ':' + mojoExecution.getArtifactId() + ':' + mojoExecution.getVersion()
                            + ':' + mojoExecution.getGoal() + " (" + mojoExecution.getExecutionId() + ')';
    
            Map<String, List<MojoExecution>> forkedExecutions = mojoExecution.getForkedExecutions();
            if (!forkedExecutions.isEmpty()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Execution.java

            if (this.goals == null) {
                this.goals = new java.util.ArrayList<String>();
            }
    
            return this.goals;
        } // -- java.util.List<String> getGoals()
    
        /**
         * Method removeGoal.
         *
         * @param string a string object.
         */
        public void removeGoal(String string) {
            getGoals().remove(string);
        } // -- void removeGoal( String )
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 19:51:46 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/process-services/src/test/groovy/org/gradle/process/internal/health/memory/WindowsOSMemoryInfoTest.groovy

            and:
            snapshot.getPhysicalMemory().getTotal() == MemoryAmount.ofGigaBytes(32).bytes
            snapshot.getPhysicalMemory().getFree() == MemoryAmount.ofGigaBytes(16).bytes
            snapshot.getVirtualMemory() instanceof OsMemoryStatusAspect.Available
            snapshot.getVirtualMemory().getTotal() == MemoryAmount.ofGigaBytes(64).bytes
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 23:56:19 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExceptionTest.java

        private final String LS = System.lineSeparator();
    
        @Test
        void testMissingRequiredStringArrayTypeParameter() {
            MojoDescriptor mojoDescriptor = new MojoDescriptor();
            mojoDescriptor.setGoal("goal");
            PluginDescriptor pluginDescriptor = new PluginDescriptor();
            pluginDescriptor.setGoalPrefix("goalPrefix");
            pluginDescriptor.setArtifactId("artifactId");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/MemInfoOsMemoryInfo.java

                }
            }
    
            if (meminfo.getAvailable() < 0 || meminfo.getTotal() < 0) {
                throw new UnsupportedOperationException("Unable to read system memory from " + MEMINFO_FILE_PATH);
            }
    
            return new OsMemoryStatusSnapshot(meminfo.getTotal(), meminfo.getAvailable());
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/process-services/src/test/groovy/org/gradle/process/internal/health/memory/MBeanOsMemoryInfoTest.groovy

            def total = osMemoryInfo.getOsSnapshot().getPhysicalMemory().getTotal()
    
            then:
            total == TEST_TOTAL_MEMORY
        }
    
        def "getTotalPhysicalMemory fails when memory MBeans are #availability"() {
            given:
            def osMemoryInfo = createMemoryInfo(availability)
    
            when:
            osMemoryInfo.getOsSnapshot().getPhysicalMemory().getTotal()
    
            then:
            thrown UnsupportedOperationException
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:56:11 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/GccPlatformToolProviderTest.groovy

            1 * metaDataProvider.getCompilerMetaData(_, _) >> {
                arguments[1].execute(assertingCompilerExecSpecArguments(args))
                new ComponentFound(metaData)
            }
            1 * toolRegistry.getTool(toolType) >> new DefaultGccCommandLineToolConfiguration(toolType, 'exe')
            1 * toolSearchPath.locate(toolType, 'exe') >> Mock(CommandLineToolSearchResult)
            _ * metaData.systemLibraries >> libs
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleTaskSegmentCalculator.java

            MavenProject rootProject = session.getTopLevelProject();
    
            List<String> tasks = requireNonNull(session.getGoals()); // session never returns null, but empty list
    
            if (tasks.isEmpty()
                    && (rootProject.getDefaultGoal() != null
                            && !rootProject.getDefaultGoal().isEmpty())) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. operator/pkg/util/progress/progress.go

    	sort.Strings(wait)
    	msg := fmt.Sprintf(`Processing resources for %s.`, strings.Join(comps, ", "))
    	if len(wait) > 0 {
    		msg += fmt.Sprintf(` Waiting for %s`, strings.Join(wait, ", "))
    	}
    	prefix := inProgress
    	if !p.bar.GetBool(pb.Terminal) {
    		// If we aren't a terminal, no need to spam extra lines
    		prefix = `{{ yellow "-" }} `
    	}
    	// reduce by 2 to allow for the "- " that will be added below
    	maxWidth -= 2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top