Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for pdName (0.11 sec)

  1. pkg/controller/endpointslice/endpointslice_controller_test.go

    					delay:   200 * time.Millisecond,
    					podName: "pod0",
    					podIP:   "10.0.0.0",
    				},
    				{
    					delay:   100 * time.Millisecond,
    					podName: "pod1",
    					podIP:   "10.0.0.1",
    				},
    				{
    					delay:   100 * time.Millisecond,
    					podName: "pod2",
    					podIP:   "10.0.0.2",
    				},
    			},
    			finalDelay:       3 * time.Second,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    	"k8s.io/utils/ptr"
    )
    
    var (
    	podKind = v1.SchemeGroupVersion.WithKind("Pod")
    
    	podName       = "my-pod"
    	podUID        = "1234"
    	resourceName  = "my-resource"
    	resourceName2 = resourceName + "-2"
    	claimName     = podName + "-" + resourceName
    	claimName2    = podName + "-" + resourceName + "-2"
    	className     = "my-resource-class"
    	namespace     = "default"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/lib.go

    				return addlibpath(ctxt, "internal", "internal", "", name, shlibname, zerofp)
    			}
    		}
    		pname := filepath.Join(libdir, name+".a")
    		if ctxt.Debugvlog != 0 {
    			ctxt.Logf("searching for %s.a in %s\n", name, pname)
    		}
    		if _, err := os.Stat(pname); err == nil {
    			return addlibpath(ctxt, "internal", "internal", pname, name, "", zerofp)
    		}
    	}
    
    	if name == "runtime" {
    		Exitf("error: unable to find runtime.a")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  4. tests/integration/ambient/baseline_test.go

          version: v1
        name: v1
      - labels:
          version: v2
        name: v2
    `).ApplyOrFail(t)
    				var exp string
    				for _, w := range dst.WorkloadsOrFail(t) {
    					if strings.Contains(w.PodName(), "-v1") {
    						exp = w.PodName()
    					}
    				}
    				opt.Count = 10
    				opt.Check = check.And(
    					check.OK(),
    					check.Hostname(exp))
    				src.CallOrFail(t, opt)
    			})
    		})
    	})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_set_utils_test.go

    func getClaimPodName(set *apps.StatefulSet, claim *v1.PersistentVolumeClaim) string {
    	podName := ""
    
    	statefulClaimRegex := regexp.MustCompile(fmt.Sprintf(".*-(%s-[0-9]+)$", set.Name))
    	matches := statefulClaimRegex.FindStringSubmatch(claim.Name)
    	if len(matches) != 2 {
    		return podName
    	}
    	return matches[1]
    }
    
    // ownerRefsChanged returns true if newRefs does not match originalRefs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  6. cmd/iam.go

    		if errors.Is(err, errNoSuchPolicy) {
    			for _, pname := range policies {
    				_, err := sys.store.GetPolicy(pname)
    				if errors.Is(err, errNoSuchPolicy) {
    					// all policies presented in the claim should exist
    					iamLogIf(GlobalContext, fmt.Errorf("expected policy (%s) missing from the JWT claim %s, rejecting the request", pname, iamPolicyClaimNameOpenID()))
    					return false
    				}
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	// un-restored fields.
    	pod = &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			UID:                        l.PodUID,
    			Name:                       l.PodName,
    			Namespace:                  l.PodNamespace,
    			DeletionGracePeriodSeconds: a.PodDeletionGracePeriod,
    		},
    		Spec: v1.PodSpec{
    			TerminationGracePeriodSeconds: a.PodTerminationGracePeriod,
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	return v1.Container{
    		Name:  name,
    		Image: image,
    	}
    }
    
    // makeTestPod creates a test api pod.
    func makeTestPod(podName, podNamespace, podUID string, containers []v1.Container) *v1.Pod {
    	return &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			UID:       types.UID(podUID),
    			Name:      podName,
    			Namespace: podNamespace,
    		},
    		Spec: v1.PodSpec{
    			Containers: containers,
    		},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    		}
    
    		labelledInfo := getContainerInfoFromLabels(c.Labels)
    		pod, found := pods[labelledInfo.PodUID]
    		if !found {
    			pod = &kubecontainer.Pod{
    				ID:        labelledInfo.PodUID,
    				Name:      labelledInfo.PodName,
    				Namespace: labelledInfo.PodNamespace,
    			}
    			pods[labelledInfo.PodUID] = pod
    		}
    
    		converted, err := m.toKubeContainer(c)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
Back to top