Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for C2 (0.13 sec)

  1. src/archive/zip/reader_test.go

    0000060 00 08 00 08 03 64 3c f9 f4 89 64 48 01 00 00 b8
    0000070 01 00 00 07 00 00 00 72 2f 72 2e 7a 69 70 00 2f
    0000080 00 d0 ff c2 54 8e 57 39 00 05 00 fa ff c2 54 8e
    0000090 57 39 00 05 00 fa ff 00 05 00 fa ff 00 14 00 eb
    00000a0 ff c2 54 8e 57 39 00 05 00 fa ff 00 05 00 fa ff
    00000b0 00 14 00 eb ff 42 88 21 c4 00 00 14 00 eb ff 42
    00000c0 88 21 c4 00 00 14 00 eb ff 42 88 21 c4 00 00 14
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 55.3K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    a select with only <code>nil</code> channels and no default case blocks forever.
    </p>
    
    <pre>
    var a []int
    var c, c1, c2, c3, c4 chan int
    var i1, i2 int
    select {
    case i1 = &lt;-c1:
    	print("received ", i1, " from c1\n")
    case c2 &lt;- i2:
    	print("sent ", i2, " to c2\n")
    case i3, ok := (&lt;-c3):  // same as: i3, ok := &lt;-c3
    	if ok {
    		print("received ", i3, " from c3\n")
    	} else {
    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)
  3. src/cmd/cgo/gcc.go

    		if !isError && !isErrorNote {
    			continue
    		}
    
    		c1 := strings.Index(line, ":")
    		if c1 < 0 {
    			continue
    		}
    		c2 := strings.Index(line[c1+1:], ":")
    		if c2 < 0 {
    			continue
    		}
    		c2 += c1 + 1
    
    		filename := line[:c1]
    		i, _ := strconv.Atoi(line[c1+1 : c2])
    		i--
    		if i < 0 || i >= len(names) {
    			if isError {
    				sawUnmatchedErrors = true
    			}
    			continue
    		}
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/arm.s

    //			(($11 & 15) << 0) |	/* Crm */
    //			(($12 & 7) << 5) |	/* coprocessor information */
    //			(1<<4));			/* must be set */
    //		outcode(AMRC, Always, &nullgen, 0, &g);
    //	}
    	MRC.S	4, 6, R1, C2, C3, 7 // MRC $8301712627
    	MCR.S	4, 6, R1, C2, C3, 7 // MRC $8300664051
    
    //
    // MULL r1,r2,(hi,lo)
    //
    //	LTYPEM cond reg ',' reg ',' regreg
    //	{
    //		outcode($1, $2, &$3, int32($5.Reg), &$7);
    //	}
    	MULL	R1, R2, (R3,R4)
    
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 15 20:51:01 GMT 2023
    - 69K bytes
    - Viewed (0)
  5. doc/go_spec.html

    a select with only <code>nil</code> channels and no default case blocks forever.
    </p>
    
    <pre>
    var a []int
    var c, c1, c2, c3, c4 chan int
    var i1, i2 int
    select {
    case i1 = &lt;-c1:
    	print("received ", i1, " from c1\n")
    case c2 &lt;- i2:
    	print("sent ", i2, " to c2\n")
    case i3, ok := (&lt;-c3):  // same as: i3, ok := &lt;-c3
    	if ok {
    		print("received ", i3, " from c3\n")
    	} else {
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 02 22:43:51 GMT 2024
    - 279.6K bytes
    - Viewed (0)
Back to top