Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for getLinux (0.14 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_container_linux.go

    	if statusUser == nil {
    		return nil
    	}
    
    	user := &kubecontainer.ContainerUser{}
    	if statusUser.GetLinux() != nil {
    		user.Linux = &kubecontainer.LinuxContainerUser{
    			UID:                statusUser.GetLinux().GetUid(),
    			GID:                statusUser.GetLinux().GetGid(),
    			SupplementalGroups: statusUser.GetLinux().GetSupplementalGroups(),
    		}
    	}
    
    	return user
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedModelPropertyTargetingRuleIntegrationTest.groovy

                interface Platforms {
                    OperatingSystem getCurrent()
                    void setCurrent(OperatingSystem os)
    
                    OperatingSystem getWindows()
                    OperatingSystem getLinux()
                }
    
                @Managed
                interface OperatingSystem {
                    String getName()
                    void setName(String name)
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_container_linux_test.go

    	assert.Equal(t, expectedConfig, containerConfig, "generate container config for kubelet runtime v1.")
    	assert.Equal(t, runAsUser, containerConfig.GetLinux().GetSecurityContext().GetRunAsUser().GetValue(), "RunAsUser should be set")
    	assert.Equal(t, runAsGroup, containerConfig.GetLinux().GetSecurityContext().GetRunAsGroup().GetValue(), "RunAsGroup should be set")
    
    	runAsRoot := int64(0)
    	runAsNonRootTrue := true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41K bytes
    - Viewed (0)
  8. cmd/kubelet/app/server.go

    			return nil
    		}
    	}
    	if err != nil {
    		return err
    	}
    
    	// Calling GetLinux().GetCgroupDriver() won't segfault, but it will always default to systemd
    	// which is not intended by the fields not being populated
    	linuxConfig := runtimeConfig.GetLinux()
    	if linuxConfig == nil {
    		return nil
    	}
    
    	switch d := linuxConfig.GetCgroupDriver(); d {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
Back to top