Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,173 for untainer (0.24 sec)

  1. pkg/kubelet/prober/prober.go

    // recordContainerEvent should be used by the prober for all container related events.
    func (pb *prober) recordContainerEvent(pod *v1.Pod, container *v1.Container, eventType, reason, message string, args ...interface{}) {
    	ref, err := kubecontainer.GenerateContainerRef(pod, container)
    	if err != nil {
    		klog.ErrorS(err, "Can't make a ref to pod and container", "pod", klog.KObj(pod), "containerName", container.Name)
    		return
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 10:50:13 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelClasspathContainerCrossVersionSpec.groovy

            when:
            EclipseProject project = loadToolingModel(EclipseProject)
            EclipseClasspathContainer container = project.classpathContainers.find { it.path == 'whenMergedContainerPath' }
    
            then:
            container != null
            container.exported == false
        }
    
        def "Classpath container can be configured"() {
            buildFile <<
            """apply plugin: 'java'
               apply plugin: 'eclipse'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/memorymanager/fake_memory_manager.go

    	return NewPolicyNone()
    }
    
    func (m *fakeManager) Allocate(pod *v1.Pod, container *v1.Container) error {
    	klog.InfoS("Allocate", "pod", klog.KObj(pod), "containerName", container.Name)
    	return nil
    }
    
    func (m *fakeManager) AddContainer(pod *v1.Pod, container *v1.Container, containerID string) {
    	klog.InfoS("Add container", "pod", klog.KObj(pod), "containerName", container.Name, "containerID", containerID)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. pkg/probe/util_test.go

    )
    
    func TestFindPortByName(t *testing.T) {
    	t.Parallel()
    	type args struct {
    		container *v1.Container
    		portName  string
    	}
    	tests := []struct {
    		name    string
    		args    args
    		want    int
    		wantErr bool
    	}{
    		{
    			name: "get port from exist port name",
    			args: args{
    				container: &v1.Container{
    					Ports: []v1.ContainerPort{
    						{
    							Name:          "foo",
    							ContainerPort: 8080,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 06:14:41 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractNamedDomainObjectContainerSpec.groovy

                "create(String)": { container.create("b") },
                "create(String, Action)": { container.create("b", Actions.doNothing()) },
                "register(String)": { container.register("b") },
                "register(String, Action)": { container.register("b", Actions.doNothing()) },
                "NamedDomainObjectProvider.configure(Action)": { container.named("a").configure(Actions.doNothing()) }
            ]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. docs/docker/README.md

    ```sh
    docker ps -a
    ```
    
    `-a` flag makes sure you get all the containers (Created, Running, Exited). Then identify the `Container ID` from the output.
    
    ### Starting and Stopping Containers
    
    To start a stopped container, you can use the [`docker start`](https://docs.docker.com/engine/reference/commandline/start/) command.
    
    ```sh
    docker start <container_id>
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.2K bytes
    - Viewed (2)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractPolymorphicDomainObjectContainerSpec.groovy

                "create(String, Class)": { container.create("b", container.type) },
                "create(String, Class, Action)": { container.create("b", container.type, Actions.doNothing()) },
                "register(String, Class)": { container.register("b", container.type) },
                "register(String, Class, Action)": { container.register("b", container.type, Actions.doNothing()) },
            ]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/deployment/pod.go

    		if *p.SecurityContext.RunAsUser == UserID {
    			context.Report(gvk.Pod, message)
    		}
    	}
    	for _, container := range p.Containers {
    		if container.Name != util.IstioProxyName && container.Name != util.IstioOperator {
    			if container.SecurityContext != nil && container.SecurityContext.RunAsUser != nil {
    				if *container.SecurityContext.RunAsUser == UserID {
    					context.Report(gvk.Pod, message)
    				}
    			}
    		}
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. pkg/kubelet/container/ref_test.go

    		pod       *v1.Pod
    		container *v1.Container
    		path      string
    		success   bool
    	}{
    		"basic":            {pod, &v1.Container{Name: "foo"}, "spec.containers{foo}", true},
    		"basic2":           {pod, &v1.Container{Name: "baz"}, "spec.containers{baz}", true},
    		"emptyName":        {pod, &v1.Container{Name: ""}, "spec.containers[2]", true},
    		"basicSamePointer": {pod, &pod.Spec.Containers[0], "spec.containers{foo}", true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 14 09:38:23 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r35/ToolingApiEclipseModelDependencyAccessRuleCrossVersionSpec.groovy

            container.accessRules[0].kind == 0
            container.accessRules[0].pattern == 'id-accessible'
            container.accessRules[1].kind == 1
            container.accessRules[1].pattern == 'id-nonaccessible'
            container.accessRules[2].kind == 2
            container.accessRules[2].pattern == 'id-discouraged'
            container.accessRules[3].kind == 0
            container.accessRules[3].pattern == 'literal-accessible'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top