Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 273 for b1 (0.02 sec)

  1. src/test/java/org/codelibs/fess/dict/synonym/SynonymFileTest.java

            List<SynonymItem> itemList = new ArrayList<>();
            itemList.add(new SynonymItem(1, new String[] { "a1" }, new String[] { "A1" }));
            itemList.add(new SynonymItem(2, new String[] { "b1", "b2" }, new String[] { "B1" }));
            itemList.add(new SynonymItem(3, new String[] { "c1" }, new String[] { "C1", "C2" }));
            itemList.add(new SynonymItem(4, new String[] { "x1", "X1" }, new String[] { "x1", "X1" }));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_get_downadd_indirect.txt

    require example.com/b v0.2.0
    
    replace (
    	example.com/b v0.1.0 => ./b1
    	example.com/b v0.2.0 => ./b2
    	example.com/c v0.1.0 => ./c
    	example.com/d v0.1.0 => ./d
    	example.com/d v0.2.0 => ./d
    )
    -- a.go --
    package a
    
    import _ "example.com/b"
    
    -- b1/go.mod --
    module example.com/b
    
    go 1.15
    
    require example.com/c v0.1.0
    -- b1/b.go --
    package b
    
    import _ "example.com/c"
    
    -- b2/go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/idn/IdnaMappingTable.kt

     * that follows.
     *
     * b1
     * --
     *
     * This is either a mapping decision or the length of the mapped output, according to this table:
     *
     * ```
     *  0..63 : Length of the UTF-16 sequence that this range maps to. The offset is b2b3.
     * 64..79 : Offset by a fixed negative offset. The bottom 4 bits of b1 are the top 4 bits of the offset.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Apr 02 11:39:58 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/misc/Base64Util.java

            final byte b0 = DECODE_TABLE[inData.charAt(inIndex)];
            final byte b1 = DECODE_TABLE[inData.charAt(inIndex + 1)];
            final byte b2 = DECODE_TABLE[inData.charAt(inIndex + 2)];
            final byte b3 = DECODE_TABLE[inData.charAt(inIndex + 3)];
            outData[outIndex] = (byte) (b0 << 2 & 0xfc | b1 >> 4 & 0x3);
            outData[outIndex + 1] = (byte) (b1 << 4 & 0xf0 | b2 >> 2 & 0xf);
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_vendor_unused.txt

    cmp go1.14-modules.txt vendor/modules.txt
    
    -- go.mod --
    module example.com/foo
    go 1.14
    
    require (
    	example.com/a v0.1.0
    )
    
    replace (
    	example.com/a v0.1.0 => ./a
    	example.com/b v0.1.0 => ./b1
    	example.com/b v0.2.0-unused => ./b2
    	example.com/c => ./c
    	example.com/d v0.1.0 => ./d1
    	example.com/d v0.2.0 => ./d2
    	example.com/e => example.com/e v0.1.0-unused
    )
    -- foo.go --
    package foo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 09 18:12:31 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/CopyActionExecuterTest.groovy

            given:
            file("a").with {
                createFile("a")
            }
            file("b").with {
                createFile("b")
                createDir("b1").createFile("b1")
            }
    
            def resolver = TestFiles.resolver(testDirectory)
            def fileCollectionFactory = TestFiles.fileCollectionFactory(testDirectory)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 28 12:39:32 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. test/fixedbugs/issue23719.go

    	x2 := [4]int16{-1, 99, 99, 99}
    	if x1 == x2 {
    		panic("bad comparison")
    	}
    
    	a1 := [2]int8{-1, 88}
    	a2 := [2]int8{-1, 99}
    	if a1 == a2 {
    		panic("bad comparison")
    	}
    	b1 := [4]int8{-1, 88, 88, 88}
    	b2 := [4]int8{-1, 99, 99, 99}
    	if b1 == b2 {
    		panic("bad comparison")
    	}
    	c1 := [8]int8{-1, 88, 88, 88, 88, 88, 88, 88}
    	c2 := [8]int8{-1, 99, 99, 99, 99, 99, 99, 99}
    	if c1 == c2 {
    		panic("bad comparison")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 06 18:24:33 UTC 2018
    - 826 bytes
    - Viewed (0)
  8. test/fixedbugs/bug427.go

    // array with five elements
    type B [5]int
    
    func main() {
    	var i interface{}
    
    	var s1, s2 S
    	i = s1 == s2
    
    	var t1, t2 T
    	i = t1 == t2
    
    	var a1, a2 A
    	i = a1 == a2
    
    	var b1, b2 B
    	i = b1 == b2
    
    	_ = i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jul 11 14:36:33 UTC 2015
    - 614 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_vet.txt

    	if err != nil {
    		panic(err)
    	}
    	// (defer statement belongs here)
    }
    -- vetall/p_test.go --
    package p
    -- vetcycle/p.go --
    package p
    
    type (
    	_  interface{ m(B1) }
    	A1 interface{ a(D1) }
    	B1 interface{ A1 }
    	C1 interface {
    		B1 /* ERROR issue #18395 */
    	}
    	D1 interface{ C1 }
    )
    
    var _ A1 = C1 /* ERROR cannot use C1 */ (nil)
    -- vetfail/p1/p1.go --
    // +build !foo-bar
    
    package p1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 27 20:14:44 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_get_downup_artifact.txt

    )
    
    -- a1/go.mod --
    module example.com/a
    
    go 1.16
    
    require example.com/b v0.1.0
    -- a1/a.go --
    package a
    
    import _ "example.com/b"
    
    -- b1/go.mod --
    module example.com/b
    
    go 1.16
    
    require example.com/c v0.1.0
    -- b1/b.go --
    package b
    
    import _ "example.com/c"
    
    -- b2/go.mod --
    module example.com/b
    
    go 1.16
    
    require (
    	example.com/c v0.2.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.9K bytes
    - Viewed (0)
Back to top