Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 126 for b1 (0.21 sec)

  1. src/crypto/internal/edwards25519/field/fe_test.go

    	asmLikeGeneric := func(a, b Element) bool {
    		a1 := a
    		a2 := a
    		b1 := b
    		b2 := b
    
    		feMulGeneric(&a1, &a1, &b1)
    		feMul(&a2, &a2, &b2)
    
    		if a1 != a2 || b1 != b2 {
    			t.Logf("got: %#v,\nexpected: %#v", a1, a2)
    			t.Logf("got: %#v,\nexpected: %#v", b1, b2)
    		}
    
    		return a1 == a2 && isInBounds(&a2) &&
    			b1 == b2 && isInBounds(&b2)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/test/groovy/org/gradle/language/plugins/NativeBasePluginTest.groovy

        def project = ProjectBuilder.builder().withProjectDir(projectDir).withName("testComponent").build()
    
        def "registers each binary of a component as it becomes known"() {
            def b1 = Stub(SoftwareComponent)
            b1.name >> "b1"
            def b2 = Stub(SoftwareComponent)
            b2.name >> "b2"
            def component = Stub(ComponentWithBinaries)
            def binaries = new DefaultBinaryCollection(SoftwareComponent)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractDirectorySensitivityIntegrationSpec.groovy

            createParameterizedTransformWithSensitivity(DirectorySensitivity.DEFAULT)
            file('augmented').mkdir()
            file('augmented/a').mkdir()
            file('augmented/b').mkdir()
            file('augmented/b/b1').createFile()
    
            file('bar/foo').mkdir()
            file('bar/foo/c').mkdir()
            file('bar/foo/d').mkdir()
            file('bar/foo/d1').createFile()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketReader.kt

        val reservedFlag3 = b0 and B0_FLAG_RSV3 != 0
        if (reservedFlag3) throw ProtocolException("Unexpected rsv3 flag")
    
        val b1 = source.readByte() and 0xff
    
        val isMasked = b1 and B1_FLAG_MASK != 0
        if (isMasked == isClient) {
          // Masked payloads must be read on the server. Unmasked payloads must be read on the client.
          throw ProtocolException(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. src/runtime/mgcwork.go

    //go:nowritebarrier
    func handoff(b *workbuf) *workbuf {
    	// Make new buffer with half of b's pointers.
    	b1 := getempty()
    	n := b.nobj / 2
    	b.nobj -= n
    	b1.nobj = n
    	memmove(unsafe.Pointer(&b1.obj[0]), unsafe.Pointer(&b.obj[b.nobj]), uintptr(n)*unsafe.Sizeof(b1.obj[0]))
    
    	// Put b on full list - let first half of b get stolen.
    	putfull(b)
    	return b1
    }
    
    // prepareFreeWorkbufs moves busy workbuf spans to free list so they
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/BuildScriptBuilderKotlinTest.groovy

            builder.propertyAssignment(null, "foo", 123)
            builder.propertyAssignment(null, "foo", false)
            def b1 = builder.block(null, "block1")
            b1.methodInvocation("comment", "method1")
            b1.methodInvocation("comment", "method2")
            b1.methodInvocation(null, "method3")
            b1.methodInvocation(null, "method4")
            def b2 = builder.block("another block", "block2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  7. pkg/test/loadbalancersim/lb_test.go

    		tm.sameZonePercent(), tm.sameRegionPercent(), tm.otherRegionPercent())
    }
    
    type suiteMetrics []*testMetrics
    
    func cmpBool(b1, b2 bool) int {
    	if b1 == b2 {
    		return 0
    	}
    	if !b1 {
    		return -1
    	}
    	return 1
    }
    
    func (sm suiteMetrics) toCSV() string {
    	sort.SliceStable(sm, func(i, j int) bool {
    		a := sm[i]
    		b := sm[j]
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 19 23:29:30 UTC 2022
    - 11K bytes
    - Viewed (0)
  8. test/live_regabi.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
    - 18.4K bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/typeparams.go

    ]() {
            var b0 string
            for range b0 {}
            for _ = range b0 {}
            for _, _ = range b0 {}
    
            var b1 B1
            for range b1 {}
            for _ = range b1 {}
            for _, _ = range b1 {}
    
            var b2 B2
            for range b2 {}
    
            var c0 chan int
            for range c0 {}
            for _ = range c0 {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 01:56:58 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/tests/add_dump_tensor_op.mlir

    // IntPerLayer-DAG: %[[output1_quantized:.*]] = "tf.PartitionedCall"(%[[output0_quantized]], %[[w1]], %[[b1]]) <{config = "", config_proto = "", executor_type = "", f = @composite_conv2d_with_bias_and_relu6_fn_1}> {_tfl_quant_trait = "fully_quantizable"}
    // IntPerLayer-DAG: %[[output1_unquantized:.*]] = "tf.PartitionedCall"(%[[output0_quantized]], %[[w1]], %[[b1]]) <{config = "", config_proto = "", executor_type = "", f = @composite_conv2d_with_bias_and_relu6_fn_1_0}>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 22:55:22 UTC 2024
    - 37.9K bytes
    - Viewed (0)
Back to top