Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 5,349 for fmtB (0.3 sec)

  1. tensorflow/c/logging.cc

          break;
      }
    }
    
    void TF_VLog(int level, const char* fmt, ...) {
      va_list args;
      va_start(args, fmt);
      auto message = BuildMessage(fmt, args);
      va_end(args);
      VLOG(level) << message;
    }
    
    void TF_DVLog(int level, const char* fmt, ...) {
      va_list args;
      va_start(args, fmt);
      auto message = BuildMessage(fmt, args);
      va_end(args);
      DVLOG(level) << message;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 18 13:10:33 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  2. src/strconv/makeisprint.go

    			(len(range32))*4)
    
    	fmt.Fprintf(&buf, "var isPrint16 = []uint16{\n")
    	for i := 0; i < len(range16); i += 2 {
    		fmt.Fprintf(&buf, "\t%#04x, %#04x,\n", range16[i], range16[i+1])
    	}
    	fmt.Fprintf(&buf, "}\n\n")
    
    	fmt.Fprintf(&buf, "var isNotPrint16 = []uint16{\n")
    	for _, r := range except16 {
    		fmt.Fprintf(&buf, "\t%#04x,\n", r)
    	}
    	fmt.Fprintf(&buf, "}\n\n")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 18:56:17 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. test/fixedbugs/issue5162.go

    	}
    	if s := fmt.Sprint(onesA == onesB, onesA != twos, onesB != twos); s != "true true true" {
    		println("fail in CheckEqNNN_TTTExtraVar:", s)
    	}
    	if s := fmt.Sprint(onesB == onesX); s != "true" {
    		println("extra var fail in CheckEqNNN_TTTExtraVar")
    	}
    }
    `
    
    func main() {
    	fmt.Print("// run\n\n")
    	fmt.Print("// THIS FILE IS AUTO-GENERATED\n\n")
    	fmt.Print("package main\n\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 19:01:50 UTC 2013
    - 2.3K bytes
    - Viewed (0)
  4. src/text/tabwriter/example_test.go

    package tabwriter_test
    
    import (
    	"fmt"
    	"os"
    	"text/tabwriter"
    )
    
    func ExampleWriter_Init() {
    	w := new(tabwriter.Writer)
    
    	// Format in tab-separated columns with a tab stop of 8.
    	w.Init(os.Stdout, 0, 8, 0, '\t', 0)
    	fmt.Fprintln(w, "a\tb\tc\td\t.")
    	fmt.Fprintln(w, "123\t12345\t1234567\t123456789\t.")
    	fmt.Fprintln(w)
    	w.Flush()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 23 22:09:32 UTC 2016
    - 2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/testdata/gen/arithBoundaryGen.go

    func main() {
    	w := new(bytes.Buffer)
    	fmt.Fprintf(w, "// Code generated by gen/arithBoundaryGen.go. DO NOT EDIT.\n\n")
    	fmt.Fprintf(w, "package main;\n")
    	fmt.Fprintf(w, "import \"testing\"\n")
    
    	for _, sz := range []int{64, 32, 16, 8} {
    		fmt.Fprintf(w, "type utd%d struct {\n", sz)
    		fmt.Fprintf(w, "  a,b uint%d\n", sz)
    		fmt.Fprintf(w, "  add,sub,mul,div,mod uint%d\n", sz)
    		fmt.Fprintf(w, "}\n")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  6. src/cmd/internal/pgo/deserialize.go

    			if err := scanner.Err(); err != nil {
    				return nil, fmt.Errorf("error reading preprocessed profile: %w", err)
    			}
    			return nil, fmt.Errorf("preprocessed profile entry missing callee")
    		}
    		calleeName := scanner.Text()
    
    		if !scanner.Scan() {
    			if err := scanner.Err(); err != nil {
    				return nil, fmt.Errorf("error reading preprocessed profile: %w", err)
    			}
    			return nil, fmt.Errorf("preprocessed profile entry missing weight")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/util/find_errorline_utils_test.go

    	constantsPath := []string{
    		fmt.Sprintf(DestinationHost, "test", 0, 0),
    		fmt.Sprintf(MirrorHost, 0),
    		fmt.Sprintf(VSGateway, 0),
    		fmt.Sprintf(URISchemeMethodAuthorityRegexMatch, 0, 0, "test"),
    		fmt.Sprintf(HeaderAndQueryParamsRegexMatch, 0, 0, "test", "test"),
    		fmt.Sprintf(AllowOriginsRegexMatch, 0, 0),
    		fmt.Sprintf(WorkloadSelector, "test"),
    		fmt.Sprintf(PortInPorts, 0),
    		fmt.Sprintf(FromRegistry, "test", 0),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. pkg/test/echo/response.go

    	out += fmt.Sprintf("Code:             %s\n", r.Code)
    	out += fmt.Sprintf("Host:             %s\n", r.Host)
    	out += fmt.Sprintf("Hostname:         %s\n", r.Hostname)
    	out += fmt.Sprintf("Cluster:          %s\n", r.Cluster)
    	out += fmt.Sprintf("IstioVersion:     %s\n", r.IstioVersion)
    	out += fmt.Sprintf("IP:               %s\n", r.IP)
    	out += fmt.Sprintf("Request Headers:  %v\n", r.RequestHeaders)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 01 01:05:45 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  9. test/typeswitch1.go

    		return fmt.Sprint("unsigned ", xx)
    	case uint64:
    		return fmt.Sprint("unsigned64 ", uint64(xx))
    	case nil:
    		return fmt.Sprint("nil ", xx)
    	}
    	panic("not reached")
    }
    
    func whatis1(x interface{}) string {
    	xx := x
    	switch xx.(type) {
    	default:
    		return fmt.Sprint("default ", xx)
    	case int, int8, int16, int32:
    		return fmt.Sprint("signed ", xx)
    	case int64:
    		return fmt.Sprint("signed64 ", xx.(int64))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:48:19 UTC 2012
    - 1.6K bytes
    - Viewed (0)
  10. test/abi/named_results.go

    	a, b, c := 1, 4, 16
    	x := F(&a, &b, &c)
    	fmt.Printf("x = %d\n", x)
    
    	y := H("Hello", "World!")
    	fmt.Println("len(y) =", len(y))
    	fmt.Println("y =", y)
    	z := H("Hello", "Pal!")
    	fmt.Println("len(z) =", len(z))
    	fmt.Println("z =", z)
    
    	fmt.Println()
    
    	y = K("Hello", "World!")
    	fmt.Println("len(y) =", len(y))
    	fmt.Println("y =", y)
    	z = K("Hello", "Pal!")
    	fmt.Println("len(z) =", len(z))
    	fmt.Println("z =", z)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top