Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for 1234567890123456 (0.86 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/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)
  3. 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)
  4. 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)
  5. maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionTest.java

         */
        @Test
        void testMng6572() {
            String a = "20190126.230843"; // resembles a SNAPSHOT
            String b = "1234567890.12345"; // 10 digit number
            String c = "123456789012345.1H.5-beta"; // 15 digit number
            String d = "12345678901234567890.1H.5-beta"; // 20 digit number
    
            checkVersionsOrder(a, b);
            checkVersionsOrder(b, c);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 06:39:47 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/injection.yaml

        name: server
    ---
    # Control plane pod proving the existence of istio.io/rev 'canary'
    apiVersion: v1
    kind: Pod
    metadata:
      name: istiod-canary-1234567890-12345
      namespace: istio-system
      labels:
        app: istiod
        istio: pilot
        istio.io/rev: canary
    spec:
      containers:
      - image: gcr.io/google-samples/microservices-demo/adservice:v0.1.1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 14:06:10 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. pkg/proxy/apis/config/validation/validation_test.go

    			ip:           "10.10.10.10",
    			expectedErrs: field.ErrorList{field.Invalid(newPath.Child("HealthzBindAddress"), "10.10.10.10", "must be IP:port")},
    		},
    		"digits outside of 1-255": {
    			ip:           "123.456.789.10:12345",
    			expectedErrs: field.ErrorList{field.Invalid(newPath.Child("HealthzBindAddress"), "123.456.789.10", "must be a valid IP")},
    		},
    		"invalid named-port": {
    			ip:           "10.10.10.10:foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  8. src/strings/strings_test.go

    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
Back to top