Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 3,333 for vfprintf (0.12 sec)

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

    		}
    		fmt.Fprintln(w, "}")
    		fmt.Fprintf(w, "var paramIntReg%s = %#v\n", a.name, paramIntRegs)
    		fmt.Fprintf(w, "var paramFloatReg%s = %#v\n", a.name, paramFloatRegs)
    		fmt.Fprintf(w, "var gpRegMask%s = regMask(%d)\n", a.name, a.gpregmask)
    		fmt.Fprintf(w, "var fpRegMask%s = regMask(%d)\n", a.name, a.fpregmask)
    		if a.fp32regmask != 0 {
    			fmt.Fprintf(w, "var fp32RegMask%s = regMask(%d)\n", a.name, a.fp32regmask)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  2. src/internal/trace/event.go

    		r := e.Range()
    		fmt.Fprintf(&sb, " Name=%q Scope=%s", r.Name, r.Scope)
    		if kind == EventRangeEnd {
    			fmt.Fprintf(&sb, " Attributes=[")
    			for i, attr := range e.RangeAttributes() {
    				if i != 0 {
    					fmt.Fprintf(&sb, " ")
    				}
    				fmt.Fprintf(&sb, "%q=%s", attr.Name, valueAsString(attr.Value))
    			}
    			fmt.Fprintf(&sb, "]")
    		}
    	case EventTaskBegin, EventTaskEnd:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/addons/proxy/proxy.go

    		return err
    	}
    
    	fmt.Fprintln(out, "---")
    	fmt.Fprintf(out, "%s", saBytes)
    	fmt.Fprintln(out, "---")
    	fmt.Fprintf(out, "%s", crbBytes)
    	fmt.Fprintln(out, "---")
    	fmt.Fprintf(out, "%s", roleBytes)
    	fmt.Fprintln(out, "---")
    	fmt.Fprintf(out, "%s", roleBindingBytes)
    	fmt.Fprint(out, "---")
    	fmt.Fprintf(out, "%s", cmByte)
    	fmt.Fprint(out, "---")
    	fmt.Fprintf(out, "%s", dsByte)
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 13:23:44 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  4. src/go/types/errors.go

    func (err *error_) msg() string {
    	if err.empty() {
    		return "no error"
    	}
    
    	var buf strings.Builder
    	for i := range err.desc {
    		p := &err.desc[i]
    		if i > 0 {
    			fmt.Fprint(&buf, "\n\t")
    			if p.posn.Pos().IsValid() {
    				fmt.Fprintf(&buf, "%s: ", err.check.fset.Position(p.posn.Pos()))
    			}
    		}
    		buf.WriteString(p.msg)
    	}
    	return buf.String()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. src/cmd/link/internal/benchmark/bench.go

    		totTime += dur
    		fmt.Fprintf(w, "%s 1 %d ns/op", makeBenchString(curMark.name+gcString), dur.Nanoseconds())
    		fmt.Fprintf(w, "\t%d B/op", curMark.endM.TotalAlloc-curMark.startM.TotalAlloc)
    		fmt.Fprintf(w, "\t%d allocs/op", curMark.endM.Mallocs-curMark.startM.Mallocs)
    		if m.gc == GC {
    			fmt.Fprintf(w, "\t%d live-B", curMark.gcM.HeapAlloc)
    		} else {
    			fmt.Fprintf(w, "\t%d heap-B", curMark.endM.HeapAlloc)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 30 18:10:36 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/testdata/gen/cmpConstGen.go

    		fmt.Fprintf(w, "for i, test := range %v_tests {\n", typ)
    		fmt.Fprintf(w, "	for j, x := range %v_vals {\n", typ)
    		fmt.Fprintf(w, "		want := test.exp.l\n")
    		fmt.Fprintf(w, "		if j == test.idx {\nwant = test.exp.e\n}")
    		fmt.Fprintf(w, "		else if j > test.idx {\nwant = test.exp.r\n}\n")
    		fmt.Fprintf(w, "		if test.fn(x) != want {\n")
    		fmt.Fprintf(w, "			fn := runtime.FuncForPC(reflect.ValueOf(test.fn).Pointer()).Name()\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  7. src/math/rand/v2/regress_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    
    	var buf bytes.Buffer
    	fmt.Fprintf(&buf, "\t// Output:\n")
    	for _, line := range strings.Split(string(out), "\n") {
    		if line != "" {
    			fmt.Fprintf(&buf, "\t// %s\n", line)
    		}
    	}
    
    	replace(t, "example_test.go", buf.Bytes())
    
    	// Exit so that Example_rand cannot fail.
    	fmt.Printf("UPDATED; ignore non-zero exit status\n")
    	os.Exit(1)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:03:11 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  8. test/typeparam/issue47740.go

    // type Lit[Ty any] Ty
    //
    // func (lit Lit[Ty]) Eval() Ty       { return Ty(lit) }
    // func (lit Lit[Ty]) String() string { return fmt.Sprintf("(lit %v)", Ty(lit)) }
    
    type Eq[Ty any] struct {
    	a Exp[Ty]
    	b Exp[Ty]
    }
    
    func (e Eq[Ty]) String() string {
    	return fmt.Sprintf("(eq %v %v)", e.a, e.b)
    }
    
    // For now, a lone type parameter is not permitted as RHS in a type declaration (issue #45639).
    // var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1008 bytes
    - Viewed (0)
  9. pkg/version/cobra.go

    						remoteVersion = coalesceVersions(remoteVersion)
    						_, _ = fmt.Fprintf(cmd.OutOrStdout(), "client version: %s\n", version.ClientVersion.Version)
    						for _, remote := range *remoteVersion {
    							_, _ = fmt.Fprintf(cmd.OutOrStdout(), "%s version: %s\n", remote.Component, remote.Info.Version)
    						}
    
    					} else {
    						_, _ = fmt.Fprintf(cmd.OutOrStdout(), "%s\n", version.ClientVersion.Version)
    					}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  10. istioctl/pkg/checkinject/checkinject.go

    		if nsMatched && podMatched {
    			if nsLabel != "" && podLabel != "" {
    				return fmt.Sprintf("Namespace label %s matches, and pod label %s matches", nsLabel, podLabel), true
    			} else if nsLabel != "" {
    				outMsg := fmt.Sprintf("Namespace label %s matches", nsLabel)
    				if strings.Contains(nsLabel, "kubernetes.io/metadata.name") {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top