Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 595 for mypods (0.13 sec)

  1. src/cmd/internal/pkgpattern/pat_test.go

    	not ./vendor/foo/vendor/bar
    
    	pattern mycode/vendor/...
    	match mycode/vendor mycode/vendor/foo mycode/vendor/foo/vendor
    	not mycode/vendor/foo/vendor/bar
    
    	pattern x/vendor/y
    	match x/vendor/y
    	not x/vendor
    
    	pattern x/vendor/y/...
    	match x/vendor/y x/vendor/y/z x/vendor/y/vendor x/vendor/y/z/vendor
    	not x/vendor/y/vendor/z
    
    	pattern .../vendor/...
    	match x/vendor/y x/vendor/y/z x/vendor/y/vendor x/vendor/y/z/vendor
    `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 16:43:40 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/errors_test.go

    		{`{"kind":"Status","apiVersion":"v1","metadata":{},"status":"Failure","message":"pod \"mypod\" is forbidden: User \"NAME\" cannot get resource \"pod\" in API group \"\" at the cluster scope","reason":"Forbidden","details":{"name":"mypod","kind":"pod"},"code":403}
    `, authorizer.AttributesRecord{User: u, Verb: "get", Resource: "pod", ResourceRequest: true, Name: "mypod"}, "", "application/json"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 29 07:45:20 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/proxy/transport_test.go

    			sourceURL:    "http://mynode.com/any/path/",
    			transport:    testTransport,
    			output:       `<script src="http://google.com/kubernetes.js"/>`,
    			contentType:  "text/html",
    			forwardedURI: "/proxy/node/node1:10250/any/path/",
    		},
    		"abs but same host": {
    			input:        `<script src="http://mynode.com/kubernetes.js"/>`,
    			sourceURL:    "http://mynode.com/any/path/",
    			transport:    testTransport,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  4. pkg/kubelet/apis/config/v1beta1/zz_generated.conversion.go

    	out.QOSReserved = *(*map[string]string)(unsafe.Pointer(&in.QOSReserved))
    	out.RuntimeRequestTimeout = in.RuntimeRequestTimeout
    	out.HairpinMode = in.HairpinMode
    	out.MaxPods = in.MaxPods
    	out.PodCIDR = in.PodCIDR
    	if err := v1.Convert_Pointer_int64_To_int64(&in.PodPidsLimit, &out.PodPidsLimit, s); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  5. plugin/pkg/admission/security/podsecurity/admission_test.go

    			ctx := context.Background()
    			attrs := admission.NewAttributesRecord(
    				corePod.DeepCopy(), nil,
    				schema.GroupVersionKind{Group: "", Version: "v1", Kind: "Pod"},
    				namespace, "mypod",
    				schema.GroupVersionResource{Group: "", Version: "v1", Resource: "pods"},
    				"",
    				admission.Create, &metav1.CreateOptions{}, false,
    				&user.DefaultInfo{Name: "myuser"},
    			)
    			b.ResetTimer()
    			for i := 0; i < b.N; i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 15 01:29:47 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet.go

    			handler.HandlePodUpdates(u.Pods)
    		case kubetypes.REMOVE:
    			klog.V(2).InfoS("SyncLoop REMOVE", "source", u.Source, "pods", klog.KObjSlice(u.Pods))
    			handler.HandlePodRemoves(u.Pods)
    		case kubetypes.RECONCILE:
    			klog.V(4).InfoS("SyncLoop RECONCILE", "source", u.Source, "pods", klog.KObjSlice(u.Pods))
    			handler.HandlePodReconcile(u.Pods)
    		case kubetypes.DELETE:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  7. plugin/pkg/admission/security/podsecurity/testdata/pod_restricted.yaml

        volumeMounts:
        - mountPath: /var/run/secrets/kubernetes.io/serviceaccount
          name: kube-api-access-s8rz5
          readOnly: true
      dnsPolicy: Default
      enableServiceLinks: true
      nodeName: mynode
      nodeSelector:
        kubernetes.io/os: linux
      preemptionPolicy: PreemptLowerPriority
      priority: 2000000000
      priorityClassName: system-cluster-critical
      restartPolicy: Always
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 04 16:26:30 UTC 2021
    - 18.3K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_outside.txt

    # 'go list -m <mods> all' should also fail.
    ! go list -m example.com/printversion@v1.0.0 all
    stderr 'go: cannot match "all": go.mod file not found in current directory or any parent directory; see ''go help modules''$'
    ! stdout 'example.com/version'
    
    # 'go list -m <mods>' should fail if any of the mods lacks an explicit version.
    ! go list -m example.com/printversion
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 18 15:34:40 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  9. pkg/printers/internalversion/printers.go

    		obj.Spec.ScaleTargetRef.Name)
    	minPods := "<unset>"
    	metrics := formatHPAMetrics(obj.Spec.Metrics, obj.Status.CurrentMetrics)
    	if obj.Spec.MinReplicas != nil {
    		minPods = fmt.Sprintf("%d", *obj.Spec.MinReplicas)
    	}
    	maxPods := obj.Spec.MaxReplicas
    	currentReplicas := obj.Status.CurrentReplicas
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  10. pkg/controller/statefulset/stateful_set_control_test.go

    		}
    
    		sort.Sort(ascendingOrdinal(pods))
    
    		// expected number of pod is 0,1,2,3
    		if !reflect.DeepEqual(pods, originalPods[:4]) {
    			t.Fatalf("Expected pods %v, got pods %v", originalPods[:4], pods)
    		}
    
    		// create new pods
    		if _, err = ssc.UpdateStatefulSet(context.TODO(), set, pods); err != nil {
    			t.Fatal(err)
    		}
    		pods, err = spc.podsLister.Pods(set.Namespace).List(selector)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
Back to top