Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getWindows (0.19 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/TargetMachineFactory.java

     */
    public interface TargetMachineFactory {
        /**
         * Returns a {@link TargetMachineBuilder} for the Windows operating system family and the architecture of the current host.
         */
        TargetMachineBuilder getWindows();
    
        /**
         * Returns a {@link TargetMachineBuilder} for the Linux operating system family and the architecture of the current host.
         */
        TargetMachineBuilder getLinux();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/DefaultTargetMachineFactory.java

            return new TargetMachineImpl(operatingSystemFamily, machineArchitecture);
        }
    
        @Override
        public TargetMachineBuilder getWindows() {
            return new TargetMachineImpl(objectFactory.named(OperatingSystemFamily.class, OperatingSystemFamily.WINDOWS), getDefaultArchitecture());
        }
    
        @Override
        public TargetMachineBuilder getLinux() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedTypeReferencesIntegrationTest.groovy

                    String getName()
                    void setName(String name)
                }
    
                @Managed
                interface OperatingSystems {
                    OperatingSystem getWindows()
                    OperatingSystem getLinux()
                }
    
                class RulePlugin extends RuleSource {
                    @Model
                    void os(OperatingSystems os) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_container_windows.go

    }
    
    func toKubeContainerResources(statusResources *runtimeapi.ContainerResources) *kubecontainer.ContainerResources {
    	var cStatusResources *kubecontainer.ContainerResources
    	runtimeStatusResources := statusResources.GetWindows()
    	if runtimeStatusResources != nil {
    		var memLimit, cpuLimit *resource.Quantity
    
    		// Used the reversed formula from the calculateCPUMaximum function
    		if runtimeStatusResources.CpuMaximum > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top