- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 329 for containerid (0.11 sec)
-
cni/pkg/nodeagent/podcgroupns.go
var podUID types.UID var containerID string for _, cgroup := range cgroups { candidatePodUID, candidateContainerID, ok := getPodUIDAndContainerIDFromCGroupPath(cgroup.GroupPath) switch { case !ok: // Cgroup did not contain a container ID. continue case containerID == "": // This is the first container ID found so far. podUID = candidatePodUID
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Apr 12 21:47:31 UTC 2024 - 11K bytes - Viewed (0) -
api/go1.4.txt
pkg syscall (linux-arm), type SysProcIDMap struct, HostID int pkg syscall (linux-arm), type SysProcIDMap struct, Size int pkg syscall (linux-arm-cgo), type SysProcAttr struct, GidMappings []SysProcIDMap pkg syscall (linux-arm-cgo), type SysProcAttr struct, UidMappings []SysProcIDMap pkg syscall (linux-arm-cgo), type SysProcIDMap struct pkg syscall (linux-arm-cgo), type SysProcIDMap struct, ContainerID int
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Dec 12 03:01:01 UTC 2014 - 34K bytes - Viewed (0) -
cni/pkg/plugin/plugin_test.go
serverClose := setupCNIEventClientWithMockServer(false) cniConf := buildMockConf(true) pod, ns := buildFakePodAndNSForClient() proxy := corev1.Container{Name: "istio-proxy"} app := corev1.Container{Name: "app"} pod.Spec.Containers = []corev1.Container{app, proxy} pod.ObjectMeta.Annotations = map[string]string{annotation.SidecarStatus.Name: "true"}
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 17.3K bytes - Viewed (0) -
docs/de/docs/deployment/docker.md
``` </details> ## Was ist ein Container? Container (hauptsächlich Linux-Container) sind eine sehr **leichtgewichtige** Möglichkeit, Anwendungen einschließlich aller ihrer Abhängigkeiten und erforderlichen Dateien zu verpacken und sie gleichzeitig von anderen Containern (anderen Anwendungen oder Komponenten) im selben System isoliert zu halten.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Aug 12 21:47:53 UTC 2024 - 39K bytes - Viewed (0) -
cni/pkg/plugin/plugin.go
ExcludeNamespaces []string `json:"exclude_namespaces"` } // K8sArgs is the valid CNI_ARGS used for Kubernetes // The field names need to match exact keys in containerd args for unmarshalling // https://github.com/containerd/containerd/blob/ced9b18c231a28990617bc0a4b8ce2e81ee2ffa1/pkg/cri/server/sandbox_run.go#L526-L532 type K8sArgs struct { types.CommonArgs
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Aug 14 19:36:19 UTC 2024 - 10.5K bytes - Viewed (0) -
cni/pkg/repair/repaircontroller.go
} } // For each candidate pod, iterate across all init containers searching for // crashlooping init containers that match our criteria for _, container := range pod.Status.InitContainerStatuses { // Skip the container if the InitContainerName is not a match and our // InitContainerName filter is non-empty. if c.cfg.InitContainerName != "" && container.Name != c.cfg.InitContainerName { continue }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Sat Feb 10 00:31:55 UTC 2024 - 10.4K bytes - Viewed (0) -
istioctl/pkg/describe/describe_test.go
Name: "productpage-v1-1234567890", Namespace: "default", Labels: map[string]string{ "app": "productpage", }, }, Spec: corev1.PodSpec{ Containers: []corev1.Container{ { Name: "productpage", Ports: []corev1.ContainerPort{ { Name: "http", ContainerPort: 9080, }, }, },
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 01 20:04:20 UTC 2024 - 30.8K bytes - Viewed (0) -
tensorflow/c/eager/c_api.h
// Some TF ops need a step container to be set to limit the lifetime of some // resources (mostly TensorArray and Stack, used in while loop gradients in // graph mode). Calling this on a context tells it to start a step. TF_CAPI_EXPORT extern void TFE_ContextStartStep(TFE_Context* ctx); // Ends a step. When there is no active step (that is, every started step has // been ended) step containers will be cleared. Note: it is not safe to call
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Apr 27 21:07:00 UTC 2023 - 22.8K bytes - Viewed (0) -
common-protos/k8s.io/api/batch/v1/generated.proto
// Restricts the check for exit codes to the container with the // specified name. When null, the rule applies to all containers. // When specified, it should match one the container or initContainer // names in the pod template. // +optional optional string containerName = 1; // Represents the relationship between the container exit code(s) and the // specified values. Containers completed with success (exit code 0) are
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 21.1K bytes - Viewed (0) -
helm/minio/values.yaml
## Additional volumes to minio container extraVolumes: [] ## Additional volumeMounts to minio container extraVolumeMounts: [] ## Additional sidecar containers extraContainers: [] ## Internal port number for MinIO S3 API container ## Change service.port to change external port number minioAPIPort: "9000" ## Internal port number for MinIO Browser Console container
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 10 15:48:31 UTC 2024 - 18.8K bytes - Viewed (1)