Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,341 for vfprintf (0.13 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. tensorflow/c/c_test.c

      TF_NewWritableFile(full_path, &h, status);
      if (TF_GetCode(status) != TF_OK) {
        fprintf(stderr, "TF_NewWritableFile failed: %s\n", TF_Message(status));
        return 1;
      }
      fprintf(stderr, "wrote %s\n", full_path);
      free(full_path);
      TF_CloseWritableFile(h, status);
      if (TF_GetCode(status) != TF_OK) {
        fprintf(stderr, "TF_CloseWritableFile failed: %s\n", TF_Message(status));
      }
      TF_StringStreamDone(s);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:50:35 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. src/go/types/example_test.go

    	fmt.Printf("InitOrder: %v\n\n", info.InitOrder)
    
    	// For each named object, print the line and
    	// column of its definition and each of its uses.
    	fmt.Println("Defs and Uses of each named object:")
    	usesByObj := make(map[types.Object][]string)
    	for id, obj := range info.Uses {
    		posn := fset.Position(id.Pos())
    		lineCol := fmt.Sprintf("%d:%d", posn.Line, posn.Column)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/version/version.go

    				if isGoBinaryCandidate(file, info) {
    					fmt.Fprintf(os.Stderr, "%s: %v\n", file, err)
    				}
    			}
    		}
    		return
    	}
    
    	fmt.Printf("%s: %s\n", file, bi.GoVersion)
    	bi.GoVersion = "" // suppress printing go version again
    	mod := bi.String()
    	if *versionM && len(mod) > 0 {
    		fmt.Printf("\t%s\n", strings.ReplaceAll(mod[:len(mod)-1], "\n", "\n\t"))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 19:27:00 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  5. cmd/preferredimports/preferredimports.go

    					}
    
    					fileInfo, err := os.Stat(pathToFile)
    					if err != nil {
    						panic(fmt.Sprintf("Error stat'ing file: %s\n%s\n", pathToFile, err.Error()))
    					}
    
    					err = os.WriteFile(pathToFile, buffer.Bytes(), fileInfo.Mode())
    					if err != nil {
    						panic(fmt.Sprintf("Error writing file: %s\n%s\n", pathToFile, err.Error()))
    					}
    				}
    			}
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. istioctl/pkg/metrics/metrics.go

    	_, _ = fmt.Fprintf(w, "%40s\tTOTAL RPS\tERROR RPS\tP50 LATENCY\tP90 LATENCY\tP99 LATENCY\t\n", "WORKLOAD")
    	_ = w.Flush()
    }
    
    func printMetrics(writer io.Writer, wm workloadMetrics) {
    	w := tabwriter.NewWriter(writer, 13, 1, 2, ' ', tabwriter.AlignRight)
    	_, _ = fmt.Fprintf(w, "%40s\t", wm.workload)
    	_, _ = fmt.Fprintf(w, "%.3f\t", wm.totalRPS)
    	_, _ = fmt.Fprintf(w, "%.3f\t", wm.errorRPS)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testcshared/testdata/main0.c

      if (!ran_init) {
        fprintf(stderr, "ERROR: DidInitRun returned unexpected results: %d\n",
                ran_init);
        return 1;
      }
      int8_t ran_main = DidMainRun();
      if (ran_main) {
        fprintf(stderr, "ERROR: DidMainRun returned unexpected results: %d\n",
                ran_main);
        return 1;
      }
      int32_t from_pkg = FromPkg();
      if (from_pkg != 1024) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. src/encoding/gob/encgen.go

    		log.Fatal("usage: encgen [--output filename]")
    	}
    	var b bytes.Buffer
    	fmt.Fprintf(&b, "// Code generated by go run encgen.go -output %s; DO NOT EDIT.\n", *output)
    	fmt.Fprint(&b, header)
    	printMaps(&b, "Array")
    	fmt.Fprint(&b, "\n")
    	printMaps(&b, "Slice")
    	for _, t := range types {
    		fmt.Fprintf(&b, arrayHelper, t.lower, t.upper)
    		fmt.Fprintf(&b, sliceHelper, t.lower, t.upper, t.zero, t.encoder)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:39:09 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top