Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,437 for popd (0.04 sec)

  1. pkg/config/analysis/analyzers/testdata/pod-con-sec-uid.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: con-sec-uid
      labels:
        app: helloworld
        version: v1
    spec:
      containers:
      - name: helloworld
        image: docker.io/istio/examples-helloworld-v1
        securityContext:
          runAsUser: 1337
        resources:
          requests:
            cpu: "100m"
        imagePullPolicy: IfNotPresent #Always
        ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 364 bytes
    - Viewed (0)
  2. hack/testdata/pod-restricted-runtime-default.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        run: target
      name: target
    spec:
      securityContext:
        seccompProfile: 
          type: RuntimeDefault
      containers:
      - image: busybox
        name: target
        command: ["/bin/sh", "-c", "sleep 100"]
        securityContext:
            runAsUser: 1000
            runAsGroup: 1000
            runAsNonRoot: true
            allowPrivilegeEscalation: false
            capabilities:
              drop: 
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 24 11:16:49 UTC 2023
    - 437 bytes
    - Viewed (0)
  3. hack/testdata/pod-with-large-name.yaml

    # Used for testing name truncation in kubectl expose
    apiVersion: v1
    kind: Pod
    metadata:
      name: kubernetes-serve-hostname-testing-sixty-three-characters-in-length
      labels:
        name: kubernetes-serve-hostname
    spec:
      containers:
      - name: kubernetes-serve-hostname
        image: registry.k8s.io/e2e-test-images/agnhost:2.32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 365 bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/deployment-pod-sec-uid.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: deploy-pod-sec-uid
      labels:
        app: helloworld
        version: v1
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: helloworld
          version: v1
      template:
        metadata:
          labels:
            app: helloworld
            version: v1
        spec:
          securityContext:
            runAsUser: 1337
          containers:
          - name: helloworld
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 600 bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Pod.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 52K bytes
    - Viewed (0)
  6. hack/testdata/pod-with-metadata-and-probes.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      annotations:
        test: test
      labels:
        run: target
      name: target
    spec:
      containers:
      - image: registry.k8s.io/nginx:1.7.9
        name: target
        readinessProbe:
          exec:
            command: ["/bin/sh", "-c", "cat probe"]
        livenessProbe:
          exec:
            command: ["/bin/sh", "-c", "cat probe"]
        startupProbe:
          exec:
            command: ["/bin/sh", "-c", "cat probe"]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 17:26:20 UTC 2024
    - 471 bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inject/truncate-canonical-name-custom-controller-pod.yaml.injected

    apiVersion: v1
    kind: Pod
    metadata:
      annotations:
        istio.io/rev: default
        kubectl.kubernetes.io/default-container: hello
        kubectl.kubernetes.io/default-logs-container: hello
        prometheus.io/path: /stats/prometheus
        prometheus.io/port: "15020"
        prometheus.io/scrape: "true"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inject/truncate-canonical-name-custom-controller-pod.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      generateName: helloworld-
      # less than 63 characters
      name: helloworld-helloworld
      ownerReferences:
        - apiVersion: foo/v1
          controller: true
          kind: Bar
          # more than 63 characters
          name: helloworld-helloworld-helloworld-helloworld-helloworld-hellowo-ld
          uid: 12345678-1234-1234-1234-123456789012
    spec:
      containers:
        - name: hello
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 02 08:39:34 UTC 2024
    - 524 bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.pb

    Shingo Omura <******@****.***> 1717022429 +0900
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tf-executor-to-functional.mlir

    // CHECK-SAME: ([[ARG_0:%.*]]: tensor<i32>)
    // CHECK-NEXT: [[A:%.*]] = "tf.opA"([[ARG_0]])
    // CHECK-NEXT: [[B:%.*]] = "tf.opB"([[A]])
    // CHECK-NEXT: [[C:%.*]] = "tf.opC"([[A]])
    // CHECK-NEXT: [[D:%.*]] = "tf.opD"([[C]])
    // CHECK-NEXT: return [[B]], [[D]]
    func.func @multiple_inner_ops(%arg0: tensor<i32>) -> (tensor<i32>, tensor<i32>) {
      %graph_result:2 = tf_executor.graph {
        %output0_0, %output0_1, %control0 = tf_executor.island {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 3.6K bytes
    - Viewed (0)
Back to top