Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,019 for vfprintf (0.12 sec)

  1. 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)
  2. 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)
  3. src/runtime/testdata/testwinlibsignal/main.c

        }
    }
    
    int main(void)
    {
        waitForCtrlBreakEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
        if (!waitForCtrlBreakEvent) {
            fprintf(stderr, "ERROR: Could not create event\n");
            return 1;
        }
    
        if (!SetConsoleCtrlHandler(CtrlHandler, TRUE))
        {
            fprintf(stderr, "ERROR: Could not set control handler\n");
            return 1;
        }
    
        // The library must be loaded after the SetConsoleCtrlHandler call
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 13:21:00 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/arm/armasm/inst.go

    			X += fmt.Sprintf(", %s #%d", m.Shift, m.Count)
    		}
    	} else {
    		X = fmt.Sprintf("#%d", m.Offset)
    	}
    
    	switch m.Mode {
    	case AddrOffset:
    		if X == "#0" {
    			return fmt.Sprintf("[%s]", R)
    		}
    		return fmt.Sprintf("[%s, %s]", R, X)
    	case AddrPreIndex:
    		return fmt.Sprintf("[%s, %s]!", R, X)
    	case AddrPostIndex:
    		return fmt.Sprintf("[%s], %s", R, X)
    	case AddrLDM:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 7.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. test/index.go

    		if big == "b" && n == "" && (i == "i8" || i == "i16") {
    			if pass == 0 {
    				fmt.Fprintf(b, "\tuse(%s[%s])\n", pae, cni)
    				fmt.Fprintf(b, "\tuse(%s[0:%s])\n", pae, cni)
    				fmt.Fprintf(b, "\tuse(%s[1:%s])\n", pae, cni)
    				fmt.Fprintf(b, "\tuse(%s[%s:])\n", pae, cni)
    				fmt.Fprintf(b, "\tuse(%s[%s:%s])\n", pae, cni, cni)
    			}
    			return
    		}
    
    		// Float variables cannot be used as indices.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 08 17:28:20 UTC 2019
    - 6.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/dumper.go

    				p.dump(x.Index(i), nil)
    				p.printf("\n")
    			}
    			p.indent--
    		}
    		p.printf("}")
    
    	case reflect.Struct:
    		typ := x.Type()
    
    		// if span, ok := x.Interface().(lexical.Span); ok {
    		// 	p.printf("%s", &span)
    		// 	return
    		// }
    
    		p.printf("%s {", typ)
    		p.indent++
    
    		first := true
    		if n != nil {
    			p.printf("\n")
    			first = false
    			// p.printf("Span: %s\n", n.Span())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 08 17:32:14 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  10. 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)
Back to top