Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,439 for untainer (0.15 sec)

  1. pkg/kubelet/apis/podresources/server_v1.go

    			for _, container := range pod.Spec.InitContainers {
    				if !types.IsRestartableInitContainer(&container) {
    					continue
    				}
    
    				pRes.Containers = append(pRes.Containers, p.getContainerResources(pod, &container))
    			}
    		}
    
    		for _, container := range pod.Spec.Containers {
    			pRes.Containers = append(pRes.Containers, p.getContainerResources(pod, &container))
    		}
    		podResources[i] = &pRes
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 13:00:09 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/internal/extensibility/CallablePropertyIntegrationTest.groovy

                }
    
                def container = objects.domainObjectContainer(NamedThing)
                container.register("foo")
    
                container.foo.prop()
                configure(container.foo) {
                    prop()
                }
                container.configure {
                    foo {
                        prop()
                    }
                }
    
                assert container.foo.prop.counter == 3
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 28 13:46:49 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/providers/collections/groovy/build.gradle

        }
    }
    // end::ndos[]
    
    // tag::ndol[]
    
    abstract class MyPluginExtensionNamedDomainObjectList {
        // Define a named domain object container to hold Person objects
        NamedDomainObjectList<Person> people = project.container(Person)
    
        // Add a person to the container
        void addPerson(String name) {
            people.create(name: name)
        }
    }
    // end::ndol[]
    
    // tag::ndoc[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. test/typeparam/issue48337b.dir/a.go

    // license that can be found in the LICENSE file.
    
    package a
    
    type Container[T any] struct {
    	X T
    }
    
    func NewContainer[T any](x T) *Container[T] {
    	return &Container[T]{x}
    }
    
    type MetaContainer struct {
    	C *Container[Value]
    }
    
    type Value struct{}
    
    func NewMetaContainer() *MetaContainer {
    	c := NewContainer(Value{})
    	// c := &Container[Value]{Value{}} // <-- this works
    	return &MetaContainer{c}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 14 23:07:15 UTC 2021
    - 508 bytes
    - Viewed (0)
  5. pkg/kubelet/cm/internal_container_lifecycle.go

    }
    
    func (i *internalContainerLifecycleImpl) PreStartContainer(pod *v1.Pod, container *v1.Container, containerID string) error {
    	if i.cpuManager != nil {
    		i.cpuManager.AddContainer(pod, container, containerID)
    	}
    
    	if i.memoryManager != nil {
    		i.memoryManager.AddContainer(pod, container, containerID)
    	}
    
    	i.topologyManager.AddContainer(pod, container, containerID)
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 06:43:12 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_container_windows.go

    		Windows: m.generateWindowsContainerResources(pod, container),
    	}
    }
    
    // generateWindowsContainerResources generates windows container resources config for runtime
    func (m *kubeGenericRuntimeManager) generateWindowsContainerResources(pod *v1.Pod, container *v1.Container) *runtimeapi.WindowsContainerResources {
    	wcr := m.calculateWindowsResources(container.Resources.Limits.Cpu(), container.Resources.Limits.Memory())
    
    	return wcr
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/containers/GradleInContainer.groovy

        }
    
        GradleInContainer withBuildDir(File buildDirectory) {
            container.withWorkingDirectory("/test-build")
            container.withCopyFileToContainer(MountableFile.forHostPath(buildDirectory.toPath()), "/test-build")
            this
        }
    
        @PackageScope
        GradleExecResult execute(String... command) {
            if (!started) {
                container.withCommand("tail", "-f", "/dev/null")
                startContainer()
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/main/java/org/gradle/platform/base/DependencySpecContainer.java

    import java.util.Collection;
    
    /**
     * A container for dependency specifications.
     */
    @Incubating @UnmanagedStruct
    public interface DependencySpecContainer {
    
        /**
         * Defines a new dependency, based on a project path. The returned dependency can be mutated.
         *
         * @param path the project path
         *
         * @return a mutable dependency, added to this container
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. pkg/security/apparmor/helpers_test.go

    		podProfile:        unconfined,
    		expectedProfile:   localhost,
    	}}
    
    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    			container := v1.Container{
    				Name: "foo",
    			}
    			if test.containerProfile != nil {
    				container.SecurityContext = &v1.SecurityContext{
    					AppArmorProfile: test.containerProfile.DeepCopy(),
    				}
    			}
    			pod := v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:31 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelClasspathContainerAccessRuleCrossVersionSpec.groovy

            EclipseClasspathContainer container = project.classpathContainers.find { it.path == 'classpathContainerPath' }
    
            then:
            container.accessRules.size() == 2
            container.accessRules[0].kind == 0
            container.accessRules[0].pattern == 'accessibleFilesPattern'
            container.accessRules[1].kind == 1
            container.accessRules[1].pattern == 'nonAccessibleFilesPattern'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top