Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 52 for getGoal (0.2 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/events/InternalStatusEvent.java

    /**
     * DO NOT CHANGE THIS INTERFACE. It is part of the cross-version protocol.
     *
     * @since 7.3
     */
    public interface InternalStatusEvent extends InternalProgressEvent {
        long getProgress();
    
        long getTotal();
    
        String getUnits();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 912 bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/tools/ToolSearchPath.java

                this.tool = tool;
            }
    
            @Override
            public boolean isAvailable() {
                return true;
            }
    
            @Override
            public File getTool() {
                return tool;
            }
    
            @Override
            public void explain(DiagnosticsVisitor visitor) {
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/LowMemoryDaemonExpirationStrategy.java

                OsMemoryStatusAspect virtualMemory = memoryStatus.getVirtualMemory();
                if (virtualMemory instanceof OsMemoryStatusAspect.Available) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/tools/CommandLineToolSearchResult.java

    import org.gradle.platform.base.internal.toolchain.ToolSearchResult;
    
    import java.io.File;
    
    public interface CommandLineToolSearchResult extends ToolSearchResult {
        File getTool();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 864 bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/tools/ToolRegistry.java

    import org.gradle.nativeplatform.toolchain.internal.ToolType;
    
    import javax.annotation.Nullable;
    
    @NonNullApi
    public interface ToolRegistry {
        @Nullable
        GccCommandLineToolConfigurationInternal getTool(ToolType toolType);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 941 bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleMappingDelegate.java

                        Map<Integer, List<MojoExecution>> phaseBindings = mappings.get(execution.getPhase());
                        if (phaseBindings != null) {
                            for (String goal : execution.getGoals()) {
                                MojoExecution mojoExecution = new MojoExecution(plugin, goal, execution.getId());
                                mojoExecution.setLifecyclePhase(execution.getPhase());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/service/BuildCacheServicesConfiguration.java

            this.local = local;
            this.localPush = localPush;
        }
    
        public String getBuildPath() {
            return buildPath;
        }
    
        @Nullable
        public LocalBuildCacheService getLocal() {
            return local;
        }
    
        public boolean isLocalPush() {
            return localPush;
        }
    
        @Nullable
        public BuildCacheService getRemote() {
            return remote;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 04 08:25:00 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/OperationProgressDetails.java

            this.progress = progress;
            this.total = total;
            this.units = units;
        }
    
        public long getProgress() {
            return progress;
        }
    
        public long getTotal() {
            return total;
        }
    
        public String getUnits() {
            return units;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/process-services/src/integTest/groovy/org/gradle/process/internal/health/memory/DefaultOsMemoryInfoIntegrationTest.groovy

    @UsesNativeServices
    class DefaultOsMemoryInfoIntegrationTest extends Specification {
    
        def "gets OS total memory on any system"() {
            when:
            new DefaultOsMemoryInfo().getOsSnapshot().getPhysicalMemory().getTotal()
    
            then:
            notThrown UnsupportedOperationException
        }
    
        def "gets OS free memory on any system"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestResponse.java

        public long getTookMs() {
            return tookMs;
        }
    
        public List<String> getWords() {
            return words;
        }
    
        public int getNum() {
            return num;
        }
    
        public long getTotal() {
            return total;
        }
    
        public List<SuggestItem> getItems() {
            return items;
        }
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top