Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 110 for b1 (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/BTreePersistentIndexedCache.java

                }
            });
    
            for (int i = 0; i < blocks.size() - 1; i++) {
                Block b1 = blocks.get(i).getBlock();
                Block b2 = blocks.get(i + 1).getBlock();
                if (b1.getPos().getPos() + b1.getSize() > b2.getPos().getPos()) {
                    throw new IOException(String.format("%s overlaps with %s", b1, b2));
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  10. src/internal/types/testdata/check/issues0.go

    		nosuchpkg /* ERROR "undefined: nosuchpkg" */ .Nosuchtype
    	}
    	type I interface {
    		I.m /* ERROR "I.m is not a type" */
    		m()
    	}
    }
    
    // issue11347
    // These should not crash.
    var a1, b1, c1 /* ERROR "cycle" */ b1 /* ERROR "b1 is not a type" */ = 0 > 0<<""[""[c1]]>c1
    var a2, b2 /* ERROR "cycle" */ = 0 /* ERROR "assignment mismatch" */ /* ERROR "assignment mismatch" */ > 0<<""[b2]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top