Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 133 for b1 (0.02 sec)

  1. src/os/timeout_test.go

    	r.SetReadDeadline(time.Now().Add(time.Millisecond))
    	for i := 0; i < 10; i++ {
    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    
    			b1 := make([]byte, 1024)
    			b2 := make([]byte, 1024)
    			for j := 0; j < 100; j++ {
    				_, err := r.Read(b1)
    				copy(b1, b2) // Mutate b1 to trigger potential race
    				if err != nil {
    					if !isDeadlineExceeded(err) {
    						t.Error(err)
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/ComponentModelIntegrationTest.groovy

            then:
            output.contains "names: [b1, b2]"
        }
    
        def "can reference binaries container elements using specialized type in a rule"() {
            given:
            withBinaries()
            buildFile << '''
                class TaskRules extends RuleSource {
                    @Mutate
                    void addPrintSourceDisplayNameTask(ModelMap<Task> tasks, @Path("components.main.binaries.b1") CustomBinary binary) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  3. src/crypto/tls/testdata/Client-TLSv12-ClientCert-RSA-RSA

    00000190  9a b2 18 9e f2 b1 de 1d  7e 6f 76 95 a9 ba e7 5d  |........~ov....]|
    000001a0  a8 16 6c 9c f7 09 d3 37  e4 4b 2b 36 7c 01 ad 41  |..l....7.K+6|..A|
    000001b0  d2 32 d8 c3 d2 93 f9 10  6b 8e 95 b9 2c 17 8a a3  |.2......k...,...|
    000001c0  44 48 bc 59 13 83 16 04  88 a4 81 5c 25 0d 98 0c  |DH.Y.......\%...|
    000001d0  ac 11 b1 28 56 be 1d cd  61 62 84 09 bf d6 80 c6  |...(V...ab......|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top