Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,437 for popd (0.04 sec)

  1. releasenotes/notes/endpoint-before-pod.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: networking
    issue:
    - 25112
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 170 bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/mremap.go

    	if newLength <= 0 || len(oldData) == 0 || len(oldData) != cap(oldData) || flags&mremapFixed != 0 {
    		return nil, EINVAL
    	}
    
    	pOld := &oldData[cap(oldData)-1]
    	m.Lock()
    	defer m.Unlock()
    	bOld := m.active[pOld]
    	if bOld == nil || &bOld[0] != &oldData[0] {
    		return nil, EINVAL
    	}
    	newAddr, errno := m.mremap(uintptr(unsafe.Pointer(&bOld[0])), uintptr(len(bOld)), uintptr(newLength), flags, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. pkg/kube/inject/testdata/inject/pod.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: hellopod
    spec:
      containers:
        - name: hello
          image: "fake.docker.io/google-samples/hello-go-gke:1.0"
          ports:
            - name: http
              containerPort: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 16 01:43:48 UTC 2019
    - 221 bytes
    - Viewed (0)
  4. hack/testdata/diff/pod.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: test
    spec:
      containers:
      - name: nginx
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 11 17:19:52 UTC 2018
    - 101 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/testdata/pod.json

    {
        "apiVersion": "v1",
        "kind": "Pod",
        "metadata": {
            "creationTimestamp": "2021-02-18T09:46:18Z",
            "generateName": "nginx-deployment-7b88ccfd76-",
            "labels": {
                "app": "nginx",
                "pod-template-hash": "7b88ccfd76"
            },
            "managedFields": [
                {
                    "apiVersion": "v1",
                    "fieldsType": "FieldsV1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 18 15:31:52 UTC 2021
    - 6.4K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/heap_test.go

    			}
    		}
    		for j := 0; j < len(s); j++ {
    			x := h.pop()
    			if !verify(&h, 0) {
    				t.Errorf("heap invariant violated: %v", h)
    			}
    			// pop should return elements in ascending order.
    			if want := loader.Sym((j + 1) * 10); x != want {
    				t.Errorf("pop returns wrong element: want %d, got %d", want, x)
    			}
    		}
    		if !h.empty() {
    			t.Errorf("heap is not empty after all pops")
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 19:13:42 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  7. pkg/kubelet/util/format/pod.go

    	"k8s.io/apimachinery/pkg/types"
    )
    
    // Pod returns a string representing a pod in a consistent human readable format,
    // with pod UID as part of the string.
    func Pod(pod *v1.Pod) string {
    	if pod == nil {
    		return "<nil>"
    	}
    	return PodDesc(pod.Name, pod.Namespace, pod.UID)
    }
    
    // PodDesc returns a string representing a pod in a consistent human readable format,
    // with pod UID as part of the string.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 13 08:27:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/pod.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        app: some-app
        plugin1: some-value
        plugin2: some-value
        plugin3: some-value
        plugin4: some-value
      name: some-name
      namespace: default
      ownerReferences:
      - apiVersion: apps/v1
        blockOwnerDeletion: true
        controller: true
        kind: ReplicaSet
        name: some-name
        uid: 0a9d2b9e-779e-11e7-b422-42010a8001be
    spec:
      containers:
      - args:
        - one
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/cli-runtime/artifacts/pod.yaml

    # Copy of pod.yaml without file extension for test
    apiVersion: v1
    kind: Pod
    metadata:
      name: nginx
      labels:
        name: nginx
    spec:
      containers:
      - name: nginx
        image: nginx
        ports:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 21 15:08:30 UTC 2018
    - 214 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/pod.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        app: some-app
        plugin1: some-value
        plugin2: some-value
        plugin3: some-value
        plugin4: some-value
      name: some-name
      namespace: default
      ownerReferences:
      - apiVersion: apps/v1
        blockOwnerDeletion: true
        controller: true
        kind: ReplicaSet
        name: some-name
        uid: 0a9d2b9e-779e-11e7-b422-42010a8001be
    spec:
      containers:
      - args:
        - one
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 25 19:51:58 UTC 2019
    - 2.8K bytes
    - Viewed (0)
Back to top