Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,330 for vfprintf (0.3 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm/armasm/plan9x.go

    		start := -2
    		end := -2
    		fmt.Fprintf(&buf, "[")
    		flush := func() {
    			if start >= 0 {
    				if buf.Len() > 1 {
    					fmt.Fprintf(&buf, ",")
    				}
    				if start == end {
    					fmt.Fprintf(&buf, "R%d", start)
    				} else {
    					fmt.Fprintf(&buf, "R%d-R%d", start, end)
    				}
    				start = -2
    				end = -2
    			}
    		}
    		for i := 0; i < 16; i++ {
    			if a&(1<<uint(i)) != 0 {
    				if i == end+1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. src/cmd/go/proxy_test.go

    		if err != nil {
    			if testing.Verbose() && encPath != "example.com/invalidpath/v1" {
    				fmt.Fprintf(os.Stderr, "go proxy_test: %v\n", err)
    			}
    			continue
    		}
    		encVers := name[i+1:]
    		vers, err := module.UnescapeVersion(encVers)
    		if err != nil {
    			fmt.Fprintf(os.Stderr, "go proxy_test: %v\n", err)
    			continue
    		}
    		modList = append(modList, module.Version{Path: path, Version: vers})
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 03 09:56:24 UTC 2023
    - 12K bytes
    - Viewed (0)
  3. src/cmd/internal/objfile/disasm.go

    				// Print instruction as bytes.
    				fmt.Fprintf(tw, "%x", code[i:i+size])
    			} else {
    				// Print instruction as 32-bit words.
    				for j := uint64(0); j < size; j += 4 {
    					if j > 0 {
    						fmt.Fprintf(tw, " ")
    					}
    					fmt.Fprintf(tw, "%08x", d.byteOrder.Uint32(code[i+j:]))
    				}
    			}
    			fmt.Fprintf(tw, "\t%s\t\n", text)
    		})
    		tw.Flush()
    	}
    	bw.Flush()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  4. src/net/http/pprof/pprof.go

    		if pc != 0 {
    			f := runtime.FuncForPC(uintptr(pc))
    			if f != nil {
    				fmt.Fprintf(&buf, "%#x %s\n", pc, f.Name())
    			}
    		}
    
    		// Wait until here to check for err; the last
    		// symbol will have an err because it doesn't end in +.
    		if err != nil {
    			if err != io.EOF {
    				fmt.Fprintf(&buf, "reading request: %v\n", err)
    			}
    			break
    		}
    	}
    
    	w.Write(buf.Bytes())
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:34:05 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. src/runtime/mkpreempt.go

    		fmt.Fprintf(out, "//go:build %s || %sle\n\n", base, base)
    	}
    	fmt.Fprintf(out, "#include \"go_asm.h\"\n")
    	if arch == "amd64" {
    		fmt.Fprintf(out, "#include \"asm_amd64.h\"\n")
    	}
    	fmt.Fprintf(out, "#include \"textflag.h\"\n\n")
    	fmt.Fprintf(out, "TEXT ·asyncPreempt(SB),NOSPLIT|NOFRAME,$0-0\n")
    }
    
    func p(f string, args ...any) {
    	fmted := fmt.Sprintf(f, args...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/vcweb/vcweb.go

    func (s *Server) overview(w http.ResponseWriter, r *http.Request) {
    	fmt.Fprintf(w, "<html>\n")
    	fmt.Fprintf(w, "<title>vcweb</title>\n<pre>\n")
    	fmt.Fprintf(w, "<b>vcweb</b>\n\n")
    	fmt.Fprintf(w, "This server serves various version control repos for testing the go command.\n\n")
    	fmt.Fprintf(w, "For an overview of the script language, see <a href=\"/help\">/help</a>.\n\n")
    
    	fmt.Fprintf(w, "<b>cache</b>\n")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/html.go

    	if err != nil {
    		d.broken = true
    		fmt.Println(err)
    		return
    	}
    	fmt.Fprint(pipe, `digraph "" { margin=0; ranksep=.2; `)
    	id := strings.Replace(phase, " ", "-", -1)
    	fmt.Fprintf(pipe, `id="g_graph_%s";`, id)
    	fmt.Fprintf(pipe, `node [style=filled,fillcolor=white,fontsize=16,fontname="Menlo,Times,serif",margin="0.01,0.03"];`)
    	fmt.Fprintf(pipe, `edge [fontsize=16,fontname="Menlo,Times,serif"];`)
    	for i, b := range f.Blocks {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  8. istioctl/pkg/writer/envoy/configdump/listener.go

    			})
    			for _, match := range matches {
    				if includeConfigType {
    					name := fmt.Sprintf("listener/%s", l.Name)
    					fmt.Fprintf(w, "%v\t%v\t%v\t%v\t%v\n", name, strings.Join(addresses, ","), port, match.match, match.destination)
    				} else {
    					fmt.Fprintf(w, "%v\t%v\t%v\t%v\n", strings.Join(addresses, ","), port, match.match, match.destination)
    				}
    			}
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  9. cmd/erasure-metadata.go

    				fmt.Fprintf(h, "%v", meta.Erasure.Distribution)
    			}
    
    			if meta.IsRemote() {
    				// ILM transition fields
    				fmt.Fprint(h, meta.TransitionStatus)
    				fmt.Fprint(h, meta.TransitionTier)
    				fmt.Fprint(h, meta.TransitionedObjName)
    				fmt.Fprint(h, meta.TransitionVersionID)
    			}
    
    			// If metadata says encrypted, ask for it in quorum.
    			if etyp, ok := crypto.IsEncrypted(meta.Metadata); ok {
    				fmt.Fprint(h, etyp)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  10. src/cmd/pack/pack_test.go

    	}
    	b := bufio.NewWriter(f)
    
    	printf := func(format string, args ...any) {
    		_, err := fmt.Fprintf(b, format, args...)
    		if err != nil {
    			t.Fatalf("Writing to %s: %v", large, err)
    		}
    	}
    
    	printf("package large\n\ntype T struct {\n")
    	for i := 0; i < 1000; i++ {
    		printf("f%d int `tag:\"", i)
    		for j := 0; j < 100; j++ {
    			printf("t%d=%d,", j, j)
    		}
    		printf("\"`\n")
    	}
    	printf("}\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 16:27:35 UTC 2023
    - 12.5K bytes
    - Viewed (0)
Back to top