Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,381 for sfprintf (0.25 sec)

  1. src/cmd/compile/internal/ssa/compile.go

    				nAllocs := mEnd.Mallocs - mStart.Mallocs
    				stats = fmt.Sprintf("[%d ns %d allocs %d bytes]", time, nAllocs, nBytes)
    			} else {
    				stats = fmt.Sprintf("[%d ns]", time)
    			}
    
    			if f.Log() {
    				f.Logf("  pass %s end %s\n", p.name, stats)
    				printFunc(f)
    			}
    			f.HTMLWriter.WritePhase(phaseName, fmt.Sprintf("%s <span class=\"stats\">%s</span>", phaseName, stats))
    		}
    		if p.time || p.mem {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/token.go

    		expires = obj.Expires.Format(time.RFC3339)
    	}
    	ttl = fmt.Sprintf("%-9s", ttl)
    
    	usages := strings.Join(obj.Usages, ",")
    	if len(usages) == 0 {
    		usages = "<none>"
    	}
    	usages = fmt.Sprintf("%-22s", usages)
    
    	description := obj.Description
    	if len(description) == 0 {
    		description = "<none>"
    	}
    	description = fmt.Sprintf("%-56s", description)
    
    	groups := strings.Join(obj.Groups, ",")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  3. src/internal/coverage/cfile/emit.go

    	capturedOsArgs = captureOsArgs()
    
    	if s.debug {
    		fmt.Fprintf(os.Stderr, "=+= GOCOVERDIR is %s\n", os.Getenv("GOCOVERDIR"))
    		fmt.Fprintf(os.Stderr, "=+= contents of covmetalist:\n")
    		for k, b := range ml {
    			fmt.Fprintf(os.Stderr, "=+= slot: %d path: %s ", k, b.PkgPath)
    			if b.PkgID != -1 {
    				fmt.Fprintf(os.Stderr, " hcid: %d", b.PkgID)
    			}
    			fmt.Fprintf(os.Stderr, "\n")
    		}
    		pm := rtcov.Meta.PkgMap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/patches/patches.go

    	if output == nil {
    		output = io.Discard
    	}
    
    	fmt.Fprintf(output, "[patches] Reading patches from path %q\n", path)
    
    	// Get the files in the path.
    	patchSets, patchFiles, ignoredFiles, err := getPatchSetsFromPath(path, knownTargets, output)
    	if err != nil {
    		return nil, err
    	}
    
    	if len(patchFiles) > 0 {
    		fmt.Fprintf(output, "[patches] Found the following patch files: %v\n", patchFiles)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. istioctl/pkg/dashboard/dashboard.go

    			// Try the next port
    			continue
    		}
    
    		// Close the port forwarder when the command is terminated.
    		ClosePortForwarderOnInterrupt(fw)
    
    		log.Debugf(fmt.Sprintf("port-forward to %s pod ready", flavor))
    		openBrowser(fmt.Sprintf(urlFormat, fw.Address()), writer, browser)
    
    		// Wait for stop
    		fw.WaitForStop()
    
    		return nil
    	}
    
    	return fmt.Errorf("failure running port forward process: %v", err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  6. src/math/rand/regress_test.go

    					// 32-bit machine cannot print 64-bit results
    					val = "truncated"
    				} else if reflect.TypeOf(out).Kind() == reflect.Slice {
    					val = fmt.Sprintf("%#v", out)
    				} else {
    					val = fmt.Sprintf("%T(%v)", out, out)
    				}
    				fmt.Printf("\t%s, // %s(%s)\n", val, m.Name, argstr)
    			} else {
    				want := regressGolden[p]
    				if m.Name == "Int" {
    					want = int64(int(uint(want.(int64)) << 1 >> 1))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 17.8K bytes
    - Viewed (0)
  7. test/64bit.go

    		fmt.Fprintf(bout, binaryConstL, "Uint64", i, "uint64", "uint64", a, "uint64")
    		if a.hi == 0 && a.lo == 0 {
    			fmt.Fprintf(bout, binaryConstR0, "Uint64", i, "uint64", "uint64", a, "uint64")
    		} else {
    			fmt.Fprintf(bout, binaryConstR, "Uint64", i, "uint64", "uint64", a, "uint64")
    		}
    		fmt.Fprintf(bout, shiftConstL, "Uint64", i, "uint64", "uint64", a, "uint64")
    	}
    	for i, a := range shiftValues {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 30 19:21:08 UTC 2013
    - 24.8K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_server_journal.go

    	if err != nil {
    		fmt.Fprintf(w, "\nfailed to get logging cmd: %v\n", err)
    		return
    	}
    	cmd := exec.CommandContext(ctx, cmdStr, args...)
    	cmd.Stdout = w
    	cmd.Stderr = w
    
    	if err := cmd.Run(); err != nil {
    		if _, ok := err.(*exec.ExitError); ok {
    			return
    		}
    		if previousBoot == 0 {
    			fmt.Fprintf(w, "\nerror: journal output not available\n")
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 26 18:56:28 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/upgrade/compute.go

    	if patchVersionBranchExists(clusterVersion, stableVersion) {
    		currentBranch := getBranchFromVersion(clusterVersionStr)
    		versionLabel := fmt.Sprintf("stable-%s", currentBranch)
    		description := fmt.Sprintf("version in the v%s series", currentBranch)
    
    		// Get and output the latest patch version for the cluster branch
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/test/testflag.go

    			explicitArgs = append(explicitArgs, fmt.Sprintf("-test.%s=%v", short, f.Value))
    
    			// This flag has been overridden explicitly, so don't forward its implicit
    			// value from GOFLAGS.
    			delete(addFromGOFLAGS, short)
    			delete(addFromGOFLAGS, "test."+short)
    		}
    
    		args = remainingArgs
    	}
    	if firstUnknownFlag != "" && testC {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top