Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 47 for aBCD (0.04 sec)

  1. src/os/exec/internal_test.go

    	}{
    		{
    			N:      2,
    			writes: nil,
    			want:   "",
    		},
    		{
    			N:      2,
    			writes: []string{"a"},
    			want:   "a",
    		},
    		{
    			N:      2,
    			writes: []string{"abc", "d"},
    			want:   "abcd",
    		},
    		{
    			N:      2,
    			writes: []string{"abc", "d", "e"},
    			want:   "ab\n... omitting 1 bytes ...\nde",
    		},
    		{
    			N:      2,
    			writes: []string{"ab______________________yz"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 22 14:08:10 UTC 2015
    - 1.2K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/io/PackageSanityTests.java

    public class PackageSanityTests extends AbstractPackageSanityTests {
      public PackageSanityTests() {
        setDefault(BaseEncoding.class, BaseEncoding.base64());
        setDefault(int.class, 32);
        setDefault(String.class, "abcd");
        setDefault(Method.class, AbstractPackageSanityTests.class.getDeclaredMethods()[0]);
        setDefault(MapMode.class, MapMode.READ_ONLY);
        setDefault(CharsetEncoder.class, Charsets.UTF_8.newEncoder());
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 1.3K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/io/PackageSanityTests.java

    public class PackageSanityTests extends AbstractPackageSanityTests {
      public PackageSanityTests() {
        setDefault(BaseEncoding.class, BaseEncoding.base64());
        setDefault(int.class, 32);
        setDefault(String.class, "abcd");
        setDefault(Method.class, AbstractPackageSanityTests.class.getDeclaredMethods()[0]);
        setDefault(MapMode.class, MapMode.READ_ONLY);
        setDefault(CharsetEncoder.class, Charsets.UTF_8.newEncoder());
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Sep 15 13:47:32 UTC 2016
    - 1.3K bytes
    - Viewed (0)
  4. src/hash/test_cases.txt

    a
    ab
    abc
    abcd
    abcde
    abcdef
    abcdefg
    abcdefgh
    abcdefghi
    abcdefghij
    Discard medicine more than two years old.
    He who has a shady past knows that nice guys finish last.
    I wouldn't marry him with a ten foot pole.
    Free! Free!/A trip/to Mars/for 900/empty jars/Burma Shave
    The days of the digital watch are numbered.  -Tom Stoppard
    Nepal premier won't resign.
    For every action there is an equal and opposite government program.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/common/python/testing_test.py

    
    class FileSizeTestCase(test.TestCase):
    
      def setUp(self):
        super().setUp()
    
        self.path_a = self.create_tempdir('dir_a').full_path
        self.create_tempfile(file_path='dir_a/w.txt', content='abcd')
    
        self.path_b = self.create_tempdir('dir_b').full_path
        self.create_tempfile(file_path='dir_b/x.txt', content='1234')
        self.create_tempfile(file_path='dir_b/y.txt', content='56')
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. test/typeparam/index2.go

    }
    
    func test[T comparable](got, want T) {
    	if got != want {
    		panic(fmt.Sprintf("got %v, want %v", got, want))
    	}
    }
    
    func main() {
    	x := make([]int64, 4)
    	x[3] = 2
    	y := [5]int64{1, 2, 3, 4, 5}
    	z := "abcd"
    	w := make([]byte, 4)
    	w[3] = 5
    	v := make(map[int]int64)
    	v[3] = 18
    
    	test(Index1(x), int64(2))
    	test(Index1(y), int64(4))
    	test(Index2(z), byte(100))
    	test(Index2(w), byte(5))
    	test(Index2a(w), byte(5))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/dcerpc/msrpc/samr.idl

    [
    	uuid(12345778-1234-abcd-ef00-0123456789ac),
    	version(1.0)
    ]
    interface samr
    {
    	import "../rpc.idl";
    	import "lsarpc.idl";
    
    	typedef [v1_enum] enum {
    		ACB_DISABLED               = 0x00000001, /* 1 = User account disabled */
    		ACB_HOMDIRREQ              = 0x00000002, /* 1 = Home directory required */
    		ACB_PWNOTREQ               = 0x00000004, /* 1 = User password not required */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  8. src/go/printer/testdata/alignment.golden

    	"12345":				"123",
    	"123456":				"123",
    	"12345678901234567890123456789":	"123",
    	"abcde":				"123",
    	"123456789012345678901234567890":	"123",
    	"1234567":				"123",
    	"abcdefghijklmnopqrstuvwxyzabcd":	"123",
    	"abcd":					"123",
    }
    
    type Fmt struct {
    	abcdefghijklmnopqrstuvwx	string
    	abcdefghijklmnopqrstuvwxy	string
    	abcdefghijklmnopqrstuvwxyz	string
    	abcdefghijklmnopqrstuvwxyza	string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 14 20:40:15 UTC 2018
    - 4.1K bytes
    - Viewed (0)
  9. src/go/printer/testdata/alignment.input

    	"12345": "123",
    	"123456": "123",
    	"12345678901234567890123456789": "123",
    	"abcde": "123",
    	"123456789012345678901234567890": "123",
    	"1234567": "123",
    	"abcdefghijklmnopqrstuvwxyzabcd": "123",
    	"abcd": "123",
    }
    
    type Fmt struct {
    	abcdefghijklmnopqrstuvwx string
    	abcdefghijklmnopqrstuvwxy string
    	abcdefghijklmnopqrstuvwxyz string
    	abcdefghijklmnopqrstuvwxyza string
    	abcdefghijklmnopqrstuvwxyzab string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 14 20:40:15 UTC 2018
    - 4.9K bytes
    - Viewed (0)
  10. src/main/java/jcifs/dcerpc/msrpc/samr.idl

    [
    	uuid(12345778-1234-abcd-ef00-0123456789ac),
    	version(1.0)
    ]
    interface samr
    {
    	import "../rpc.idl";
    	import "lsarpc.idl";
    
    	typedef [v1_enum] enum {
    		ACB_DISABLED               = 0x00000001, /* 1 = User account disabled */
    		ACB_HOMDIRREQ              = 0x00000002, /* 1 = Home directory required */
    		ACB_PWNOTREQ               = 0x00000004, /* 1 = User password not required */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.1K bytes
    - Viewed (0)
Back to top