Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,114 for qprint (0.34 sec)

  1. src/cmd/cgo/out.go

    			fmt.Fprint(fgo2, "\tif e != 0 {\n")
    			fmt.Fprint(fgo2, "\t\treturn ")
    			if !void {
    				fmt.Fprint(fgo2, "r, ")
    			}
    			fmt.Fprint(fgo2, "e\n")
    			fmt.Fprint(fgo2, "\t}\n")
    			fmt.Fprint(fgo2, "\treturn ")
    			if !void {
    				fmt.Fprint(fgo2, "r, ")
    			}
    			fmt.Fprint(fgo2, "nil\n")
    		} else if !void {
    			fmt.Fprint(fgo2, "\treturn r\n")
    		}
    
    		fmt.Fprint(fgo2, "}\n")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. test/goprint.go

    Brad Fitzpatrick <******@****.***> 1570735383 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 10 19:38:06 UTC 2019
    - 722 bytes
    - Viewed (0)
  3. src/encoding/binary/varint.go

    // format incompatible with a varint encoding for larger numbers (say 128-bit).
    
    import (
    	"errors"
    	"io"
    )
    
    // MaxVarintLenN is the maximum length of a varint-encoded N-bit integer.
    const (
    	MaxVarintLen16 = 3
    	MaxVarintLen32 = 5
    	MaxVarintLen64 = 10
    )
    
    // AppendUvarint appends the varint-encoded form of x,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/addons/proxy/proxy.go

    		return err
    	}
    
    	fmt.Fprintln(out, "---")
    	fmt.Fprintf(out, "%s", saBytes)
    	fmt.Fprintln(out, "---")
    	fmt.Fprintf(out, "%s", crbBytes)
    	fmt.Fprintln(out, "---")
    	fmt.Fprintf(out, "%s", roleBytes)
    	fmt.Fprintln(out, "---")
    	fmt.Fprintf(out, "%s", roleBindingBytes)
    	fmt.Fprint(out, "---")
    	fmt.Fprintf(out, "%s", cmByte)
    	fmt.Fprint(out, "---")
    	fmt.Fprintf(out, "%s", dsByte)
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 13:23:44 UTC 2023
    - 8.1K 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. operator/pkg/util/clog/clog.go

    }
    
    func (l *ConsoleLogger) LogAndPrint(v ...any) {
    	if len(v) == 0 {
    		return
    	}
    	s := fmt.Sprint(v...)
    	l.Print(s + "\n")
    	l.scope.Infof(s)
    }
    
    func (l *ConsoleLogger) LogAndError(v ...any) {
    	if len(v) == 0 {
    		return
    	}
    	s := fmt.Sprint(v...)
    	l.PrintErr(s + "\n")
    	l.scope.Infof(s)
    }
    
    func (l *ConsoleLogger) LogAndFatal(a ...any) {
    	l.LogAndError(a...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. src/strconv/isprint.go

    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Code generated by go run makeisprint.go -output isprint.go; DO NOT EDIT.
    
    package strconv
    
    // (424+133+112)*2 + (508)*4 = 3370 bytes
    
    var isPrint16 = []uint16{
    	0x0020, 0x007e,
    	0x00a1, 0x0377,
    	0x037a, 0x037f,
    	0x0384, 0x0556,
    	0x0559, 0x058a,
    	0x058d, 0x05c7,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 04:29:53 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  8. test/goprint.out

    Ian Lance Taylor <******@****.***> 1326931944 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 00:12:24 UTC 2012
    - 65 bytes
    - Viewed (0)
  9. src/go/printer/example_test.go

    	// file set fset.
    	funcAST, fset := parseFunc("example_test.go", "printSelf")
    
    	// Print the function body into buffer buf.
    	// The file set is provided to the printer so that it knows
    	// about the original source formatting and can add additional
    	// line breaks where they were present in the source.
    	var buf bytes.Buffer
    	printer.Fprint(&buf, fset, funcAST.Body)
    
    	// Remove braces {} enclosing the function body, unindent,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 14:55:02 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  10. src/strconv/makeisprint.go

    	fmt.Fprintf(&buf, "var isNotPrint16 = []uint16{\n")
    	for _, r := range except16 {
    		fmt.Fprintf(&buf, "\t%#04x,\n", r)
    	}
    	fmt.Fprintf(&buf, "}\n\n")
    
    	fmt.Fprintf(&buf, "var isPrint32 = []uint32{\n")
    	for i := 0; i < len(range32); i += 2 {
    		fmt.Fprintf(&buf, "\t%#06x, %#06x,\n", range32[i], range32[i+1])
    	}
    	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)
Back to top