Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 79 for vfprintf (0.26 sec)

  1. pkg/controller/job/job_controller_test.go

    			for i, pod := range tc.pods {
    				pod := pod
    				pb := podBuilder{Pod: &pod}.name(fmt.Sprintf("mypod-%d", i)).job(job)
    				if job.Spec.CompletionMode != nil && *job.Spec.CompletionMode == batch.IndexedCompletion {
    					pb.index(fmt.Sprintf("%v", i))
    				}
    				pb = pb.trackingFinalizer()
    				sharedInformerFactory.Core().V1().Pods().Informer().GetIndexer().Add(pb.Pod)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  2. pkg/controller/statefulset/stateful_set_control_test.go

    		runTestOverPVCRetentionPolicies(
    			t,
    			fmt.Sprintf("%s/Monotonic", fnName),
    			func(t *testing.T, policy *apps.StatefulSetPersistentVolumeClaimRetentionPolicy) {
    				set := testObj()
    				set.Spec.PersistentVolumeClaimRetentionPolicy = policy
    				testFn(t, set, assertMonotonicInvariants)
    			},
    		)
    		runTestOverPVCRetentionPolicies(
    			t,
    			fmt.Sprintf("%s/Burst", fnName),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  3. cmd/bucket-replication.go

    	defer func() {
    		if rinfo.ReplicationStatus == replication.Completed && tgt.ResetID != "" && dobj.OpType == replication.ExistingObjectReplicationType {
    			rinfo.ResyncTimestamp = fmt.Sprintf("%s;%s", UTCNow().Format(http.TimeFormat), tgt.ResetID)
    		}
    	}()
    
    	if dobj.VersionID == "" && rinfo.PrevReplicationStatus == replication.Completed && dobj.OpType != replication.ExistingObjectReplicationType {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  4. src/crypto/x509/verify_test.go

    	parent, parentKey, err := generateCert("Root CA", true, nil, nil)
    	if err != nil {
    		t.Fatal(err)
    	}
    	roots.AddCert(parent)
    
    	for i := 1; i < 15; i++ {
    		name := fmt.Sprintf("Intermediate CA #%d", i)
    		parent, parentKey, err = generateCert(name, true, parent, parentKey)
    		if err != nil {
    			t.Fatal(err)
    		}
    		intermediates.AddCert(parent)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  5. pkg/apis/apps/validation/validation_test.go

    	for _, testCase := range append(successCases, errorCases...) {
    		name := testCase.name
    		var testTitle string
    		if len(testCase.errs) == 0 {
    			testTitle = fmt.Sprintf("success case %s", name)
    		} else {
    			testTitle = fmt.Sprintf("error case %s", name)
    		}
    
    		t.Run(testTitle, func(t *testing.T) {
    			if strings.Contains(name, enableStatefulSetAutoDeletePVC) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  6. pkg/controller/garbagecollector/garbagecollector_test.go

    	if _, queued := t.pendingMap[item]; queued {
    		// fmt.Printf("already queued: %#v\n", item)
    		return
    	}
    	t.pendingMap[item] = struct{}{}
    	t.pendingList = append(t.pendingList, item)
    }
    func (t *trackingWorkqueue[T]) dequeue(item T) {
    	if _, queued := t.pendingMap[item]; !queued {
    		// fmt.Printf("not queued: %#v\n", item)
    		return
    	}
    	delete(t.pendingMap, item)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods.go

    		// dual-stack feature flag is not enabled.
    		for _, hostIP := range hostIPs {
    			buffer.WriteString(fmt.Sprintf("%s\t%s.%s\t%s\n", hostIP, hostName, hostDomainName, hostName))
    		}
    	} else {
    		for _, hostIP := range hostIPs {
    			buffer.WriteString(fmt.Sprintf("%s\t%s\n", hostIP, hostName))
    		}
    	}
    	buffer.Write(hostsEntriesFromHostAliases(hostAliases))
    	return buffer.Bytes()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  8. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    			}
    		}
    		return nodes
    	}
    	makePods := func() []v1.Pod {
    		pods := make([]v1.Pod, numNodes*podsPerNode)
    		for i := 0; i < numNodes*podsPerNode; i++ {
    			pods[i] = *testutil.NewPod(fmt.Sprintf("pod%d", i), fmt.Sprintf("node%d", i%numNodes))
    		}
    		return pods
    	}
    
    	table := []struct {
    		workers int
    	}{
    		{workers: 0}, // will default to scheduler.UpdateWorkerSize
    		{workers: 1},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/x86/asm6.go

    	if false { /* debug['a'] > 1 */
    		fmt.Printf("span1 %s %d (%d tries)\n %.6x", s.Name, s.Size, n, 0)
    		var i int
    		for i = 0; i < len(s.P); i++ {
    			fmt.Printf(" %.2x", s.P[i])
    			if i%16 == 15 {
    				fmt.Printf("\n  %.6x", uint(i+1))
    			}
    		}
    
    		if i%16 != 0 {
    			fmt.Printf("\n")
    		}
    
    		for i := 0; i < len(s.R); i++ {
    			r := &s.R[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  10. pkg/kubelet/eviction/eviction_manager_test.go

    			},
    		},
    	}
    	for name, tc := range testCases {
    		for _, enablePodDisruptionConditions := range []bool{false, true} {
    			t.Run(fmt.Sprintf("%s;PodDisruptionConditions=%v", name, enablePodDisruptionConditions), func(t *testing.T) {
    				featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.PodDisruptionConditions, enablePodDisruptionConditions)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top