Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 64 for getGoal (0.33 sec)

  1. tests/fuzz/analyzer_fuzzer.go

    	}
    
    	// Mesh config file
    	addMeshConfig, err := f.GetBool()
    	if err != nil {
    		return 0
    	}
    	meshConfigFile := ""
    	if addMeshConfig {
    		meshConfigFile, err = createRandomConfigFile(f)
    		if err != nil {
    			return 0
    		}
    		defer os.Remove(meshConfigFile)
    	}
    
    	// Mesh networks file
    	addMeshNetworks, err := f.GetBool()
    	if err != nil {
    		return 0
    	}
    	meshNetworkFile := ""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4.1K 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