Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for brelaw (0.21 sec)

  1. misc/wasm/wasm_exec.js

    				switch (typeof v) {
    					case "object":
    						if (v !== null) {
    							typeFlag = 1;
    						}
    						break;
    					case "string":
    						typeFlag = 2;
    						break;
    					case "symbol":
    						typeFlag = 3;
    						break;
    					case "function":
    						typeFlag = 4;
    						break;
    				}
    				this.mem.setUint32(addr + 4, nanHead | typeFlag, true);
    				this.mem.setUint32(addr, id, true);
    			}
    
    JavaScript
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon May 22 17:47:47 GMT 2023
    - 16.3K bytes
    - Viewed (1)
  2. src/cmd/cgo/doc.go

    The C types __int128_t and __uint128_t are represented by [16]byte.
    
    A few special C types which would normally be represented by a pointer
    type in Go are instead represented by a uintptr.  See the Special
    cases section below.
    
    To access a struct, union, or enum type directly, prefix it with
    struct_, union_, or enum_, as in C.struct_stat.
    
    The size of any C type T is available as C.sizeof_T, as in
    C.sizeof_struct_stat.
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    	}
    	return
    }
    </pre>
    
    <h3 id="Break_statements">Break statements</h3>
    
    <p>
    A "break" statement terminates execution of the innermost
    <a href="#For_statements">"for"</a>,
    <a href="#Switch_statements">"switch"</a>, or
    <a href="#Select_statements">"select"</a> statement
    within the same function.
    </p>
    
    <pre class="ebnf">
    BreakStmt = "break" [ Label ] .
    </pre>
    
    <p>
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  4. src/bytes/buffer_test.go

    func empty(t *testing.T, testname string, buf *Buffer, s string, fub []byte) {
    	check(t, testname+" (empty 1)", buf, s)
    
    	for {
    		n, err := buf.Read(fub)
    		if n == 0 {
    			break
    		}
    		if err != nil {
    			t.Errorf(testname+" (empty 2): err should always be nil, found err == %s", err)
    		}
    		s = s[n:]
    		check(t, testname+" (empty 3)", buf, s)
    	}
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 13:31:36 GMT 2024
    - 18.6K bytes
    - Viewed (0)
  5. src/bufio/bufio_test.go

    		}
    	}
    	return n, err
    }
    
    // Call ReadByte to accumulate the text of a file
    func readBytes(buf *Reader) string {
    	var b [1000]byte
    	nb := 0
    	for {
    		c, err := buf.ReadByte()
    		if err == io.EOF {
    			break
    		}
    		if err == nil {
    			b[nb] = c
    			nb++
    		} else if err != iotest.ErrTimeout {
    			panic("Data: " + err.Error())
    		}
    	}
    	return string(b[0:nb])
    }
    
    func TestReaderSimple(t *testing.T) {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 10 18:56:01 GMT 2023
    - 51.5K bytes
    - Viewed (0)
  6. src/cmd/cgo/ast.go

    			ExpName: name,
    			Doc:     doc,
    		})
    		break
    	}
    }
    
    // Make f.ExpFunc[i] point at the Func from this AST instead of the other one.
    func (f *File) saveExport2(x interface{}, context astContext) {
    	n, ok := x.(*ast.FuncDecl)
    	if !ok {
    		return
    	}
    
    	for _, exp := range f.ExpFunc {
    		if exp.Func.Name.Name == n.Name.Name {
    			exp.Func = n
    			break
    		}
    	}
    }
    
    type astContext int
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jun 07 16:54:27 GMT 2023
    - 14.3K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/mips64.s

    //		outcode(int($1), &nullgen, 0, &$3);
    //	}
    	NOP	F2
    
    //	LNOP imm
    //	{
    //		outcode(int($1), &$2, 0, &nullgen);
    //	}
    	NOP	$4
    
    //
    // special
    //
    	SYSCALL
    	BREAK
    	// overloaded cache opcode:
    	BREAK	R1, (R1)
    
    //
    // RET
    //
    //	LRETRN	comma // asm doesn't support the trailing comma.
    //	{
    //		outcode(int($1), &nullgen, 0, &nullgen);
    //	}
    	SYSCALL
    	BEQ	R1, 2(PC)
    	RET
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 08 12:17:12 GMT 2023
    - 12.4K bytes
    - Viewed (0)
  8. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const DLT_FLEXRAY ideal-int
    pkg syscall (netbsd-arm64-cgo), const DLT_FRELAY = 107
    pkg syscall (netbsd-arm64-cgo), const DLT_FRELAY ideal-int
    pkg syscall (netbsd-arm64-cgo), const DLT_FRELAY_WITH_DIR = 206
    pkg syscall (netbsd-arm64-cgo), const DLT_FRELAY_WITH_DIR ideal-int
    pkg syscall (netbsd-arm64-cgo), const DLT_GCOM_SERIAL = 173
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  9. api/go1.5.txt

    pkg math/big, const Above = 1
    pkg math/big, const Above Accuracy
    pkg math/big, const AwayFromZero = 3
    pkg math/big, const AwayFromZero RoundingMode
    pkg math/big, const Below = -1
    pkg math/big, const Below Accuracy
    pkg math/big, const Exact = 0
    pkg math/big, const Exact Accuracy
    pkg math/big, const MaxExp = 2147483647
    pkg math/big, const MaxExp ideal-int
    pkg math/big, const MaxPrec = 4294967295
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Jul 30 21:14:09 GMT 2015
    - 46.6K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/testdata/amd64enc_extra.s

    	MOVQ DR0, AX // 0f21c0
    	MOVQ DR6, DX // 0f21f2
    	MOVQ DR7, SI // 0f21fe
    	// Test other movtab entries.
    	PUSHQ GS // 0fa8
    	PUSHQ FS // 0fa0
    	POPQ FS  // 0fa1
    	POPQ GS  // 0fa9
    	// All instructions below semantically have unsigned operands,
    	// but previous assembler permitted negative arguments.
    	// This behavior is preserved for compatibility reasons.
    	VPSHUFD $-79, X7, X7         // c5f970ffb1
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 11 18:32:50 GMT 2023
    - 57.6K bytes
    - Viewed (0)
Back to top