Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 785 for 123x (0.05 sec)

  1. pkg/kubelet/status/generate_test.go

    				Containers: []v1.Container{
    					{Name: "1234"},
    				},
    			},
    			containerStatuses: []v1.ContainerStatus{},
    			podPhase:          v1.PodRunning,
    			expectReady:       getPodCondition(v1.ContainersReady, v1.ConditionFalse, ContainersNotReady, "containers with unknown status: [1234]"),
    		},
    		{
    			spec: &v1.PodSpec{
    				Containers: []v1.Container{
    					{Name: "1234"},
    					{Name: "5678"},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 15:18:11 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  2. src/internal/fuzz/mutators_byteslice_test.go

    			mutator:  byteSliceOverwriteBytes,
    			input:    []byte{1, 2, 3, 4},
    			expected: []byte{1, 1, 3, 4},
    		},
    		{
    			name:     "byteSliceBitFlip",
    			mutator:  byteSliceBitFlip,
    			input:    []byte{1, 2, 3, 4},
    			expected: []byte{3, 2, 3, 4},
    		},
    		{
    			name:     "byteSliceXORByte",
    			mutator:  byteSliceXORByte,
    			input:    []byte{1, 2, 3, 4},
    			expected: []byte{3, 2, 3, 4},
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 19 18:23:43 UTC 2021
    - 4.3K bytes
    - Viewed (0)
  3. src/cmd/gofmt/testdata/composites.golden

    //gofmt -s
    
    package P
    
    type T struct {
    	x, y int
    }
    
    type T2 struct {
    	w, z int
    }
    
    var _ = [42]T{
    	{},
    	{1, 2},
    	{3, 4},
    }
    
    var _ = [...]T{
    	{},
    	{1, 2},
    	{3, 4},
    }
    
    var _ = []T{
    	{},
    	{1, 2},
    	{3, 4},
    }
    
    var _ = []T{
    	{},
    	10: {1, 2},
    	20: {3, 4},
    }
    
    var _ = []struct {
    	x, y int
    }{
    	{},
    	10: {1, 2},
    	20: {3, 4},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 12 03:55:43 UTC 2016
    - 2.5K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/ClasspathCompareStrategyTest.groovy

            expect:
            changes(
                [jar1: jar(1234), jar2: jar(2345), jar3: jar(3456)],
                [jar1: jar(1234), jar3: jar(3456)]
            ) == [added("jar2")]
            changes(
                [jar1: jar(1234), jar2: jar(2345), jar3: jar(3456), jar4: jar(4567), jar5: jar(5678)],
                [jar1: jar(1234), jar4: jar(4567), jar5: jar(5678)]
            ) == [added("jar2"), added("jar3")]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  5. 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)
  6. tests/test_tutorial/test_websockets/test_tutorial003_py39.py

        with client.websocket_connect("/ws/1234") as connection, client.websocket_connect(
            "/ws/5678"
        ) as connection_two:
            connection.send_text("Hello from 1234")
            data1 = connection.receive_text()
            assert data1 == "You wrote: Hello from 1234"
            data2 = connection_two.receive_text()
            client1_says = "Client #1234 says: Hello from 1234"
            assert data2 == client1_says
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/inet/MultiChoiceAddressTest.groovy

            def address = new MultiChoiceAddress(id, 1234, [address1])
            def same = new MultiChoiceAddress(id, 1234, [address1])
            def differentPort = new MultiChoiceAddress(id, 1567, [address1])
            def differentCandidates = new MultiChoiceAddress(id, 1234, [address2])
            def differentCanonical = new MultiChoiceAddress(otherId, 1234, [address1])
    
            expect:
            address Matchers.strictlyEqual(same)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/etcd/local_test.go

    				fmt.Sprintf("--advertise-client-urls=https://1.2.3.4:%d", kubeadmconstants.EtcdListenClientPort),
    				fmt.Sprintf("--listen-peer-urls=https://1.2.3.4:%d", kubeadmconstants.EtcdListenPeerPort),
    				fmt.Sprintf("--initial-advertise-peer-urls=https://1.2.3.4:%d", kubeadmconstants.EtcdListenPeerPort),
    				"--data-dir=/var/lib/etcd",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  9. pilot/pkg/util/network/ip_test.go

    		}
    	}
    	return ret
    }
    
    func MockLookupIPAddr(_ context.Context, _ string) ([]netip.Addr, error) {
    	ret := []netip.Addr{
    		netip.MustParseAddr("2001:db8::68"),
    		netip.MustParseAddr("1.2.3.4"),
    		netip.MustParseAddr("1.2.3.5"),
    	}
    	return ret, nil
    }
    
    func MockLookupIPAddrIPv6(_ context.Context, _ string) ([]netip.Addr, error) {
    	ret := []netip.Addr{
    		netip.MustParseAddr("2001:db8::68"),
    	}
    	return ret, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 08 16:24:15 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/match/match_test.go

    				//   <no matches>
    				//   fallback (dest ip):
    				//     1.2.3.4: chain
    				fallback := NewDestinationIP()
    				fallback.Map["1.2.3.4"] = ToChain("chain")
    
    				root := NewDestinationPort()
    				root.OnNoMatch = ToMatcher(fallback.Matcher)
    				return root
    			},
    			want: func() *matcher.Matcher {
    				// root (dest ip):
    				//   1.2.3.4: chain
    
    				// fallback becomes root
    				want := NewDestinationIP()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top