Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 215 for vfprintf (0.16 sec)

  1. staging/src/k8s.io/api/certificates/v1beta1/generated.pb.go

    		`Type:` + fmt.Sprintf("%v", this.Type) + `,`,
    		`Reason:` + fmt.Sprintf("%v", this.Reason) + `,`,
    		`Message:` + fmt.Sprintf("%v", this.Message) + `,`,
    		`LastUpdateTime:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.LastUpdateTime), "Time", "v1.Time", 1), `&`, ``, 1) + `,`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite.go

    	}
    	if logopt.Enabled() {
    		logopt.LogOpt(v.Pos, "copy", "lower", v.Block.Func.Name, fmt.Sprintf("%d bytes", s))
    	}
    	return true
    }
    func LogLargeCopy(funcName string, pos src.XPos, s int64) {
    	if s < 128 {
    		return
    	}
    	if logopt.Enabled() {
    		logopt.LogOpt(pos, "copy", "lower", funcName, fmt.Sprintf("%d bytes", s))
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    	for modeIndex := range modes {
    		for tcIndex := range tests {
    			mode := modes[modeIndex]
    			tc := tests[tcIndex]
    			testName := fmt.Sprintf("%s [%s]", tc.name, mode)
    			uniqueTestString := fmt.Sprintf("global-mount-%s", testName)
    			uniquePodDir := fmt.Sprintf("%s-%x", kubeletPodsDir, md5.Sum([]byte(uniqueTestString)))
    			t.Run(testName+"[", func(t *testing.T) {
    				t.Parallel()
    				pv := &v1.PersistentVolume{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	if err != nil {
    		klog.ErrorS(err, "Can't make a container ref", "pod", klog.KObj(pod), "podUID", pod.UID, "containerName", container.Name)
    		return
    	}
    	eventMessage := message
    	if len(args) > 0 {
    		eventMessage = fmt.Sprintf(message, args...)
    	}
    	// this is a hack, but often the error from the runtime includes the containerID
    	// which kills our ability to deduplicate events.  this protection makes a huge
    	// difference in the number of unique events
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    	// for resourceA does not include any objects from resourceB.
    	resourceB := fmt.Sprintf("%sdef", resourceA)
    
    	resourceACountExpected := 5
    	for i := 1; i <= resourceACountExpected; i++ {
    		obj := &example.Pod{ObjectMeta: metav1.ObjectMeta{Name: fmt.Sprintf("foo-%d", i)}}
    
    		key := fmt.Sprintf("%s/%d", resourceA, i)
    		if err := store.Create(ctx, key, obj, nil, 0); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  6. pkg/apis/admissionregistration/validation/validation.go

    			allErrors = append(allErrors, field.Invalid(fldPath.Index(i), resSub, fmt.Sprintf("if '%s/*' is present, must not specify %s", res, resSub)))
    		}
    		if _, ok := subResourcesWithWildcardResource[sub]; ok {
    			allErrors = append(allErrors, field.Invalid(fldPath.Index(i), resSub, fmt.Sprintf("if '*/%s' is present, must not specify %s", sub, resSub)))
    		}
    		if sub == "*" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loader/loader.go

    		// due to the use of LinkString for names of instantiating types.
    		format = strings.Replace(reporter.ldr.SymName(s), "%", "%%", -1) + ": " + format
    	} else {
    		format = fmt.Sprintf("sym %d: %s", s, format)
    	}
    	format += "\n"
    	fmt.Fprintf(os.Stderr, format, args...)
    	reporter.AfterErrorAction()
    }
    
    // GetErrorReporter returns the loader's associated error reporter.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  8. pkg/apis/certificates/validation/validation_test.go

    					Usages:     validUsages,
    					Request:    newCSRPEM(t),
    					SignerName: fmt.Sprintf("%s.example.io/valid-path", repeatString("a", 66)),
    				},
    			},
    			errs: field.ErrorList{
    				field.Invalid(specPath.Child("signerName"), fmt.Sprintf("%s.example.io", repeatString("a", 66)), fmt.Sprintf(`validating label "%s": must be no more than 63 characters`, repeatString("a", 66))),
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  9. pkg/proxy/nftables/proxier.go

    			// rules in the "filter" table rejecting incoming packets for
    			// the service's IPs.
    			internalTrafficFilterVerdict = fmt.Sprintf("goto %s", rejectChain)
    			externalTrafficFilterVerdict = fmt.Sprintf("goto %s", rejectChain)
    		} else {
    			if !hasInternalEndpoints {
    				// The internalTrafficPolicy is "Local" but there are no local
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  10. src/strings/strings_test.go

    		for j := 1; j <= 64; j <<= 1 {
    			b.Run(fmt.Sprintf("%d:%d", k, j), func(b *testing.B) {
    				for i := 0; i < b.N; i++ {
    					LastIndexAny(x[:k], cs[:j])
    				}
    			})
    		}
    	}
    }
    
    func BenchmarkTrimASCII(b *testing.B) {
    	cs := "0123456789abcdef"
    	for k := 1; k <= 4096; k <<= 4 {
    		for j := 1; j <= 16; j <<= 1 {
    			b.Run(fmt.Sprintf("%d:%d", k, j), func(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
Back to top