Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 86 for BI (0.1 sec)

  1. src/crypto/tls/testdata/Client-TLSv12-SCT

    00000130  62 23 b2 43 93 33 05 f3  43 55 a1 d9 ee cd c5 71  |b#.C.3..CU.....q|
    00000140  35 91 dd 49 d1 0b 00 76  00 ee 4b bd b7 75 ce 60  |5..I...v..K..u.`|
    00000150  ba e1 42 69 1f ab e1 9e  66 a3 0f 7e 5f b0 72 d8  |..Bi....f..~_.r.|
    00000160  83 00 c4 7b 89 7a a8 fd  cb 00 00 01 48 5c 64 8a  |...{.z......H\d.|
    00000170  87 00 00 04 03 00 47 30  45 02 20 29 89 d6 b0 53  |......G0E. )...S|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/Equivalence.java

     * implement {@code BiPredicate<T, T>} (as it does in the main Guava artifact), but we currently
     * target a lower API level. In the meantime, if you have support for method references you can use
     * an equivalence as a bi-predicate like this: {@code myEquivalence::equivalent}.
     *
     * @author Bob Lee
     * @author Ben Yu
     * @author Gregory Kick
     * @since 10.0 (<a href="https://github.com/google/guava/wiki/Compatibility">mostly
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu May 16 14:34:47 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loader/loader.go

    		return r.syms[i]
    	case goobj.PkgIdxNone:
    		i := int(s.SymIdx) + r.ndef + r.nhashed64def + r.nhasheddef
    		return r.syms[i]
    	case goobj.PkgIdxBuiltin:
    		if bi := l.builtinSyms[s.SymIdx]; bi != 0 {
    			return bi
    		}
    		l.reportMissingBuiltin(int(s.SymIdx), r.unit.Lib.Pkg)
    		return 0
    	case goobj.PkgIdxSelf:
    		rr = r
    	default:
    		rr = l.objs[r.pkg[p]]
    	}
    	return l.toGlobal(rr, s.SymIdx)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/action.go

    			return err
    		}
    	}
    	b.WorkDir = ""
    	return nil
    }
    
    func closeBuilders() {
    	leakedBuilders := 0
    	builderWorkDirs.Range(func(bi, _ any) bool {
    		leakedBuilders++
    		if err := bi.(*Builder).Close(); err != nil {
    			base.Error(err)
    		}
    		return true
    	})
    
    	if leakedBuilders > 0 && base.GetExitStatus() == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    		[6]*argField{ap_Reg_6_10, ap_CondRegBit_11_15}},
    	{SETBCR, 0xfc0007fe00000000, 0x7c00034000000000, 0xf80100000000, // Set Boolean Condition Reverse X-form (setbcr RT,BI)
    		[6]*argField{ap_Reg_6_10, ap_CondRegBit_11_15}},
    	{SETNBC, 0xfc0007fe00000000, 0x7c00038000000000, 0xf80100000000, // Set Negative Boolean Condition X-form (setnbc RT,BI)
    		[6]*argField{ap_Reg_6_10, ap_CondRegBit_11_15}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  6. architecture/ambient/ztunnel.md

    If all checks pass, ztunnel will open a connection to the target. This will spoof the source IP (from `Forwarded` for waypoints, or the incoming IP otherwise).
    Once the connection is established we return a 200 HTTP code, and bi-directionally copy data to/from the tunnel to the destination.
    
    ## Certificates
    
    Ztunnel certificates are based on the standard Istio SPIFFE format: `spiffe://<trust domain>/ns/<ns>/sa/<sa>`.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    vi(t){switch(t){case"left":return"right";case"right":return"left";case"top":return"bottom";case"bottom":return"top";default:return t}}function wi(t,e,i){return void 0===e&&(e="width"),void 0===i&&(i=window),B(t)?+t:c(t,"vh")?bi(ci(R(i)),t):c(t,"vw")?bi(li(R(i)),t):c(t,"%")?bi(ai(i)[e],t):j(t)}function bi(t,e){return t*j(e)/100}var xi={reads:[],writes:[],read:function(t){return this.reads.push(t),$i(),t},write:function(t){return this.writes.push(t),$i(),t},clear:function(t){return Si(this.reads,t)||Si(this.writ...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
  8. src/encoding/gob/codec_test.go

    	buf := new(bytes.Buffer)
    	enc := NewEncoder(buf)
    	if err := enc.Encode(&in); err != nil {
    		return err
    	}
    
    	b := buf.Bytes()
    	for i, bi := range b {
    		if rng.Intn(10) < 3 {
    			b[i] = bi + uint8(rng.Intn(256))
    		}
    	}
    
    	dec := NewDecoder(buf)
    	var e any
    	if err := dec.Decode(&e); err != nil {
    		return err
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 19 23:03:14 UTC 2023
    - 36.9K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/ppc64/asm9_gtables.go

    	o0 |= uint32(p.RestArgs[0].Addr.Offset&0x1) << 20 // R
    	out[1] = o1
    	out[0] = o0
    }
    
    // setnbcr RT,BI
    func type_setnbcr(c *ctxt9, p *obj.Prog, t *Optab, out *[5]uint32) {
    	o0 := GenOpcodes[p.As-AXXSETACCZ]
    	o0 |= uint32(p.To.Reg&0x1f) << 21   // RT
    	o0 |= uint32(p.From.Reg&0x1f) << 16 // BI
    	out[0] = o0
    }
    
    // stxvp XSp,DQ(RA)
    func type_stxvp(c *ctxt9, p *obj.Prog, t *Optab, out *[5]uint32) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 20:18:50 UTC 2022
    - 42.6K bytes
    - Viewed (0)
  10. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    bergamo.it bergbau.museum bergen.no berkeley.museum berlevag.no berlevåg.no berlin berlin.museum bern.museum beskidy.pl best bestbuy bet bet.ar beta.bounty-full.com beta.tailscale.net betainabox.com better-than.tv bf bg bg.eu.org bg.it bh bharti bhz.br bi bi.it bialowieza.pl bialystok.pl bib.br bib.ve bibai.hokkaido.jp bible bible.museum bid biei.hokkaido.jp bielawa.pl biella.it bieszczady.pl bievat.no bievát.no bifuka.hokkaido.jp bihar.in bihoro.hokkaido.jp bike bilbao.museum bill.museum bindal.no bing...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
Back to top