Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 210 for container_0 (0.37 sec)

  1. fess-crawler-es/src/test/resources/lasta_di.properties

    # _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
    # Lasta Di properties, you can set container's options
    # _/_/_/_/_/_/_/_/_/_/
    
    # location of smart-deploy mode e.g. maihama_env.properties: lasta_di.smart.deploy.mode
    #smart.deploy.mode.location = maihama_env.properties: lasta_di.smart.deploy.mode
    
    # package for smart deploy target e.g. org.docksidestage.app
    smart.package1 = org.codelibs.fess.crawler
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 479 bytes
    - Viewed (0)
  2. pkg/api/v1/resource/helpers.go

    	limits := reuseOrClearResourceList(opts.Reuse)
    
    	for _, container := range pod.Spec.Containers {
    		if opts.ContainerFn != nil {
    			opts.ContainerFn(container.Resources.Limits, podutil.Containers)
    		}
    		addResourceList(limits, container.Resources.Limits)
    	}
    
    	restartableInitContainerLimits := v1.ResourceList{}
    	initContainerLimits := v1.ResourceList{}
    	// init containers define the minimum of any resource
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 26 13:58:16 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  3. pkg/securitycontext/util.go

    	}
    
    	if containerSc.RunAsUser != nil {
    		effectiveSc.RunAsUser = new(int64)
    		*effectiveSc.RunAsUser = *containerSc.RunAsUser
    	}
    
    	if containerSc.RunAsGroup != nil {
    		effectiveSc.RunAsGroup = new(int64)
    		*effectiveSc.RunAsGroup = *containerSc.RunAsGroup
    	}
    
    	if containerSc.RunAsNonRoot != nil {
    		effectiveSc.RunAsNonRoot = new(bool)
    		*effectiveSc.RunAsNonRoot = *containerSc.RunAsNonRoot
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 15 07:28:24 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  4. pkg/kubelet/container/testing/runtime_mock.go

    func (m *MockRuntime) DeleteContainer(ctx context.Context, containerID container.ContainerID) error {
    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "DeleteContainer", ctx, containerID)
    	ret0, _ := ret[0].(error)
    	return ret0
    }
    
    // DeleteContainer indicates an expected call of DeleteContainer.
    func (mr *MockRuntimeMockRecorder) DeleteContainer(ctx, containerID any) *gomock.Call {
    	mr.mock.ctrl.T.Helper()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 27K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Pod.yaml

        type: typeValue
      containerStatuses:
      - allocatedResources:
          allocatedResourcesKey: "0"
        containerID: containerIDValue
        image: imageValue
        imageID: imageIDValue
        lastState:
          running:
            startedAt: "2001-01-01T01:01:01Z"
          terminated:
            containerID: containerIDValue
            exitCode: 1
            finishedAt: "2006-01-01T01:01:01Z"
            message: messageValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  6. pkg/kubelet/metrics/collectors/log_metrics.go

    	statsapi "k8s.io/kubelet/pkg/apis/stats/v1alpha1"
    )
    
    var (
    	descLogSize = metrics.NewDesc(
    		"kubelet_container_log_filesystem_used_bytes",
    		"Bytes used by the container's logs on the filesystem.",
    		[]string{
    			"uid",
    			"namespace",
    			"pod",
    			"container",
    		}, nil,
    		metrics.ALPHA,
    		"",
    	)
    )
    
    type logMetricsCollector struct {
    	metrics.BaseStableCollector
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 05 13:02:13 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Pod.json

                "startedAt": "2005-01-01T01:01:01Z",
                "finishedAt": "2006-01-01T01:01:01Z",
                "containerID": "containerIDValue"
              }
            },
            "ready": true,
            "restartCount": 5,
            "image": "imageValue",
            "imageID": "imageIDValue",
            "containerID": "containerIDValue",
            "started": true,
            "allocatedResources": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  8. src/main/resources/lasta_di.properties

    # _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
    # Lasta Di properties, you can set container's options
    # _/_/_/_/_/_/_/_/_/_/
    
    # location of smart-deploy mode e.g. maihama_env.properties: lasta_di.smart.deploy.mode
    smart.deploy.mode.location = fess_env.properties: lasta_di.smart.deploy.mode
    
    # package for smart deploy target e.g. org.docksidestage.app
    smart.package1 = org.codelibs.fess.app
    
    # script engine
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Apr 05 21:04:36 UTC 2019
    - 457 bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/security_context_others_test.go

    			},
    			uid:  &anyUser,
    			fail: false,
    		},
    		{
    			desc: "Pass if container's user and image's user aren't set and RunAsNonRoot is true",
    			sc: &v1.SecurityContext{
    				RunAsNonRoot: &runAsNonRootTrue,
    			},
    			fail: false,
    		},
    	} {
    		pod.Spec.Containers[0].SecurityContext = test.sc
    		err := verifyRunAsNonRoot(pod, &pod.Spec.Containers[0], test.uid, test.username)
    		if test.fail {
    			assert.Error(t, err, test.desc)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 10:06:54 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/helpers.go

    			klog.InfoS("No PodSandBox found for the container", "podSandboxId", c.PodSandboxId, "containerName", c.Metadata.Name, "containerId", c.Id)
    			continue
    		}
    		podUID := podSandboxMap[c.PodSandboxId]
    		containerMap.Add(podUID, c.Metadata.Name, c.Id)
    		if c.State == runtimeapi.ContainerState_CONTAINER_RUNNING {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top