Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 83 for vfprintf (0.2 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    		group.GroupVersion = grouplessGroupVersion
    		group.OptionsExternalVersion = &grouplessGroupVersion
    		group.Serializer = codecs
    		if _, _, err := (&group).InstallREST(container); err != nil {
    			panic(fmt.Sprintf("unable to install container %s: %v", group.GroupVersion, err))
    		}
    	}
    
    	// group version 1
    	{
    		group := template
    		group.Root = "/" + prefix
    		group.GroupVersion = testGroupVersion
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

                secret:
                  optional: true
                  {{ if eq .Spec.ServiceAccountName "" }}
                  secretName: istio.default
                  {{ else -}}
                  secretName: {{  printf "istio.%s" .Spec.ServiceAccountName }}
                  {{  end -}}
              {{- end }}
                {{- if isset .ObjectMeta.Annotations `sidecar.istio.io/userVolume` }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  10. 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)
Back to top