Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 47 of 47 for aBCD (0.24 sec)

  1. cmd/kubeadm/test/cmd/init_test.go

    }
    
    func TestCmdInitToken(t *testing.T) {
    	initTest := []struct {
    		name     string
    		args     string
    		expected bool
    	}{
    		{
    			name:     "invalid token size",
    			args:     "--token=abcd:1234567890abcd",
    			expected: false,
    		},
    		{
    			name:     "invalid token non-lowercase",
    			args:     "--token=Abcdef:1234567890abcdef",
    			expected: false,
    		},
    		{
    			name:     "valid token is accepted",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 18 01:03:09 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. test/range.go

    		panic("fail")
    	}
    }
    
    // test that range over string only evaluates
    // the expression after "range" once.
    
    func makestring() string {
    	nmake++
    	return "abcd☺"
    }
    
    func teststring() {
    	var s rune
    	nmake = 0
    	for _, v := range makestring() {
    		s += v
    	}
    	if nmake != 1 {
    		println("range called makestring", nmake, "times")
    		panic("fail")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 05:50:54 UTC 2017
    - 8.1K bytes
    - Viewed (0)
Back to top