Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for 1234567890123456 (0.13 sec)

  1. cmd/kubeadm/app/cmd/token_test.go

    		},
    		{
    			name:          "valid: non-empty token",
    			token:         "abcdef.1234567890123456",
    			usages:        []string{"signing", "authentication"},
    			extraGroups:   []string{"system:bootstrappers:foo"},
    			expectedError: false,
    		},
    		{
    			name:          "valid: no extraGroups",
    			token:         "abcdef.1234567890123456",
    			usages:        []string{"signing", "authentication"},
    			extraGroups:   []string{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/bootstraptoken/v1/utils_test.go

    		{token: "123456.AABBCCD-EEFFGGHH", expectedError: true, bts: nil},  // invalid character
    		{token: "abc*ef.1234567890123456", expectedError: true, bts: nil},  // invalid character
    		{token: "abcdef.1234567890123456", expectedError: false, bts: &BootstrapTokenString{ID: "abcdef", Secret: "1234567890123456"}},
    		{token: "123456.aabbccddeeffgghh", expectedError: false, bts: &BootstrapTokenString{ID: "123456", Secret: "aabbccddeeffgghh"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 15:51:39 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/validation/validation_test.go

    			Discovery: kubeadmapi.Discovery{
    				BootstrapToken: &kubeadmapi.BootstrapTokenDiscovery{
    					Token:             "abcdef.1234567890123456",
    					APIServerEndpoint: "1.2.3.4:6443",
    					CACertHashes:      []string{"aaaa"},
    				},
    				TLSBootstrapToken: "abcdef.1234567890123456",
    			},
    			NodeRegistration: kubeadmapi.NodeRegistrationOptions{
    				Name:      "aaa",
    				CRISocket: criPath,
    			},
    		}, true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/bootstraptoken/v1/utils.go

    	// the match of the first parenthesized subexpression, and so on.
    	// e.g.:
    	// result := bootstraputil.BootstrapTokenRegexp.FindStringSubmatch("abcdef.1234567890123456")
    	// result == []string{"abcdef.1234567890123456","abcdef","1234567890123456"}
    	// len(result) == 3
    	validatedSubstringsSize = 3
    )
    
    // MarshalJSON implements the json.Marshaler interface.
    func (bts BootstrapTokenString) MarshalJSON() ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 15:51:39 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. src/main/resources/fess.xml

    		<property name="cookieKey">"fessRoles"</property>
    		<property name="encryptedCookieValue">true</property>
    		<property name="cipher">
    			<component class="org.codelibs.core.crypto.CachedCipher">
    				<property name="key">"1234567890123456"</property>
    			</component>
    		</property>
    		<property name="valueSeparator">"\\n"</property>
    		<property name="roleSeparator">","</property>
    		 -->
    	</component>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jan 01 06:48:48 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  6. cmd/kubeadm/test/cmd/join_test.go

    	kubeadmPath := getKubeadmPath()
    	var initTest = []struct {
    		name     string
    		args     string
    		expected bool
    	}{
    		{"discovery-token and discovery-file can't both be set", "--discovery-token=abcdef.1234567890123456 --discovery-file=file:///tmp/foo.bar", false}, // DiscoveryToken, DiscoveryFile can't both be set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 08 21:47:16 UTC 2020
    - 6.6K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/helper/RoleQueryHelperTest.java

        public CachedCipher cipher;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            cipher = new CachedCipher();
            cipher.setKey("1234567890123456");
        }
    
        private Set<String> buildByParameter(final RoleQueryHelper roleQueryHelperImpl, final HttpServletRequest request) {
            Set<String> roleSet = new HashSet<>();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  8. src/runtime/map_test.go

    	// differently when op is / or % than when it isn't.
    	// Simple test to make sure they all work as expected.
    	m[0] = 12345
    	m[0] += 67890
    	m[0] /= 123
    	m[0] %= 456
    
    	const want = (12345 + 67890) / 123 % 456
    	if got := m[0]; got != want {
    		t.Errorf("got %d, want %d", got, want)
    	}
    }
    
    var sinkAppend bool
    
    func TestMapAppendAssignment(t *testing.T) {
    	m := make(map[int][]int, 0)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  9. src/time/mono_test.go

    	}
    }
    
    func TestMonotonicSub(t *testing.T) {
    	t1 := Unix(1483228799, 995e6)
    	SetMono(&t1, 123456789012345)
    
    	t2 := Unix(1483228799, 5e6)
    	SetMono(&t2, 123456789012345+10e6)
    
    	t3 := Unix(1483228799, 995e6)
    	SetMono(&t3, 123456789012345+1e9)
    
    	t1w := t1.AddDate(0, 0, 0)
    	if GetMono(&t1w) != 0 {
    		t.Fatalf("AddDate didn't strip monotonic clock reading")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 19 17:10:49 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  10. src/strconv/ctoa_test.go

    		{3.14159 + 0.00123i, 'f', 3, 128, "(3.142+0.001i)"},
    		{3.14159 + 0.00123i, 'g', 3, 128, "(3.14+0.00123i)"},
    
    		// ensure bitSize rounding is working
    		{1.2345678901234567 + 9.876543210987654i, 'f', -1, 128, "(1.2345678901234567+9.876543210987654i)"},
    		{1.2345678901234567 + 9.876543210987654i, 'f', -1, 64, "(1.2345679+9.876543i)"},
    
    		// other cases are handled by FormatFloat tests
    	}
    	for _, test := range tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 30 00:13:25 UTC 2020
    - 1.4K bytes
    - Viewed (0)
Back to top