Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 694 for 91234 (0.15 sec)

  1. pilot/pkg/security/authz/model/util_test.go

    			V:    "-80",
    			Err:  "invalid port -80:",
    		},
    		{
    			Name: "invalid port",
    			V:    "xyz",
    			Err:  "invalid port xyz:",
    		},
    		{
    			Name: "port too large",
    			V:    "91234",
    			Err:  "invalid port 91234:",
    		},
    		{
    			Name:   "valid port",
    			V:      "443",
    			Expect: 443,
    		},
    	}
    
    	for _, tc := range testCases {
    		actual, err := convertToPort(tc.V)
    		if tc.Err != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 30 00:00:33 UTC 2020
    - 2.8K bytes
    - Viewed (0)
  2. src/html/template/css_test.go

    		{`\`, ``},
    		{`\A`, "\n"},
    		{`\a`, "\n"},
    		{`\0a`, "\n"},
    		{`\00000a`, "\n"},
    		{`\000000a`, "\u0000a"},
    		{`\1234 5`, "\u1234" + "5"},
    		{`\1234\20 5`, "\u1234" + " 5"},
    		{`\1234\A 5`, "\u1234" + "\n5"},
    		{"\\1234\t5", "\u1234" + "5"},
    		{"\\1234\n5", "\u1234" + "5"},
    		{"\\1234\r\n5", "\u1234" + "5"},
    		{`\12345`, "\U00012345"},
    		{`\\`, `\`},
    		{`\\ `, `\ `},
    		{`\"`, `"`},
    		{`\'`, `'`},
    		{`\.`, `.`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 19:38:18 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/apiendpoint_test.go

    		{apiEndpoint: "1.2.3.4:-1", expectedErr: true},
    		{apiEndpoint: "1.2.::1234", expectedErr: true},
    		{apiEndpoint: "1.2.3.4:65536", expectedErr: true},
    		{apiEndpoint: "1.2.3.456:1234", expectedErr: true},
    		{apiEndpoint: "[::1]:1234", expectedEndpoint: APIEndpoint{AdvertiseAddress: "::1", BindPort: 1234}},
    		{apiEndpoint: "[::1]:-1", expectedErr: true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 28 10:23:44 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/endpoint_test.go

    			hostport:     "cp.k8s.io:1234",
    			expectedHost: "cp.k8s.io",
    			expectedPort: "1234",
    		},
    		{
    			name:         "valid ip4",
    			hostport:     "1.2.3.4",
    			expectedHost: "1.2.3.4",
    			expectedPort: "",
    		},
    		{
    			name:         "valid ipv4:port",
    			hostport:     "1.2.3.4:1234",
    			expectedHost: "1.2.3.4",
    			expectedPort: "1234",
    		},
    		{
    			name:         "valid ipv6",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 23 03:19:26 UTC 2019
    - 10K bytes
    - Viewed (0)
  5. src/internal/types/testdata/check/literals.go

    	assert(0123_456 == 0123456)
    
    	// decimals
    	assert(1_234 == 1234)
    	assert(1_234_567 == 1234567)
    
    	// hexadecimals
    	assert(0X_0 == 0)
    	assert(0X_1234 == 0x1234)
    	assert(0X_CAFE_f00d == 0xcafef00d)
    
    	// octals
    	assert(0o0 == 0)
    	assert(0o1234 == 01234)
    	assert(0o01234567 == 01234567)
    
    	assert(0O0 == 0)
    	assert(0O1234 == 01234)
    	assert(0O01234567 == 01234567)
    
    	assert(0o_0 == 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  6. src/net/netip/netip_pkg_test.go

    	}{
    		{in: "1.2.3.4:1234", want: AddrPort{mustIP("1.2.3.4"), 1234}},
    		{in: "1.1.1.1:123456", wantErr: true},
    		{in: "1.1.1.1:-123", wantErr: true},
    		{in: "[::1]:1234", want: AddrPort{mustIP("::1"), 1234}},
    		{in: "[1.2.3.4]:1234", wantErr: true},
    		{in: "fe80::1:1234", wantErr: true},
    		{in: ":0", wantErr: true}, // if we need to parse this form, there should be a separate function that explicitly allows it
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 02 15:37:19 UTC 2023
    - 9K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/staticpod/utils_test.go

    				},
    			},
    			isIPv6:           false,
    			expectedHostname: "1.2.3.4",
    			expectedPort:     1234,
    			expectedScheme:   v1.URISchemeHTTP,
    		},
    		{
    			name: "etcd probe URL without scheme should result in defaults",
    			cfg: &kubeadmapi.Etcd{
    				Local: &kubeadmapi.LocalEtcd{
    					ExtraArgs: []kubeadmapi.Arg{
    						{Name: "listen-metrics-urls", Value: "1.2.3.4"},
    					},
    				},
    			},
    			isIPv6:           false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 12 15:44:44 UTC 2023
    - 22.6K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/testdata/ppc64_p10.s

    	PLHA 1234(R1), $0, R3                   // 06000000a86104d2
    	PLHZ 1234(R1), $0, R3                   // 06000000a06104d2
    	PLQ 1234(R1), $0, R4                    // 04000000e08104d2
    	PLWA 1234(R1), $0, R3                   // 04000000a46104d2
    	PLWZ 1234567890(R4), $0, R3             // 06004996806402d2
    	PLWZ 1234567890(R0), $1, R3             // 06104996806002d2
    	PLXSD 1234(R1), $0, V1                  // 04000000a82104d2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 23 20:52:57 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/config/cluster_test.go

    				Component: kubeadmconstants.KubeAPIServer,
    				Annotations: map[string]string{
    					kubeadmconstants.KubeAPIServerAdvertiseAddressEndpointAnnotationKey: "[::1]:1234",
    				},
    			},
    			expectedEndpoint: &kubeadmapi.APIEndpoint{AdvertiseAddress: "::1", BindPort: 1234},
    		},
    		{
    			name:     "invalid ipv6 endpoint in pod annotation",
    			nodeName: nodeName,
    			staticPod: &testresources.FakeStaticPod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/primitives/BytesTest.java

        testRotate(new byte[] {1, 2, 3, 4, 5}, 1, new byte[] {5, 1, 2, 3, 4});
        testRotate(new byte[] {1, 2, 3, 4, 5}, 3, new byte[] {3, 4, 5, 1, 2});
        testRotate(new byte[] {1, 2, 3, 4, 5}, 4, new byte[] {2, 3, 4, 5, 1});
        testRotate(new byte[] {1, 2, 3, 4, 5}, 6, new byte[] {5, 1, 2, 3, 4});
      }
    
      public void testRotateIndexed() {
        testRotate(new byte[] {}, 0, 0, 0, new byte[] {});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 16:10:08 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top