Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 125 for b1 (0.03 sec)

  1. test/live.go

    	printpointer(&x) // ERROR "live at call to printpointer: x$"
    	printpointer(&x)
    }
    
    func f3(b1, b2 bool) {
    	// Here x and y are ambiguously live. In previous go versions they
    	// were marked as live throughout the function to avoid being
    	// poisoned in GODEBUG=gcdead=1 mode; this is now no longer the
    	// case.
    
    	printint(0)
    	if b1 == false {
    		printint(0)
    		return
    	}
    
    	if b2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18K bytes
    - Viewed (0)
  2. src/encoding/binary/binary_test.go

    			}
    
    			// read should ignore blank fields in b2
    			var b2 BlankFields
    			if err := Read(bytes.NewReader(buf), LittleEndian, &b2); err != nil {
    				t.Error(err)
    			}
    			if b1.A != b2.A || b1.B != b2.B || b1.C != b2.C {
    				t.Errorf("%#v != %#v", b1, b2)
    			}
    		})
    	}
    }
    
    func TestSizeStructCache(t *testing.T) {
    	// Reset the cache, otherwise multiple test runs fail.
    	structSize = sync.Map{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:16:18 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  3. src/go/ast/filter.go

    	case *FuncType:
    		b1 := filterParamList(t.Params, f, export)
    		b2 := filterParamList(t.Results, f, export)
    		return b1 || b2
    	case *InterfaceType:
    		if filterFieldList(t.Methods, f, export) {
    			t.Incomplete = true
    		}
    		return len(t.Methods.List) > 0
    	case *MapType:
    		b1 := filterType(t.Key, f, export)
    		b2 := filterType(t.Value, f, export)
    		return b1 || b2
    	case *ChanType:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. src/encoding/xml/xml.go

    			d.buf.Reset()
    			var b0, b1 byte
    			for {
    				if b, ok = d.mustgetc(); !ok {
    					return nil, d.err
    				}
    				d.buf.WriteByte(b)
    				if b0 == '-' && b1 == '-' {
    					if b != '>' {
    						d.err = d.syntaxError(
    							`invalid sequence "--" not allowed in comments`)
    						return nil, d.err
    					}
    					break
    				}
    				b0, b1 = b1, b
    			}
    			data := d.buf.Bytes()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  5. src/crypto/tls/testdata/Client-TLSv12-ClientCert-RSA-RSAPSS

    00000280  18 aa 03 ea 06 75 22 dd  78 d2 a5 89 b8 c9 23 64  |.....u".x.....#d|
    00000290  e1 28 38 ce 34 6c 6e 06  7b 51 f1 a7 e6 f4 b3 7f  |.(8.4ln.{Q......|
    000002a0  fa b1 3f 14 11 89 66 79  d1 8e 88 0e 0b a0 9e 30  |..?...fy.......0|
    000002b0  2a c0 67 ef ca 46 02 88  e9 53 81 22 69 22 97 ad  |*.g..F...S."i"..|
    000002c0  80 93 d4 f7 dd 70 14 24  d7 70 0a 46 a1 16 03 03  |.....p.$.p.F....|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. src/unicode/utf8/utf8.go

    	if n < sz {
    		return RuneError, 1
    	}
    	b1 := p[1]
    	if b1 < accept.lo || accept.hi < b1 {
    		return RuneError, 1
    	}
    	if sz <= 2 { // <= instead of == to help the compiler eliminate some bounds checks
    		return rune(p0&mask2)<<6 | rune(b1&maskx), 2
    	}
    	b2 := p[2]
    	if b2 < locb || hicb < b2 {
    		return RuneError, 1
    	}
    	if sz <= 3 {
    		return rune(p0&mask3)<<12 | rune(b1&maskx)<<6 | rune(b2&maskx), 3
    	}
    	b3 := p[3]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:36 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. test/codegen/memcombine.go

    	// ppc64x:`MOVH`
    	b2[1], b2[0] = 0, 0
    }
    
    func zero_byte_4(b1, b2 []byte) {
    	_, _ = b1[3], b2[3]
    	// arm64:"MOVW\tZR",-"MOVB",-"MOVH"
    	// amd64:`MOVL\s[$]0,\s\([A-Z]+\)`
    	// 386:`MOVL\s[$]0,\s\([A-Z]+\)`
    	// ppc64x:`MOVW\s`
    	b1[0], b1[1], b1[2], b1[3] = 0, 0, 0, 0
    	// arm64:"MOVW\tZR",-"MOVB",-"MOVH"
    	// ppc64x:`MOVW\s`
    	b2[2], b2[3], b2[1], b2[0] = 0, 0, 0, 0
    }
    
    func zero_byte_8(b []byte) {
    	_ = b[7]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  8. src/debug/dwarf/line.go

    			}
    			var b1 buf
    			if lf.form == formStrp {
    				b1 = makeBuf(r.buf.dwarf, r.buf.format, "str", 0, r.str)
    			} else {
    				b1 = makeBuf(r.buf.dwarf, r.buf.format, "line_str", 0, r.lineStr)
    			}
    			b1.skip(int(off))
    			str = b1.string()
    			if b1.err != nil {
    				return "", 0, 0, DecodeError{"line", r.buf.off, b1.err.Error()}
    			}
    		case formStrpSup:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  9. src/encoding/gob/encoder_test.go

    	enc := NewEncoder(&buf)
    	if err := enc.Encode(b0); err != nil {
    		t.Fatal("error encoding:", err)
    	}
    	var b1 Bug2
    	err := NewDecoder(&buf).Decode(&b1)
    	if err != nil {
    		t.Fatal("decode:", err)
    	}
    	if b1.A != b0.A {
    		t.Fatalf("got %d want %d", b1.A, b0.A)
    	}
    	if b1.C != nil || b1.CP != nil || b1.F != nil || b1.FPP != nil {
    		t.Fatal("unexpected value for chan or func")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolvedConfigurationIntegrationTest.groovy

            def f1 = mavenHttpRepo.module('org.foo', 'f')
    
            a1.dependsOn(c1).publish()
            c1.publish()
    
            d1.dependsOn(b1).publish()
            b1.dependsOn(f1).publish()
            f1.publish()
            e1.dependsOn(b2).publish()
            b2.publish()
    
            buildFile << """
                dependencies {
                    implementation 'org.foo:a:1.0'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 26.1K bytes
    - Viewed (0)
Back to top