Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 142 for 123456700 (0.3 sec)

  1. pkg/volume/util/atomic_writer.go

    //     <target-dir>/k8s -> ..data/k8s
    //
    //     The data directory itself is a link to a timestamped directory with
    //     the real data:
    //     <target-dir>/..data          -> ..2016_02_01_15_04_05.12345678/
    //     NOTE(claudiub): We need to create these symlinks AFTER we've finished creating and
    //     linking everything else. On Windows, if a target does not exist, the created symlink
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. src/internal/syscall/windows/registry/registry_test.go

    	}{
    		{registry.DWORD, "Dword1", nil},
    		{registry.DWORD, "Dword2", []byte{1, 2, 3}},
    		{registry.QWORD, "Qword1", nil},
    		{registry.QWORD, "Qword2", []byte{1, 2, 3}},
    		{registry.QWORD, "Qword3", []byte{1, 2, 3, 4, 5, 6, 7}},
    		{registry.MULTI_SZ, "MultiString1", nil},
    		{registry.MULTI_SZ, "MultiString2", []byte{0}},
    		{registry.MULTI_SZ, "MultiString3", []byte{'a', 'b', 0}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 19:19:00 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. src/io/io_test.go

    		t.Errorf("closed tee: ReadFull(r, dst) = %d, %v; want 0, EPIPE", n, err)
    	}
    }
    
    func TestSectionReader_ReadAt(t *testing.T) {
    	dat := "a long sample data, 1234567890"
    	tests := []struct {
    		data   string
    		off    int
    		n      int
    		bufLen int
    		at     int
    		exp    string
    		err    error
    	}{
    		{data: "", off: 0, n: 10, bufLen: 2, at: 0, exp: "", err: EOF},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 22:04:41 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

            IteratorTester.KnownOrder.KNOWN_ORDER) {
          @Override
          protected Iterator<List<Integer>> newTargetIterator() {
            Iterator<Integer> source = Iterators.forArray(1, 2, 3, 4, 5, 6, 7);
            return Iterators.partition(source, 3);
          }
        }.test();
      }
    
      public void testPartition_view() {
        List<Integer> list = asList(1, 2);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 13:01:51 UTC 2024
    - 55.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/types.go

    	//
    	// The minimum valid JWT payload must contain the following claims:
    	// {
    	//		"iss": "https://issuer.example.com",
    	//		"aud": ["audience"],
    	//		"exp": 1234567890,
    	//		"<username claim>": "username"
    	// }
    	JWT []JWTAuthenticator `json:"jwt"`
    }
    
    // JWTAuthenticator provides the configuration for a single JWT authenticator.
    type JWTAuthenticator struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  6. pkg/registry/core/service/strategy_test.go

    			Ports: []api.ServicePort{
    				makeValidServicePort("p", "TCP", 8675),
    				makeValidServicePort("q", "TCP", 309),
    			},
    			ClusterIP:             "1.2.3.4",
    			ClusterIPs:            []string{"1.2.3.4", "5:6:7::8"},
    			IPFamilyPolicy:        &preferDual,
    			IPFamilies:            []api.IPFamily{"IPv4", "IPv6"},
    			InternalTrafficPolicy: &clusterInternalTrafficPolicy,
    		},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  7. cmd/object-api-listobjects_test.go

    		{"test-bucket-list-object", "", "", "", -1, resultCases[0], nil, true},
    		// Testing for very large value of maxKey, this should set maxKeys to listObjectsLimit (20).
    		{"test-bucket-list-object", "", "", "", 1234567890, resultCases[0], nil, true},
    		// Testing for trancated value (21-24).
    		{"test-bucket-list-object", "", "", "", 5, resultCases[1], nil, true},
    		{"test-bucket-list-object", "", "", "", 4, resultCases[2], nil, true},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  8. src/net/http/httputil/reverseproxy_test.go

    // before any mutations.
    func TestClonesRequestHeaders(t *testing.T) {
    	log.SetOutput(io.Discard)
    	defer log.SetOutput(os.Stderr)
    	req, _ := http.NewRequest("GET", "http://foo.tld/", nil)
    	req.RemoteAddr = "1.2.3.4:56789"
    	rp := &ReverseProxy{
    		Director: func(req *http.Request) {
    			req.Header.Set("From-Director", "1")
    		},
    		Transport: roundTripperFunc(func(req *http.Request) (*http.Response, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  9. pkg/apis/networking/validation/validation_test.go

    		"invalid ingress.ports.port (int)": makeNetworkPolicyCustom(setIngressPorts(makePort(&protocolTCP, intstr.FromInt32(123456789), 0))),
    		"invalid ingress.ports.port (str)": makeNetworkPolicyCustom(
    			setIngressPorts(makePort(&protocolTCP, intstr.FromString("!@#$"), 0))),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  10. src/text/scanner/scanner_test.go

    	{Ident, "本"},
    	{Ident, "a۰۱۸"},
    	{Ident, "foo६४"},
    	{Ident, "bar9876"},
    	{Ident, f100},
    
    	{Comment, "// decimal ints"},
    	{Int, "0"},
    	{Int, "1"},
    	{Int, "9"},
    	{Int, "42"},
    	{Int, "1234567890"},
    
    	{Comment, "// octal ints"},
    	{Int, "00"},
    	{Int, "01"},
    	{Int, "07"},
    	{Int, "042"},
    	{Int, "01234567"},
    
    	{Comment, "// hexadecimal ints"},
    	{Int, "0x0"},
    	{Int, "0x1"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 03:41:50 UTC 2022
    - 25.3K bytes
    - Viewed (0)
Back to top