Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for eres (0.17 sec)

  1. src/cmd/asm/internal/asm/pseudo_test.go

    package asm
    
    import (
    	"strings"
    	"testing"
    
    	"cmd/asm/internal/lex"
    )
    
    func tokenize(s string) [][]lex.Token {
    	res := [][]lex.Token{}
    	if len(s) == 0 {
    		return res
    	}
    	for _, o := range strings.Split(s, ",") {
    		res = append(res, lex.Tokenize(o))
    	}
    	return res
    }
    
    func TestErroneous(t *testing.T) {
    
    	type errtest struct {
    		pseudo   string
    		operands string
    		expected string
    	}
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 29 07:48:38 GMT 2023
    - 3.1K bytes
    - Viewed (0)
  2. src/archive/tar/strconv_test.go

    		if v.ok && (key != v.wantKey || val != v.wantVal) {
    			t.Errorf("parsePAXRecord(%q): got (%q: %q), want (%q: %q)",
    				v.in, key, val, v.wantKey, v.wantVal)
    		}
    		if res != v.wantRes {
    			t.Errorf("parsePAXRecord(%q): got residual %q, want residual %q",
    				v.in, res, v.wantRes)
    		}
    	}
    }
    
    func TestFormatPAXRecord(t *testing.T) {
    	medName := strings.Repeat("CD", 50)
    	longName := strings.Repeat("AB", 100)
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Feb 09 05:28:50 GMT 2021
    - 14K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    with the same name as a result parameter is in
    <a href="#Declarations_and_scope">scope</a> at the place of the return.
    </p>
    
    <pre>
    func f(n int) (res int, err error) {
    	if _, err := f(n-1); err != nil {
    		return  // invalid return statement: err is shadowed
    	}
    	return
    }
    </pre>
    
    <h3 id="Break_statements">Break statements</h3>
    
    <p>
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/arm64enc.s

    	EON R14>>46, R4, R9                        // 89b86eca
    	EOR $-2287828610704211969, R27, R22        // 76e343d2
    	EORW R12->27, R10, R19                     // 536d8c4a
    	EOR R2<<59, R30, R17                       // d1ef02ca
    	ERET                                       // e0039fd6
    	EXTRW $7, R8, R10, R25                     // 591d8813
    	EXTR $35, R22, R12, R8                     // 888dd693
    	SEVL                                       // bf2003d5
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Jul 24 01:11:41 GMT 2023
    - 43.9K bytes
    - Viewed (1)
  5. api/go1.2.txt

    pkg syscall (linux-arm-cgo), const PR_FP_EXC_OVF ideal-int
    pkg syscall (linux-arm-cgo), const PR_FP_EXC_PRECISE ideal-int
    pkg syscall (linux-arm-cgo), const PR_FP_EXC_RES ideal-int
    pkg syscall (linux-arm-cgo), const PR_FP_EXC_SW_ENABLE ideal-int
    pkg syscall (linux-arm-cgo), const PR_FP_EXC_UND ideal-int
    pkg syscall (linux-arm-cgo), const PR_GET_DUMPABLE ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
Back to top