Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for FmtSprintf (0.18 sec)

  1. src/runtime/importx_test.go

    	Log(args ...any)
    	Logf(format string, args ...any)
    	Name() string
    	Setenv(key, value string)
    	Skip(args ...any)
    	SkipNow()
    	Skipf(format string, args ...any)
    	Skipped() bool
    	TempDir() string
    }
    
    var FmtSprintf func(format string, a ...any) string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 10 17:18:27 UTC 2023
    - 763 bytes
    - Viewed (0)
  2. src/runtime/import_test.go

    // inject any necessary functions from std.
    
    // TODO: Generate this
    
    package runtime_test
    
    import (
    	"fmt"
    	"internal/testenv"
    	"runtime"
    	"testing"
    )
    
    func init() {
    	runtime.FmtSprintf = fmt.Sprintf
    	runtime.TestenvOptimizationOff = testenv.OptimizationOff
    }
    
    func TestInlineUnwinder(t *testing.T) {
    	runtime.XTestInlineUnwinder(t)
    }
    
    func TestSPWrite(t *testing.T) {
    	runtime.XTestSPWrite(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 06 14:45:46 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. src/runtime/symtabinl_test.go

    			}
    			if sf.funcID != abi.FuncIDNormal {
    				t.Errorf("tiuTest+%#x: bad funcID %v", pc-pc1, sf.funcID)
    			}
    
    			if len(stack) > 0 {
    				stack += " "
    			}
    			stack += FmtSprintf("%s:%d", name, line-tiuStart)
    		}
    
    		if stack != prevStack {
    			prevStack = stack
    
    			t.Logf("tiuTest+%#x: %s", pc-pc1, stack)
    
    			if _, ok := want[stack]; ok {
    				want[stack]++
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. doc/asm.html

    Instead, the assembler allows the middle dot character U+00B7
    and the division slash U+2215 in identifiers and rewrites them to
    plain period and slash.
    Within an assembler source file, the symbols above are written as
    <code>fmt·Printf</code> and <code>math∕rand·Int</code>.
    The assembly listings generated by the compilers when using the <code>-S</code> flag
    show the period and slash directly instead of the Unicode replacements
    required by the assemblers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
Back to top