Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. okhttp-idna-mapping-table/src/main/kotlin/okhttp3/internal/idn/MappedRange.kt

        val type: Int,
      ) : MappedRange {
        val b1: Int
          get() =
            when (type) {
              TYPE_IGNORED -> 119
              TYPE_VALID -> 120
              TYPE_DISALLOWED -> 121
              else -> error("unexpected type: $type")
            }
      }
    
      data class Inline1(
        override val rangeStart: Int,
        private val mappedTo: ByteString,
      ) : MappedRange {
        val b1: Int
          get() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. src/image/png/writer_test.go

    func diff(m0, m1 image.Image) error {
    	b0, b1 := m0.Bounds(), m1.Bounds()
    	if !b0.Size().Eq(b1.Size()) {
    		return fmt.Errorf("dimensions differ: %v vs %v", b0, b1)
    	}
    	dx := b1.Min.X - b0.Min.X
    	dy := b1.Min.Y - b0.Min.Y
    	for y := b0.Min.Y; y < b0.Max.Y; y++ {
    		for x := b0.Min.X; x < b0.Max.X; x++ {
    			c0 := m0.At(x, y)
    			c1 := m1.At(x+dx, y+dy)
    			r0, g0, b0, a0 := c0.RGBA()
    			r1, g1, b1, a1 := c1.RGBA()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 14 08:14:05 UTC 2022
    - 8.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/DefaultCompositeFileTreeTest.groovy

            def a1 = file("a/1.txt") << "a/1"
            def b1 = file("b/1.txt") << "b/1"
            def fileResolver = TestFiles.fileCollectionFactory(testDirectory)
    
            when:
            def a = fileResolver.resolving(["a"]).asFileTree
            def b = fileResolver.resolving(["b"]).asFileTree
            def composite = newCompositeFileTree([a, b])
    
            then:
            composite.files == [a1, b1].toSet()
        }
    
        def "can visit all files"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. src/internal/trace/testdata/generators/go122-create-syscall-reuse-thread-id.go

    	// the parser handles GoDestroySyscall wrong, then we
    	// have a self-steal here potentially that doesn't make
    	// sense.
    	b1 := g.Batch(trace.ThreadID(0), 0)
    	b1.Event("ProcStatus", trace.ProcID(1), go122.ProcIdle)
    	b1.Event("ProcStart", trace.ProcID(1), testgen.Seq(1))
    	b1.Event("ProcSteal", trace.ProcID(0), testgen.Seq(3), trace.ThreadID(0))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_lazy_import_allmod.txt

    replace (
    	a v0.1.0 => ./a1
    	b v0.1.0 => ./b1
    	c v0.1.0 => ./c1
    	c v0.2.0 => ./c2
    )
    -- a1/go.mod --
    module a
    
    go 1.17
    
    require b v0.1.0
    -- a1/a.go --
    package a
    -- a1/a_test.go --
    package a_test
    
    import _ "b/x"
    -- b1/go.mod --
    module b
    
    go 1.17
    
    require c v0.1.0
    -- b1/x/x.go --
    package x
    -- b1/y/y.go --
    package y
    
    import "c"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 17 13:54:10 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  6. src/debug/dwarf/entry.go

    			break
    		}
    
    		// Walk over attributes, counting.
    		n := 0
    		b1 := b // Read from copy of b.
    		b1.uint()
    		b1.uint8()
    		for {
    			tag := b1.uint()
    			fmt := b1.uint()
    			if tag == 0 && fmt == 0 {
    				break
    			}
    			if format(fmt) == formImplicitConst {
    				b1.int()
    			}
    			n++
    		}
    		if b1.err != nil {
    			return nil, b1.err
    		}
    
    		// Walk over attributes again, this time writing them down.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 30.7K bytes
    - Viewed (0)
  7. src/crypto/aes/gcm_amd64.s

    	MOVOU B0, (16*14)(dst)
    	PSHUFD $78, B0, B1
    	PXOR B0, B1
    	MOVOU B1, (16*15)(dst)
    
    	MOVOU B0, B2
    	MOVOU B1, B3
    	// Now prepare powers of H and pre-computations for them
    	MOVQ $7, AX
    
    initLoop:
    		MOVOU B2, T0
    		MOVOU B2, T1
    		MOVOU B3, T2
    		PCLMULQDQ $0x00, B0, T0
    		PCLMULQDQ $0x11, B0, T1
    		PCLMULQDQ $0x00, B1, T2
    
    		PXOR T0, T2
    		PXOR T1, T2
    		MOVOU T2, B4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  8. src/compress/lzw/writer_test.go

    	b0, err0 := io.ReadAll(golden)
    	b1, err1 := io.ReadAll(lzwr)
    	if err0 != nil {
    		t.Errorf("%s (order=%d litWidth=%d): %v", fn, order, litWidth, err0)
    		return
    	}
    	if err1 != nil {
    		t.Errorf("%s (order=%d litWidth=%d): %v", fn, order, litWidth, err1)
    		return
    	}
    	if len(b1) != len(b0) {
    		t.Errorf("%s (order=%d litWidth=%d): length mismatch %d != %d", fn, order, litWidth, len(b1), len(b0))
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 12 11:00:47 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/phiopt.go

    		for len(b0.Succs) == 1 && len(b0.Preds) == 1 {
    			pb0, b0 = b0, b0.Preds[0].b
    		}
    		if b0.Kind != BlockIf {
    			continue
    		}
    		pb1, b1 := b, b.Preds[1].b
    		for len(b1.Succs) == 1 && len(b1.Preds) == 1 {
    			pb1, b1 = b1, b1.Preds[0].b
    		}
    		if b1 != b0 {
    			continue
    		}
    		// b0 is the if block giving the boolean value.
    		// reverse is the predecessor from which the truth value comes.
    		var reverse int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildBuildSrcIdentityIntegrationTest.groovy

            createDirs("buildB", "buildB/buildSrc", "buildB/buildSrc/b1", "buildB/buildSrc/b2")
            buildB.file("buildSrc/settings.gradle") << """
                $settings
                include 'b1', 'b2'
            """
            buildB.file("buildSrc/build.gradle") << """
                allprojects { apply plugin: 'java' }
                dependencies { implementation project(':b1') }
                project(':b1') { dependencies { implementation project(':b2') } }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top