Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 72 for getGoal (0.36 sec)

  1. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/OsMemoryStatusAspect.java

            /**
             * Get the total memory of this category in bytes.
             *
             * @return the total memory of this category in bytes
             */
            long getTotal();
    
            /**
             * Get the free memory of this category in bytes.
             *
             * @return the free memory of this category in bytes
             */
            long getFree();
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/caching/internal/FinalizeBuildCacheConfigurationBuildOperationType.java

        }
    
        public interface Result {
    
            boolean isEnabled();
    
            boolean isLocalEnabled();
    
            boolean isRemoteEnabled();
    
            @Nullable
            BuildCacheDescription getLocal();
    
            @Nullable
            BuildCacheDescription getRemote();
    
            interface BuildCacheDescription {
    
                /**
                 * The class name of the DSL configuration type.
                 *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/project/canonical/CanonicalProjectBuilderTest.java

            List<PluginExecution> executions = plugin.getExecutions();
    
            PluginExecution execution = executions.get(0);
    
            String g0 = execution.getGoals().get(0);
    
            assertEquals("plexus:runtime", g0);
    
            configuration = execution.getDelegate().getConfiguration();
    
            assertEquals(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/openapi/extensions.go

    	"k8s.io/kube-openapi/pkg/validation/spec"
    )
    
    var intOrStringFormat = intstr.IntOrString{}.OpenAPISchemaFormat()
    
    func isExtension(schema *spec.Schema, key string) bool {
    	v, ok := schema.Extensions.GetBool(key)
    	return v && ok
    }
    
    func isXIntOrString(schema *spec.Schema) bool {
    	// built-in types have the Format while CRDs use extension
    	// both are valid, checking both
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 10 21:26:55 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/lifecycle/Lifecycle.java

            Map<String, List<String>> goals = new HashMap<>();
            lifecycle.phases().forEach(phase -> phase.plugins()
                    .forEach(plugin -> plugin.getExecutions().forEach(exec -> exec.getGoals()
                            .forEach(goal -> goals.computeIfAbsent(phase.name(), n -> new ArrayList<>())
                                    .add(plugin.getGroupId() + ":" + plugin.getArtifactId() + ":" + plugin.getVersion()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. cmd/site-replication-metrics.go

    	if rt == nil {
    		return madmin.TimedErrStats{}
    	}
    	errCounts := make(map[string]int)
    	for k, v := range rt.ErrCounts {
    		errCounts[k] = v
    	}
    	minuteTotals := rt.LastMinute.getTotal()
    	hourTotals := rt.LastHour.getTotal()
    	return madmin.TimedErrStats{
    		LastMinute: madmin.RStat{
    			Count: float64(minuteTotals.N),
    			Bytes: minuteTotals.Size,
    		},
    		LastHour: madmin.RStat{
    			Count: float64(hourTotals.N),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. tests/fuzz/security_fuzzer.go

    		return 0
    	}
    	_, _, _ = util.GenCSR(certOptions)
    	return 1
    }
    
    func fuzzedCertChain(f *fuzz.ConsumeFuzzer) ([][]*x509.Certificate, error) {
    	certChain := [][]*x509.Certificate{}
    	withPkixExtension, err := f.GetBool()
    	if err != nil {
    		return certChain, err
    	}
    	if withPkixExtension {
    		ids := []util.Identity{}
    		err := f.GenerateStruct(&ids)
    		if err != nil {
    			return certChain, err
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/DefaultGccPlatformToolChain.java

        }
    
        public void compilerProbeArgs(String... args) {
            this.compilerProbeArgs.addAll(Arrays.asList(args));
        }
    
        @Nullable
        @Override
        public GccCommandLineToolConfigurationInternal getTool(ToolType toolType) {
            return tools.get(toolType);
        }
    
        public Collection<GccCommandLineToolConfigurationInternal> getTools() {
            return tools.values();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/caching/configuration/BuildCacheConfiguration.java

        /**
         * Returns the local directory cache configuration.
         */
        DirectoryBuildCache getLocal();
    
        /**
         * Executes the given action against the local configuration.
         *
         * @param configuration the action to execute against the local cache configuration.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 27 16:11:30 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/UnavailablePlatformToolProvider.java

            throw failure();
        }
    
        @Override
        public CommandLineToolSearchResult locateTool(ToolType compilerType) {
            return this;
        }
    
        @Override
        public File getTool() {
            throw new UnsupportedOperationException();
        }
    
        @Override
        public SystemLibraries getSystemLibraries(ToolType compilerType) {
            return new EmptySystemLibraries();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top