Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 189 for vfprintf (0.31 sec)

  1. src/cmd/cgo/out.go

    			fmt.Fprintf(fgcc, "(void*)")
    		}
    	}
    	if n.Kind == "macro" {
    		fmt.Fprintf(fgcc, "%s;\n", n.C)
    	} else {
    		fmt.Fprintf(fgcc, "%s(", n.C)
    		for i := range n.FuncType.Params {
    			if i > 0 {
    				fmt.Fprintf(fgcc, ", ")
    			}
    			fmt.Fprintf(fgcc, "p%d", i)
    		}
    		fmt.Fprintf(fgcc, ");\n")
    	}
    	fmt.Fprintf(fgcc, "\t_cgo_tsan_release();\n")
    	if t := n.FuncType.Result; t != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. src/fmt/fmt_test.go

    	{1, `Sprintf("%g")`, func() { _ = Sprintf("%g", float32(3.14159)) }},
    	{0, `Fprintf(buf, "%s")`, func() { mallocBuf.Reset(); Fprintf(&mallocBuf, "%s", "hello") }},
    	{0, `Fprintf(buf, "%x")`, func() { mallocBuf.Reset(); Fprintf(&mallocBuf, "%x", 7) }},
    	{0, `Fprintf(buf, "%x")`, func() { mallocBuf.Reset(); Fprintf(&mallocBuf, "%x", 1<<16) }},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  3. istioctl/pkg/describe/describe.go

    					fmt.Fprintf(writer, "WARNING: User ID (UID) 1337 is reserved for the sidecar proxy.\n")
    				}
    			}
    		}
    	}
    
    	fmt.Fprintf(writer, "Pod: %s\n", kname(pod.ObjectMeta))
    	fmt.Fprintf(writer, "   Pod Revision: %s\n", revision)
    	if len(ports) > 0 {
    		fmt.Fprintf(writer, "   Pod Ports: %s\n", strings.Join(ports, ", "))
    	} else {
    		fmt.Fprintf(writer, "   Pod does not expose ports\n")
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

    		format = "set %s=%s\r\n"
    	}
    
    	xprintf(format, "GO111MODULE", "")
    	xprintf(format, "GOARCH", goarch)
    	xprintf(format, "GOBIN", gorootBin)
    	xprintf(format, "GODEBUG", os.Getenv("GODEBUG"))
    	xprintf(format, "GOENV", "off")
    	xprintf(format, "GOFLAGS", "")
    	xprintf(format, "GOHOSTARCH", gohostarch)
    	xprintf(format, "GOHOSTOS", gohostos)
    	xprintf(format, "GOOS", goos)
    	xprintf(format, "GOPROXY", os.Getenv("GOPROXY"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. src/testing/testing.go

    	// the test name.)
    	p.lastName = testName
    	fmt.Fprintf(p.w, p.prefix()+format, args...)
    }
    
    // Printf prints a message, generated by the named test, that does not
    // necessarily mention that tests's name itself.
    func (p *chattyPrinter) Printf(testName, format string, args ...any) {
    	p.lastNameMu.Lock()
    	defer p.lastNameMu.Unlock()
    
    	if p.lastName == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  6. src/cmd/cgo/gcc.go

    	for _, n := range names {
    		if n.Kind == "fconst" {
    			fmt.Fprintf(&b, "\t%s,\n", n.C)
    		} else {
    			fmt.Fprintf(&b, "\t0,\n")
    		}
    	}
    	fmt.Fprintf(&b, "\t1\n")
    	fmt.Fprintf(&b, "};\n")
    
    	// do the same work for strings.
    	for i, n := range names {
    		if n.Kind == "sconst" {
    			fmt.Fprintf(&b, "const char __cgodebug_str__%d[] = %s;\n", i, n.C)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  7. src/html/template/exec_test.go

    	{"printf int", `{{printf "%04x" 127}}`, "007f", tVal, true},
    	{"printf float", `{{printf "%g" 3.5}}`, "3.5", tVal, true},
    	{"printf complex", `{{printf "%g" 1+7i}}`, "(1&#43;7i)", tVal, true},
    	{"printf string", `{{printf "%s" "hello"}}`, "hello", tVal, true},
    	{"printf function", `{{printf "%#q" zeroArgs}}`, "`zeroArgs`", tVal, true},
    	{"printf field", `{{printf "%s" .U.V}}`, "v", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/test/test.go

    	if err != nil {
    		fmt.Fprintf(h, "err %v\n", err)
    		return h.Sum(), nil
    	}
    	hashWriteStat(h, info)
    	if info.IsDir() {
    		files, err := os.ReadDir(name)
    		if err != nil {
    			fmt.Fprintf(h, "err %v\n", err)
    		}
    		for _, f := range files {
    			fmt.Fprintf(h, "file %s ", f.Name())
    			finfo, err := f.Info()
    			if err != nil {
    				fmt.Fprintf(h, "err %v\n", err)
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  9. src/text/template/exec_test.go

    	{"printf int", `{{printf "%04x" 127}}`, "007f", tVal, true},
    	{"printf float", `{{printf "%g" 3.5}}`, "3.5", tVal, true},
    	{"printf complex", `{{printf "%g" 1+7i}}`, "(1+7i)", tVal, true},
    	{"printf string", `{{printf "%s" "hello"}}`, "hello", tVal, true},
    	{"printf function", `{{printf "%#q" zeroArgs}}`, "`zeroArgs`", tVal, true},
    	{"printf field", `{{printf "%s" .U.V}}`, "v", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  10. cmd/sts-handlers_test.go

    	for i, testApp := range testApps {
    		configCmds := []string{
    			fmt.Sprintf("identity_openid:%d", i),
    			fmt.Sprintf("config_url=%s/.well-known/openid-configuration", testApp.ProviderURL),
    			fmt.Sprintf("client_id=%s", testApp.ClientID),
    			fmt.Sprintf("client_secret=%s", testApp.ClientSecret),
    			"scopes=openid,groups",
    			fmt.Sprintf("redirect_uri=%s", testApp.RedirectURL),
    		}
    		if rolePolicies[i] != "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
Back to top