Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,333 for vfprintf (0.13 sec)

  1. src/cmd/compile/internal/typecheck/mkbuiltin.go

    					fmt.Fprintf(w, "{%q, varTag, %d},\n", name.Name, typ)
    				}
    			}
    		default:
    			log.Fatal("unhandled decl type", decl)
    		}
    	}
    	fmt.Fprintln(w, "}")
    
    	fmt.Fprintln(w)
    	fmt.Fprintf(w, "func %sTypes() []*types.Type {\n", name)
    	fmt.Fprintf(w, "var typs [%d]*types.Type\n", len(interner.typs))
    	for i, typ := range interner.typs {
    		fmt.Fprintf(w, "typs[%d] = %s\n", i, typ)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:49 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. src/testing/benchmark.go

    		sub.hasSub.Store(true)
    	}
    
    	if b.chatty != nil {
    		labelsOnce.Do(func() {
    			fmt.Printf("goos: %s\n", runtime.GOOS)
    			fmt.Printf("goarch: %s\n", runtime.GOARCH)
    			if b.importPath != "" {
    				fmt.Printf("pkg: %s\n", b.importPath)
    			}
    			if cpu := sysinfo.CPUName(); cpu != "" {
    				fmt.Printf("cpu: %s\n", cpu)
    			}
    		})
    
    		if !hideStdoutForTesting {
    			if b.chatty.json {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  3. src/cmd/doc/pkg.go

    					scanner := bufio.NewScanner(docBuf)
    					for scanner.Scan() {
    						fmt.Fprintf(&pkg.buf, "%s// %s\n", indent, scanner.Bytes())
    					}
    				}
    				s := pkg.oneLineNode(field.Type)
    				lineComment := ""
    				if field.Comment != nil {
    					lineComment = fmt.Sprintf("  %s", field.Comment.List[0].Text)
    				}
    				pkg.Printf("%s%s %s%s\n", indent, name, s, lineComment)
    				found = true
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 20:15:52 UTC 2024
    - 32K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/codehost/shell.go

    				continue
    			}
    
    			if f[3] != "-" {
    				if err := os.WriteFile(f[3], data, 0666); err != nil {
    					fmt.Fprintf(os.Stderr, "?%s\n", err)
    					continue
    				}
    			}
    			z, err := zip.NewReader(bytes.NewReader(data), int64(len(data)))
    			if err != nil {
    				fmt.Fprintf(os.Stderr, "?%s\n", err)
    				continue
    			}
    			for _, f := range z.File {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  5. src/cmd/cover/cover.go

    	// Declare the coverage struct as a package-level variable.
    	fmt.Fprintf(w, "\nvar %s = struct {\n", *varVar)
    	fmt.Fprintf(w, "\tCount     [%d]uint32\n", len(f.blocks))
    	fmt.Fprintf(w, "\tPos       [3 * %d]uint32\n", len(f.blocks))
    	fmt.Fprintf(w, "\tNumStmt   [%d]uint16\n", len(f.blocks))
    	fmt.Fprintf(w, "} {\n")
    
    	// Initialize the position array field.
    	fmt.Fprintf(w, "\tPos: [3 * %d]uint32{\n", len(f.blocks))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testcarchive/testdata/main5.c

    		}
    		case 4: {
    			fprintf(stderr, "OK\n");
    			fflush(stderr);
    
    			if (verbose) {
    				printf("calling Block\n");
    			}
    			Block();
    		}
    		default:
    			printf("Unknown test: %d\n", test);
    			return 0;
    	}
    
    	printf("FAIL\n");
    	return 0;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. src/fmt/doc.go

    		Printf("hi", "guys"):      hi%!(EXTRA string=guys)
    	Too few arguments: %!verb(MISSING)
    		Printf("hi%d"):            hi%!d(MISSING)
    	Non-int for width or precision: %!(BADWIDTH) or %!(BADPREC)
    		Printf("%*s", 4.5, "hi"):  %!(BADWIDTH)hi
    		Printf("%.*s", 4.5, "hi"): %!(BADPREC)hi
    	Invalid or invalid use of argument index: %!(BADINDEX)
    		Printf("%*[2]d", 7):       %!d(BADINDEX)
    		Printf("%.[2]d", 7):       %!d(BADINDEX)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  8. istioctl/pkg/waypoint/waypoint.go

    						break
    					}
    					if time.Since(startTime) > waitTimeout {
    						errorMsg := fmt.Sprintf("timed out while waiting for waypoint %v/%v", gw.Namespace, gw.Name)
    						if err != nil {
    							errorMsg += fmt.Sprintf(": %s", err)
    						}
    						return fmt.Errorf(errorMsg)
    					}
    				}
    			}
    			fmt.Fprintf(cmd.OutOrStdout(), "waypoint %v/%v applied\n", gw.Namespace, gw.Name)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    		var inner bytes.Buffer
    		if len(v.inner) > 0 {
    			fmt.Fprintf(&inner, " containing")
    			for i, vi := range v.inner {
    				if i > 0 && len(v.inner) > 2 {
    					fmt.Fprintf(&inner, ",")
    				}
    				fmt.Fprintf(&inner, " ")
    				if i > 0 && i == len(v.inner)-1 {
    					fmt.Fprintf(&inner, "and ")
    				}
    				fmt.Fprintf(&inner, "%s+%d(FP)", vi.name, vi.off)
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  10. test/nosplit.go

    			fmt.Fprintf(&buf, "#define REGISTER (CTR)\n")
    		case "arm":
    			fmt.Fprintf(&buf, "#define REGISTER (R0)\n")
    		case "arm64":
    			ptrSize = 8
    			fmt.Fprintf(&buf, "#define REGISTER (R0)\n")
    		case "amd64":
    			ptrSize = 8
    			fmt.Fprintf(&buf, "#define REGISTER AX\n")
    		case "riscv64":
    			ptrSize = 8
    			fmt.Fprintf(&buf, "#define REGISTER A0\n")
    		case "s390x":
    			ptrSize = 8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.3K bytes
    - Viewed (0)
Back to top