Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 128 for printuint (0.13 sec)

  1. src/fmt/doc.go

    /*
    Package fmt implements formatted I/O with functions analogous
    to C's printf and scanf.  The format 'verbs' are derived from C's but
    are simpler.
    
    # Printing
    
    The verbs:
    
    General:
    
    	%v	the value in a default format
    		when printing structs, the plus flag (%+v) adds field names
    	%#v	a Go-syntax representation of the value
    		(floating-point infinities and NaNs print as ±Inf and NaN)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/typestring.go

    // TypeString returns the string representation of typ.
    // The [Qualifier] controls the printing of
    // package-level objects, and may be nil.
    func TypeString(typ Type, qf Qualifier) string {
    	var buf bytes.Buffer
    	WriteType(&buf, typ, qf)
    	return buf.String()
    }
    
    // WriteType writes the string representation of typ to buf.
    // The [Qualifier] controls the printing of
    // package-level objects, and may be nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. src/go/types/typestring.go

    // TypeString returns the string representation of typ.
    // The [Qualifier] controls the printing of
    // package-level objects, and may be nil.
    func TypeString(typ Type, qf Qualifier) string {
    	var buf bytes.Buffer
    	WriteType(&buf, typ, qf)
    	return buf.String()
    }
    
    // WriteType writes the string representation of typ to buf.
    // The [Qualifier] controls the printing of
    // package-level objects, and may be nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. src/internal/bisect/bisect.go

    // file and line number and printing about the change when necessary – is
    // provided by the [Matcher.FileLine] method.
    //
    // Another common usage is deciding whether to make a change in a function
    // based on the caller's stack, to identify the specific calling contexts that the
    // change breaks. The [Matcher.Stack] method takes care of obtaining the stack,
    // printing it when necessary, and reporting whether to enable the change
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  5. src/go/printer/printer.go

    const (
    	// normalizeNumbers means to canonicalize number
    	// literal prefixes and exponents while printing.
    	//
    	// This value is known in and used by go/format and cmd/gofmt.
    	// It is currently more convenient and performant for those
    	// packages to apply number normalization during printing,
    	// rather than by modifying the AST in advance.
    	normalizeNumbers Mode = 1 << 30
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/daemon-server/src/main/java/org/gradle/launcher/daemon/bootstrap/DaemonMain.java

            System.out.println(message);
            System.exit(1);
        }
    
        protected void daemonStarted(Long pid, String uid, Address address, File daemonLog) {
            // directly printing to the stream to avoid log level filtering.
            new DaemonStartupCommunication().printDaemonStarted(originalOut, pid, uid, address, daemonLog);
            try {
                originalOut.close();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. src/runtime/crash_test.go

    		Func string
    	}{
    		{
    			"panic while printing panic value: important multi-line\n\terror message",
    			"ErrorPanic",
    		},
    		{
    			"panic while printing panic value: important multi-line\n\tstringer message",
    			"StringerPanic",
    		},
    		{
    			"panic while printing panic value: type",
    			"DoubleErrorPanic",
    		},
    		{
    			"panic while printing panic value: type",
    			"DoubleStringerPanic",
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/gnu.go

    			bh = int(inst.Args[2].(Imm))
    		}
    
    		if bo&0x14 == 0x14 {
    			if bo == 0x14 && bi == Cond0LT { // preferred form of unconditional branch
    				// Likewise, avoid printing fake b/ba/bl/bla
    				if opName != "bc" && opName != "bca" && opName != "bcl" && opName != "bcla" {
    					startArg = 2
    				}
    			}
    		} else if bo&0x04 == 0 { // ctr is decremented
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/README

    	count, if given) is found.
    	The -q flag suppresses printing of matches.
    
    stdout [-count=N] [-q] 'pattern' file
    	find lines in the stdout buffer that match a pattern
    
    	The command succeeds if at least one match (or the exact
    	count, if given) is found.
    	The -q flag suppresses printing of matches.
    
    stop [msg]
    	stop execution of the script
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types/fmt.go

    // path to disambiguate) if a package that appears multiple times with
    // the same name appears in an error message.
    var NumImport = make(map[string]int)
    
    // fmtMode represents the kind of printing being done.
    // The default is regular Go syntax (fmtGo).
    // fmtDebug is like fmtGo but for debugging dumps and prints the type kind too.
    // fmtTypeID and fmtTypeIDName are for generating various unique representations
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 15:41:17 UTC 2023
    - 15.7K bytes
    - Viewed (0)
Back to top