Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for bt (0.03 sec)

  1. .github/CODEOWNERS

    platforms/core-runtime/build-operations/                    @gradle/bt-core-runtime-maintainers @gradle/bt-execution @gradle/bt-dv-build-cache
    platforms/core-runtime/functional/                          @gradle/bt-core-runtime-maintainers @gradle/bt-execution @bamboo
    platforms/core-runtime/files/                               @gradle/bt-core-runtime-maintainers @gradle/bt-execution @gradle/bt-dv-build-cache
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:44:59 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. test/codegen/bits.go

    	}
    	// amd64:"BTL\t[$]7"
    	if (a[6]>>5)&4 == 0 {
    		return 1
    	}
    	return 0
    }
    
    func bitcheck64_var(a, b uint64) (n int) {
    	// amd64:"BTQ"
    	if a&(1<<(b&63)) != 0 {
    		return 1
    	}
    	// amd64:"BTQ",-"BT.\t[$]0"
    	if (b>>(a&63))&1 != 0 {
    		return 1
    	}
    	return 0
    }
    
    func bitcheck64_mask(a uint64) (n int) {
    	// amd64:"BTQ\t[$]63"
    	if a&0x8000000000000000 != 0 {
    		return 1
    	}
    	// amd64:"BTQ\t[$]59"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. 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)
  4. cmd/sts-handlers_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),
    		)
    	}
    	for i, testCase := range testCases {
    		etcdStr := ""
    		if testCase.withEtcdBackend {
    			etcdStr = " (with etcd backend)"
    		}
    		t.Run(
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  5. src/net/netip/netip_test.go

    	}
    	for _, tc := range tests {
    		b.Run(tc.name, func(b *testing.B) {
    			ip := mustIP(tc.ip)
    			for i := 0; i < b.N; i++ {
    				bt, err := ip.MarshalBinary()
    				if err != nil {
    					b.Fatal(err)
    				}
    				var ip2 Addr
    				if err := ip2.UnmarshalBinary(bt); err != nil {
    					b.Fatal(err)
    				}
    			}
    		})
    	}
    }
    
    func BenchmarkStdIPv4(b *testing.B) {
    	b.ReportAllocs()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/ssa.go

    		n := n.(*ir.BinaryExpr)
    		a := s.expr(n.X)
    		b := s.expr(n.Y)
    		bt := b.Type
    		if bt.IsSigned() {
    			cmp := s.newValue2(s.ssaOp(ir.OLE, bt), types.Types[types.TBOOL], s.zeroVal(bt), b)
    			s.check(cmp, ir.Syms.Panicshift)
    			bt = bt.ToUnsigned()
    		}
    		return s.newValue2(s.ssaShiftOp(n.Op(), n.Type(), bt), a.Type, a, b)
    	case ir.OANDAND, ir.OOROR:
    		// To implement OANDAND (and OOROR), we introduce a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  7. cmd/batch-handlers.go

    	ObjectsFailed       int64 `json:"objectsFailed" msg:"obf"`
    	DeleteMarkersFailed int64 `json:"deleteMarkersFailed" msg:"dmf"`
    	BytesTransferred    int64 `json:"bytesTransferred" msg:"bt"`
    	BytesFailed         int64 `json:"bytesFailed" msg:"bf"`
    }
    
    const (
    	batchReplName         = "batch-replicate.bin"
    	batchReplFormat       = 1
    	batchReplVersionV1    = 1
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
Back to top