Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 651 for 12e34 (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/apimachinery/pkg/util/net/http_test.go

    		remoteAddr: "1.2.3.4:555",
    		expected:   []string{"1.2.3.4"},
    	}, {
    		name:       "no headers, just remoteAddr host",
    		remoteAddr: "1.2.3.4",
    		expected:   []string{"1.2.3.4"},
    	}, {
    		name:         "empty forwarded-for chain",
    		forwardedFor: " ",
    		remoteAddr:   "1.2.3.4",
    		expected:     []string{"1.2.3.4"},
    	}, {
    		name:         "invalid forwarded-for chain",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 18 01:21:56 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  8. tests/test_tutorial/test_websockets/test_tutorial003.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: Thu Jul 29 09:26:07 UTC 2021
    - 872 bytes
    - Viewed (0)
  9. pkg/kubelet/pleg/generic_test.go

    		{Pod: &kubecontainer.Pod{
    			ID: "1234",
    			Containers: []*kubecontainer.Container{
    				createTestContainer("c1", kubecontainer.ContainerStateRunning),
    			},
    		}},
    	}
    	pleg.Relist()
    	expected := []*PodLifecycleEvent{
    		{ID: "1234", Type: ContainerDied, Data: "c2"},
    		{ID: "1234", Type: ContainerRemoved, Data: "c2"},
    		{ID: "1234", Type: ContainerRemoved, Data: "c3"},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  10. test/interface/struct.go

    func (p S3) Put(i int64) { p.l = i }
    
    func f7() {
    	s := S3{1, 2, 3, 4}
    	var i I2 = s
    	i.Put(5)
    	check(i.Get() == 4, "f7 i")
    	check(s.l == 4, "f7 s")
    }
    
    func f8() {
    	s := S3{1, 2, 3, 4}
    	var i I2 = &s
    	i.Put(5)
    	check(i.Get() == 4, "f8 i")
    	check(s.l == 4, "f8 s")
    }
    
    func f9() {
    	s := &S3{1, 2, 3, 4}
    	var i I2 = s
    	i.Put(5)
    	check(i.Get() == 4, "f9 i")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 06:33:41 UTC 2012
    - 2.4K bytes
    - Viewed (0)
Back to top