Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 132 for aBCD (0.11 sec)

  1. internal/ioutil/ioutil_test.go

    		t.Error("DeadlineWriter shouldn't be successful - should return context.DeadlineExceeded")
    	}
    	w.Close()
    	w = NewDeadlineWriter(&sleepWriter{timeout: 100 * time.Millisecond}, 600*time.Millisecond)
    	n, err := w.Write([]byte("abcd"))
    	w.Close()
    	if err != nil {
    		t.Errorf("DeadlineWriter should succeed but failed with %s", err)
    	}
    	if n != 4 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/validation/validation_test.go

    			name:   "ipv4, all zeros",
    			in:     "0.0.0.0",
    			family: 4,
    		},
    		{
    			name:   "ipv4, max",
    			in:     "255.255.255.255",
    			family: 4,
    		},
    		{
    			name:   "ipv6",
    			in:     "1234::abcd",
    			family: 6,
    		},
    		{
    			name:   "ipv6, all zeros, collapsed",
    			in:     "::",
    			family: 6,
    		},
    		{
    			name:   "ipv6, max",
    			in:     "ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 04:51:54 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/CacheTest.kt

        assertThat(response1.body.string()).isEqualTo("abcd")
        val response2 = get(server.url("/"))
        assertThat(response2.header("Alpha")).isEqualTo("α")
        assertThat(response2.header("β")).isEqualTo("Beta")
        assertThat(response2.header("Gamma")).isEqualTo("Γ")
        assertThat(response2.header("Δ")).isEqualTo("Delta")
        assertThat(response2.body.string()).isEqualTo("abcd")
      }
    
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  4. src/go/printer/testdata/declarations.input

    const (
    	umax uint                  = ^uint(0) // maximum value for a uint
    	bpu  = 1 << (5 + umax>>63)            // bits per uint
    	foo
    	bar  = -1
    )
    
    // typical enum
    const (
    	a MyType = iota
    	abcd
    	b
    	c
    	def
    )
    
    // excerpt from godoc.go
    var (
    	goroot = flag.String("goroot", runtime.GOROOT(), "Go root directory")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  5. src/hash/adler32/adler32_test.go

    }{
    	{0x00000001, "", "adl\x01\x00\x00\x00\x01"},
    	{0x00620062, "a", "adl\x01\x00\x00\x00\x01"},
    	{0x012600c4, "ab", "adl\x01\x00b\x00b"},
    	{0x024d0127, "abc", "adl\x01\x00b\x00b"},
    	{0x03d8018b, "abcd", "adl\x01\x01&\x00\xc4"},
    	{0x05c801f0, "abcde", "adl\x01\x01&\x00\xc4"},
    	{0x081e0256, "abcdef", "adl\x01\x02M\x01'"},
    	{0x0adb02bd, "abcdefg", "adl\x01\x02M\x01'"},
    	{0x0e000325, "abcdefgh", "adl\x01\x03\xd8\x01\x8b"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 01 21:04:12 UTC 2017
    - 5.5K bytes
    - Viewed (0)
  6. src/encoding/base64/base64_test.go

    	s, err := StdEncoding.DecodeString("YWJjZA=====")
    	want := CorruptInputError(8)
    	if !reflect.DeepEqual(want, err) {
    		t.Errorf("Error = %v; want CorruptInputError(8)", err)
    	}
    	if string(s) != "abcd" {
    		t.Errorf("DecodeString = %q; want abcd", s)
    	}
    }
    
    func TestDecoderIssue15656(t *testing.T) {
    	_, err := StdEncoding.Strict().DecodeString("WvLTlMrX9NpYDQlEIFlnDB==")
    	want := CorruptInputError(22)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 03 18:57:29 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  7. src/crypto/rsa/pkcs1v15_test.go

    	{
    		"Dtis4uk/q/LQGGqGk97P59K03hkCIVFMEFZRgVWOAAhxgYpCRG0MX2adptt92l67IqMki6iVQyyt0TtX3IdtEw==",
    		"FAIL",
    	},
    	{
    		"LIyFyCYCptPxrvTxpol8F3M7ZivlMsf53zs0vHRAv+rDIh2YsHS69ePMoPMe3TkOMZ3NupiL3takPxIs1sK+dw==",
    		"abcd",
    	},
    	{
    		"bafnobel46bKy76JzqU/RIVOH0uAYvzUtauKmIidKgM0sMlvobYVAVQPeUQ/oTGjbIZ1v/6Gyi5AO4DtHruGdw==",
    		"FAIL",
    	},
    }
    
    func TestEncryptPKCS1v15SessionKey(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 00:16:30 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  8. pkg/client/tests/portfoward_test.go

    		"forward 1 port with no data either direction": {
    			ports: []string{":5000"},
    		},
    		"forward 2 ports with bidirectional data": {
    			ports: []string{":5001", ":6000"},
    			clientSends: map[int32]string{
    				5001: "abcd",
    				6000: "ghij",
    			},
    			serverSends: map[int32]string{
    				5001: "1234",
    				6000: "5678",
    			},
    		},
    	}
    
    	for testName, test := range tests {
    		t.Run(testName, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 06:08:18 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/plan9/mkerrors.sh

    	# The gcc command line prints all the #defines
    	# it encounters while processing the input
    	echo "${!indirect} $includes" | $CC -x c - -E -dM $ccflags |
    	awk '
    		$1 != "#define" || $2 ~ /\(/ || $3 == "" {next}
    
    		$2 ~ /^E([ABCD]X|[BIS]P|[SD]I|S|FL)$/ {next}  # 386 registers
    		$2 ~ /^(SIGEV_|SIGSTKSZ|SIGRT(MIN|MAX))/ {next}
    		$2 ~ /^(SCM_SRCRT)$/ {next}
    		$2 ~ /^(MAP_FAILED)$/ {next}
    
    		$2 !~ /^ETH_/ &&
    		$2 !~ /^EPROC_/ &&
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 5.9K bytes
    - Viewed (2)
  10. src/go/printer/testdata/declarations.golden

    const (
    	umax	uint	= ^uint(0)		// maximum value for a uint
    	bpu		= 1 << (5 + umax>>63)	// bits per uint
    	foo
    	bar	= -1
    )
    
    // typical enum
    const (
    	a	MyType	= iota
    	abcd
    	b
    	c
    	def
    )
    
    // excerpt from godoc.go
    var (
    	goroot		= flag.String("goroot", runtime.GOROOT(), "Go root directory")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.2K bytes
    - Viewed (0)
Back to top