Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 3,333 for vfprintf (0.23 sec)

  1. src/cmd/cgo/internal/testcshared/testdata/main1.c

    int check_int8(void* handle, const char* fname, int8_t want) {
      int8_t (*fn)();
      fn = (int8_t (*)())dlsym(handle, fname);
      if (!fn) {
        fprintf(stderr, "ERROR: missing %s: %s\n", fname, dlerror());
        return 1;
      }
      signed char ret = fn();
      if (ret != want) {
        fprintf(stderr, "ERROR: %s=%d, want %d\n", fname, ret, want);
        return 1;
      }
      return 0;
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. 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)
  3. src/mime/multipart/writer.go

    	if w.lastpart != nil {
    		fmt.Fprintf(&b, "\r\n--%s\r\n", w.boundary)
    	} else {
    		fmt.Fprintf(&b, "--%s\r\n", w.boundary)
    	}
    
    	keys := make([]string, 0, len(header))
    	for k := range header {
    		keys = append(keys, k)
    	}
    	slices.Sort(keys)
    	for _, k := range keys {
    		for _, v := range header[k] {
    			fmt.Fprintf(&b, "%s: %s\r\n", k, v)
    		}
    	}
    	fmt.Fprintf(&b, "\r\n")
    	_, err := io.Copy(w.w, &b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.9K 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. src/cmd/vendor/golang.org/x/build/relnote/dump.go

    		switch in := in.(type) {
    		case *md.Plain:
    			dprintf(depth, "Plain(%q)\n", in.Text)
    		case *md.Code:
    			dprintf(depth, "Code(%q)\n", in.Text)
    		case *md.Link:
    			dprintf(depth, "Link:\n")
    			dumpInlines(in.Inner, depth+1)
    			dprintf(depth+1, "URL: %q\n", in.URL)
    		case *md.Strong:
    			dprintf(depth, "Strong(%q):\n", in.Marker)
    			dumpInlines(in.Inner, depth+1)
    		case *md.Emph:
    			dprintf(depth, "Emph(%q):\n", in.Marker)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. 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)
  10. pkg/controller/garbagecollector/dump.go

    		{Key: "name", Value: v.name},
    		{Key: "uid", Value: string(v.uid)},
    		{Key: "missing", Value: fmt.Sprintf(`%v`, v.missingFromGraph)},
    		{Key: "beingDeleted", Value: fmt.Sprintf(`%v`, v.beingDeleted)},
    		{Key: "deletingDependents", Value: fmt.Sprintf(`%v`, v.deletingDependents)},
    		{Key: "virtual", Value: fmt.Sprintf(`%v`, v.virtual)},
    	}
    }
    
    // NewDOTVertex creates a new dotVertex.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 17:12:33 UTC 2022
    - 9.5K bytes
    - Viewed (0)
Back to top