Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 44 for bt (0.03 sec)

  1. build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle

            it.destinationDir = file("$buildDir/reports/binary-compatibility")
            it.reportName = "report.html"
            it.description = """
                <p>See the <a href="https://bt-internal-docs.grdev.net/gbt/how-to/release/release-troubleshooting/#binary-compatibility-check-failed-">documentation</a> for more details.</p>
                <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. src/time/time_test.go

    		bsec.SetInt64(sec)
    		bnsec.SetInt64(nsec)
    		bt.Mul(bsec, b1e9)
    		bt.Add(bt, bnsec)
    
    		// Compute quotient and remainder mod d.
    		bd.SetInt64(int64(d))
    		bq.DivMod(bt, bd, br)
    
    		// To truncate, subtract remainder.
    		// br is < d, so it fits in an int64.
    		r := br.Int64()
    		t1 := t0.Add(-Duration(r))
    
    		// Check that time.Truncate works.
    		if trunc := t0.Truncate(d); trunc != t1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/x86/x86asm/plan9x.go

    	s, base := symname(disp)
    	return s, int64(disp) - int64(base)
    }
    
    var plan9Suffix = [maxOp + 1]bool{
    	ADC:       true,
    	ADD:       true,
    	AND:       true,
    	BSF:       true,
    	BSR:       true,
    	BT:        true,
    	BTC:       true,
    	BTR:       true,
    	BTS:       true,
    	CMP:       true,
    	CMPXCHG:   true,
    	CVTSI2SD:  true,
    	CVTSI2SS:  true,
    	CVTSD2SI:  true,
    	CVTSS2SI:  true,
    	CVTTSD2SI: true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  4. architecture/networking/pilot.md

    ### Controllers overview
    
    Below provides a high level overview of controllers in Istiod. For more information about each controller, consulting the controllers Go docs is recommended.
    
    ```mermaid
    graph BT
        crd("CRD Watcher")
        subgraph Service Discovery
            ksd("Kubernetes Controller")
            sesd("Service Entry Controller")
            msd("Memory Controller")
            asd("Aggregate")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/init.go

    			return nil, err
    		}
    	}
    	return client, nil
    }
    
    // Tokens returns an array of token strings.
    func (d *initData) Tokens() []string {
    	tokens := []string{}
    	for _, bt := range d.cfg.BootstrapTokens {
    		tokens = append(tokens, bt.Token.String())
    	}
    	return tokens
    }
    
    // PatchesDir returns the folder where patches for components are stored
    func (d *initData) PatchesDir() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 03:37:05 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    // Handle bit-testing in the form (a>>b)&1 != 0 by building the above rules
    // and further combining shifts.
    (BT(Q|L)const [c] (SHRQconst [d] x)) && (c+d)<64 => (BTQconst [c+d] x)
    (BT(Q|L)const [c] (SHLQconst [d] x)) && c>d      => (BT(Q|L)const [c-d] x)
    (BT(Q|L)const [0] s:(SHRQ x y)) => (BTQ y x)
    (BTLconst [c] (SHRLconst [d] x)) && (c+d)<32 => (BTLconst [c+d] x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  7. src/crypto/tls/testdata/Client-TLSv13-ClientCert-Ed25519

    00000240  e6 ce e5 1c 02 22 3c c1  22 ed 33 b2 71 99 52 26  |....."<.".3.q.R&|
    00000250  70 86 ad bc 41 d9 13 54  d3 3e 5d 4b 63 4d d2 6f  |p...A..T.>]KcM.o|
    00000260  bf a5 24 f8 7b 83 b2 0b  13 02 0d 42 74 9b 04 4e  |..$.{......Bt..N|
    00000270  8a 86 6b 40 92 42 3a d8  a8 21 2f ce e0 90 71 65  |..k@.B:..!/...qe|
    00000280  5f ed c7 65 38 e3 85 e2  32 d5 4b c0 84 61 24 a1  |_..e8...2.K..a$.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. cmd/admin-handlers-users_test.go

    		// Init and run test on ErasureSet backend.
    		{serverType: "ErasureSet", signer: signerV4},
    	}
    	testCases := []*TestSuiteIAM{}
    	for _, bt := range baseTestCases {
    		testCases = append(testCases,
    			newTestSuiteIAM(bt, false),
    			newTestSuiteIAM(bt, true),
    		)
    	}
    	return testCases
    }()
    
    const (
    	EnvTestEtcdBackend = "_MINIO_ETCD_TEST_SERVER"
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  9. src/crypto/tls/testdata/Client-TLSv13-ClientCert-ECDSA-RSA

    00000310  d3 61 ed 75 dd 2e ee dd  79 fe d1 7c 4d 23 b1 95  |.a.u....y..|M#..|
    00000320  ea 14 d6 27 d0 02 46 17  03 03 00 13 84 c1 07 6f  |...'..F........o|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    broke-it.net broker broker.aero bronnoy.no bronnoysund.no brother browsersafetymark.io brumunddal.no brunel.museum brussel.museum brussels brussels.museum bruxelles.museum bryansk.su bryne.no brønnøy.no brønnøysund.no bs bs.it bsb.br bss.design bt bt.it bu.no budejju.no build builders building.museum builtwithdark.com bukhara.su bulsan-sudtirol.it bulsan-suedtirol.it bulsan-südtirol.it bulsan.it bungoono.oita.jp bungotakada.oita.jp bunkyo.tokyo.jp burghof.museum bus.museum busan.kr bushey.museum...
    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