Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 785 for 123x (0.03 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/workloads_test.go

    				},
    				Spec: v1.PodSpec{},
    				Status: v1.PodStatus{
    					Phase: v1.PodPending,
    					PodIP: "1.2.3.4",
    				},
    			},
    			result: &workloadapi.Workload{
    				Uid:               "cluster0//Pod/ns/name",
    				Name:              "name",
    				Namespace:         "ns",
    				Addresses:         [][]byte{netip.AddrFrom4([4]byte{1, 2, 3, 4}).AsSlice()},
    				Network:           testNW,
    				CanonicalName:     "name",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. src/math/big/intconv_test.go

    	{"-1234", "% 8.5d", "  -01234"},
    	{"-1234", "% 8.6d", " -001234"},
    
    	{"1234", "%.3x", "4d2"},
    	{"1234", "%.4x", "04d2"},
    	{"1234", "%.5x", "004d2"},
    	{"1234", "%.6x", "0004d2"},
    	{"-1234", "%.3x", "-4d2"},
    	{"-1234", "%.4x", "-04d2"},
    	{"-1234", "%.5x", "-004d2"},
    	{"-1234", "%.6x", "-0004d2"},
    
    	{"1234", "%8.3x", "     4d2"},
    	{"1234", "%8.4x", "    04d2"},
    	{"1234", "%8.5x", "   004d2"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 22:58:58 UTC 2019
    - 10K bytes
    - Viewed (0)
  3. pilot/pkg/security/authz/builder/testdata/tcp/custom-both-http-tcp-in.yaml

        # rule[1] `from`: TCP field, `to`: HTTP field.
        - from:
            - source:
                ipBlocks: ["1.2.3.4"]
          to:
            - operation:
                methods: ["GET"]
        # rule[2] `from`: TCP field, `to`: TCP field.
        - from:
            - source:
                ipBlocks: ["1.2.3.4"]
          to:
            - operation:
                ports: ["80"]
        # rule[3] `from`: nil, `to`: nil, `when`: HTTP field.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 01 19:25:01 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  4. pkg/proxy/iptables/number_generated_rules_test.go

    			svcFunc: func(svc *v1.Service) {
    				svc.Spec.Type = v1.ServiceTypeLoadBalancer
    				svc.Spec.ExternalIPs = []string{"1.2.3.4"}
    				svc.Spec.LoadBalancerSourceRanges = []string{" 1.2.3.4/28"}
    				svc.Status.LoadBalancer.Ingress = []v1.LoadBalancerIngress{{
    					IP: "1.2.3.4",
    				}}
    			},
    			services:            0,
    			epPerService:        0,
    			expectedFilterRules: 4,
    			expectedNatRules:    5,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/gateway-addresses.yaml

    spec:
      gatewayClassName: acme-lb
      addresses:
      - value: 1200:0000:AB00:1234:0000:2552:7777:1313
      - value: 21DA:D3:0:2F3B:2AA:FF:FE28:9C5A
      - value: "2001:db8:3c4d:15:0:d234:3eee::"
      - value: "1234::"
      - value: "1.1.1.1"
      - value: "1.2.3.4"
      - value: "0.0.0.0"
      - value: "9.255.255.255"
      - value: "11.0.0.0"
      - type: IPAddress
        value: "255.255.255.255"
      - type: "Hostname"
        value: "example.com"
      listeners:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 631 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/reconcilers/peer_endpoint_lease_test.go

    			servers: []serverInfo{{
    				id:             "server-1",
    				ports:          []corev1.EndpointPort{{Name: "foo", Port: 8080, Protocol: "TCP"}},
    				newIP:          "1.2.3.4",
    				expectEndpoint: "1.2.3.4:8080",
    			}},
    			expectLeases: []string{"1.2.3.4"},
    		},
    	}
    	for _, test := range tests {
    		t.Run(test.testName, func(t *testing.T) {
    			fakeReconciler := NewFakePeerEndpointReconciler(t, s)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. platforms/software/resources/src/test/groovy/org/gradle/internal/resource/transfer/AccessorBackedExternalResourceTest.groovy

            when:
            expectResourceRead(name, "1234")
            def result = resource.withContent(action)
    
            then:
            result.result == null
            result.bytesRead == 4
            1 * action.execute(_) >> { InputStream input -> input.text }
            0 * _
    
            when:
            expectResourceRead(name, "1234")
            result = resource.withContent(action)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  8. src/net/netip/netip_test.go

    	tests := []struct {
    		a, b Addr
    		want bool
    	}{
    		{Addr{}, Addr{}, false},
    		{Addr{}, mustIP("1.2.3.4"), true},
    		{mustIP("1.2.3.4"), Addr{}, false},
    
    		{mustIP("1.2.3.4"), mustIP("0102:0304::0"), true},
    		{mustIP("0102:0304::0"), mustIP("1.2.3.4"), false},
    		{mustIP("1.2.3.4"), mustIP("1.2.3.4"), false},
    
    		{mustIP("::1"), mustIP("::2"), true},
    		{mustIP("::1"), mustIP("::1%foo"), true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/test/mulconst_test.go

    			x *= 5
    		}
    		mulSinkI32 = x
    	})
    	// 12x = 8x + 4x
    	b.Run("12", func(b *testing.B) {
    		x := int32(1)
    		for i := 0; i < b.N; i++ {
    			x *= 12
    		}
    		mulSinkI32 = x
    	})
    	// 120x = 128x - 8x
    	b.Run("120", func(b *testing.B) {
    		x := int32(1)
    		for i := 0; i < b.N; i++ {
    			x *= 120
    		}
    		mulSinkI32 = x
    	})
    	// -120x = 8x - 120x
    	b.Run("-120", func(b *testing.B) {
    		x := int32(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 18 15:39:44 UTC 2020
    - 4.3K bytes
    - Viewed (0)
  10. test/fixedbugs/issue5809.go

    	const d16 = "0123456789ABCDEF"
    	k := 0x1234
    	var x [4]byte
    	
    	x[0] = d16[k>>12&0xf]
    	x[1] = d16[k>>8&0xf]
    	x[2] = d16[k>>4&0xf]
    	x[3] = d16[k&0xf]
    	
    	if x != [4]byte{'1','2','3','4'} {
    		fmt.Println(x)
    		panic("x != [4]byte{'1','2','3','4'}")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 529 bytes
    - Viewed (0)
Back to top