Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getLinux (0.16 sec)

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

            return new TargetMachineImpl(objectFactory.named(OperatingSystemFamily.class, OperatingSystemFamily.WINDOWS), getDefaultArchitecture());
        }
    
        @Override
        public TargetMachineBuilder getLinux() {
            return new TargetMachineImpl(objectFactory.named(OperatingSystemFamily.class, OperatingSystemFamily.LINUX), getDefaultArchitecture());
        }
    
        @Override
        public TargetMachineBuilder getMacOS() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/TargetMachineFactory.java

         */
        TargetMachineBuilder getWindows();
    
        /**
         * Returns a {@link TargetMachineBuilder} for the Linux operating system family and the architecture of the current host.
         */
        TargetMachineBuilder getLinux();
    
        /**
         * Returns a {@link TargetMachineBuilder} for the macOS operating system family and the architecture of the current host.
         */
        TargetMachineBuilder getMacOS();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedTypeReferencesIntegrationTest.groovy

                    void setName(String name)
                }
    
                @Managed
                interface OperatingSystems {
                    OperatingSystem getWindows()
                    OperatingSystem getLinux()
                }
    
                class RulePlugin extends RuleSource {
                    @Model
                    void os(OperatingSystems os) {
                      os.windows.name = "windows"
    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/util/util.go

    		return true, sandboxStatus.Metadata.Attempt + 1, sandboxStatus.Id
    	}
    
    	// Needs to create a new sandbox when network namespace changed.
    	if sandboxStatus.GetLinux().GetNamespaces().GetOptions().GetNetwork() != NetworkNamespaceForPod(pod) {
    		klog.V(2).InfoS("Sandbox for pod has changed. Need to start a new one", "pod", klog.KObj(pod))
    		return true, sandboxStatus.Metadata.Attempt + 1, ""
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:14:48 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top