Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 46 of 46 for iota (0.1 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	// not the parameter types of other functions that may be mentioned.
    	// Using the option will speed up the demangler and cause it to
    	// use less memory.
    	NoParams Option = iota
    
    	// The NoTemplateParams option disables demangling of template parameters.
    	// This applies to both C++ and Rust.
    	NoTemplateParams
    
    	// The NoEnclosingParams option disables demangling of the function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  2. src/go/build/build.go

    const (
    	// If FindOnly is set, Import stops after locating the directory
    	// that should contain the sources for a package. It does not
    	// read any files in the directory.
    	FindOnly ImportMode = 1 << iota
    
    	// If AllowBinary is set, Import can be satisfied by a compiled
    	// package object without corresponding sources.
    	//
    	// Deprecated:
    	// The supported way to create a compiled-only package is to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  3. src/net/dnsclient_unix_test.go

    	const searchY = "test-issue19592.y.golang.org."
    	const ip4 = "192.0.2.1"
    	const ip6 = "2001:db8::1"
    
    	type resolveWhichEnum int
    	const (
    		resolveOK resolveWhichEnum = iota
    		resolveOpError
    		resolveServfail
    		resolveTimeout
    	)
    
    	makeTempError := func(err string) error {
    		return &DNSError{
    			Err:         err,
    			Name:        name,
    			Server:      server,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/loong64/asm.go

    )
    
    type Optab struct {
    	as    obj.As
    	from1 uint8
    	reg   uint8
    	from3 uint8
    	to1   uint8
    	to2   uint8
    	type_ int8
    	size  int8
    	param int16
    	flag  uint8
    }
    
    const (
    	NOTUSETMP = 1 << iota // p expands to multiple instructions, but does NOT use REGTMP
    
    	// branchLoopHead marks loop entry.
    	// Used to insert padding for under-aligned loops.
    	branchLoopHead
    )
    
    var optab = []Optab{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  5. src/cmd/dist/test.go

    		for i := 1; i <= 4; i *= 2 {
    			t.registerTest(fmt.Sprintf("GOMAXPROCS=2 runtime -cpu=%d -quick", i),
    				&goTest{
    					variant:   "cpu" + strconv.Itoa(i),
    					timeout:   300 * time.Second,
    					cpu:       strconv.Itoa(i),
    					short:     true,
    					testFlags: []string{"-quick"},
    					// We set GOMAXPROCS=2 in addition to -cpu=1,2,4 in order to test runtime bootstrap code,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  6. src/cmd/internal/testdir/testdir_test.go

    		comment += " " + cmt
    		if code == "" {
    			continue
    		}
    
    		// Parse and extract any architecture check from comments,
    		// made by one architecture name and multiple checks.
    		lnum := fn + ":" + strconv.Itoa(i+1)
    		for _, ac := range rxAsmPlatform.FindAllStringSubmatch(comment, -1) {
    			archspec, allchecks := ac[1:4], ac[4]
    
    			var arch, subarch, os string
    			switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
Back to top