Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for printuint (0.2 sec)

  1. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    		"NS: " + r.NS.GoString() + ", " +
    		"MBox: " + r.MBox.GoString() + ", " +
    		"Serial: " + printUint32(r.Serial) + ", " +
    		"Refresh: " + printUint32(r.Refresh) + ", " +
    		"Retry: " + printUint32(r.Retry) + ", " +
    		"Expire: " + printUint32(r.Expire) + ", " +
    		"MinTTL: " + printUint32(r.MinTTL) + "}"
    }
    
    func unpackSOAResource(msg []byte, off int) (SOAResource, error) {
    	var ns Name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  2. src/runtime/traceback.go

    type unwindFlags uint8
    
    const (
    	// unwindPrintErrors indicates that if unwinding encounters an error, it
    	// should print a message and stop without throwing. This is used for things
    	// like stack printing, where it's better to get incomplete information than
    	// to crash. This is also used in situations where everything may not be
    	// stopped nicely and the stack walk may not be able to complete, such as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. src/go/printer/nodes.go

    // Copyright 2009 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.
    
    // This file implements printing of AST nodes; specifically
    // expressions, statements, declarations, and files. It uses
    // the print functionality implemented in printer.go.
    
    package printer
    
    import (
    	"go/ast"
    	"go/token"
    	"math"
    	"strconv"
    	"strings"
    	"unicode"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/mips/asm0.go

    				// unset base register for better printing, since
    				// a.Offset is still relative to pseudo-SP.
    				a.Reg = obj.REG_NONE
    			}
    			c.instoffset = int64(c.autosize) + a.Offset
    			if c.instoffset >= -BIG && c.instoffset < BIG {
    				return C_SAUTO
    			}
    			return C_LAUTO
    
    		case obj.NAME_PARAM:
    			if a.Reg == REGSP {
    				// unset base register for better printing, since
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/test/test.go

    }
    
    // builderPrintTest is the action for printing a test result.
    func builderPrintTest(b *work.Builder, ctx context.Context, a *work.Action) error {
    	clean := a.Deps[0]
    	run := clean.Deps[0]
    	if run.TestOutput != nil {
    		os.Stdout.Write(run.TestOutput.Bytes())
    		run.TestOutput = nil
    	}
    	return nil
    }
    
    // printExitStatus is the action for printing the final exit status.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/loong64/asm.go

    				// unset base register for better printing, since
    				// a.Offset is still relative to pseudo-SP.
    				a.Reg = obj.REG_NONE
    			}
    			c.instoffset = int64(c.autosize) + a.Offset
    			if c.instoffset >= -BIG && c.instoffset < BIG {
    				return C_SAUTO
    			}
    			return C_LAUTO
    
    		case obj.NAME_PARAM:
    			if a.Reg == REGSP {
    				// unset base register for better printing, since
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm/asm5.go

    		case obj.NAME_AUTO:
    			if a.Reg == REGSP {
    				// unset base register for better printing, since
    				// a.Offset is still relative to pseudo-SP.
    				a.Reg = obj.REG_NONE
    			}
    			c.instoffset = c.autosize + a.Offset
    			return c.aconsize()
    
    		case obj.NAME_PARAM:
    			if a.Reg == REGSP {
    				// unset base register for better printing, since
    				// a.Offset is still relative to pseudo-FP.
    				a.Reg = obj.REG_NONE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  8. src/time/time.go

    // testing for Time values.
    //
    // For debugging, the result of t.String does include the monotonic
    // clock reading if present. If t != u because of different monotonic clock readings,
    // that difference will be visible when printing t.String() and u.String().
    //
    // # Timer Resolution
    //
    // [Timer] resolution varies depending on the Go runtime, the operating system
    // and the underlying hardware.
    // On Unix, the resolution is ~1ms.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  9. src/cmd/internal/testdir/testdir_test.go

    	case "errorcheck":
    		// Compile Go file.
    		// Fail if wantError is true and compilation was successful and vice versa.
    		// Match errors produced by gc against errors in comments.
    		// TODO(gri) remove need for -C (disable printing of columns in error messages)
    		cmdline := []string{goTool, "tool", "compile", "-p=p", "-d=panic", "-C", "-e", "-importcfg=" + stdlibImportcfgFile(), "-o", "a.o"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/testdata/ppc64.s

    	XOR $1234567, R5, R3            // 6ca300126863d687
    	XORIS $15, R3, R4               // 6c64000f
    	XOR   $983040, R3, R4           // 6c64000f
    
    	// TODO: cleanup inconsistency of printing CMPx opcodes with explicit CR arguments.
    	CMP R3, R4                      // 7c232000
    	CMP R3, R0                      // 7c230000
    	CMP R3, R0, CR1                 // CMP R3,CR1,R0   // 7ca30000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
Back to top