Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 784 for 123a (0.09 sec)

  1. android/guava-tests/test/com/google/common/net/InetAddressesTest.java

        assertEquals("::102:304", InetAddresses.toAddrString(InetAddresses.forString("::1.2.3.4")));
      }
    
      public void testToUriStringIPv4() {
        String ipStr = "1.2.3.4";
        InetAddress ip = InetAddresses.forString(ipStr);
        assertEquals("1.2.3.4", InetAddresses.toUriString(ip));
      }
    
      public void testToUriStringIPv6() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  2. pkg/kubelet/network/dns/dns_test.go

    		{"#comment\nnameserver 1.2.3.4\nsearch", []string{"1.2.3.4"}, []string{}, []string{}, false}, // nameserver specified and search empty
    		{"nameserver 1.2.3.4", []string{"1.2.3.4"}, []string{}, []string{}, false},
    		{" nameserver 1.2.3.4", []string{"1.2.3.4"}, []string{}, []string{}, false},
    		{"\tnameserver 1.2.3.4", []string{"1.2.3.4"}, []string{}, []string{}, false},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/util/ipvs_test.go

    			reason: "Port not equal",
    		},
    		{
    			svcA: &VirtualServer{
    				Address:   netutils.ParseIPSloppy("1.2.3.4"),
    				Protocol:  "TCP",
    				Port:      80,
    				Scheduler: "rr",
    				Flags:     0,
    				Timeout:   0,
    			},
    			svcB: &VirtualServer{
    				Address:   netutils.ParseIPSloppy("1.2.3.4"),
    				Protocol:  "TCP",
    				Port:      80,
    				Scheduler: "wlc",
    				Flags:     0,
    				Timeout:   0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. test/ken/shift.go

    	}
    }
    
    func
    init() {
    	/*
    	 * set the 'correct' answer
    	 */
    
    	ians[index(0,0,0)] =   1234;
    	ians[index(0,0,1)] =   1234;
    	ians[index(0,1,0)] =  39488;
    	ians[index(0,1,1)] =     38;
    	ians[index(0,2,0)] =      0;
    	ians[index(0,2,1)] =      0;
    
    	ians[index(1,0,0)] =  -1234;
    	ians[index(1,0,1)] =  -1234;
    	ians[index(1,1,0)] = -39488;
    	ians[index(1,1,1)] =    -39;
    	ians[index(1,2,0)] =      0;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 2.3K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/VisualStudioVersionDeterminerTest.groovy

            and:
            metadata.version == VersionNumber.parse("15.3.26730.16")
            metadata.installDir == dir1
            metadata.visualCppDir == new File(dir1, "VC/Tools/MSVC/1.2.3.4")
            metadata.visualCppVersion == VersionNumber.parse("1.2.3.4")
            metadata.compatibility == VS2017_OR_LATER
        }
    
        def "can determine a legacy version of an install from command line"() {
            def dir1 = tmpDir.createDir("dir1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  6. pilot/pkg/xds/ads_test.go

    		}, retry.Timeout(time.Second*5))
    	}
    
    	s := xdsfake.NewFakeDiscoveryServer(t, xdsfake.FakeOptions{
    		Configs: []config.Config{
    			makeEndpoint([]*networking.WorkloadEntry{
    				{Address: "1.2.3.4", Locality: "region/zone"},
    				{Address: "1.2.3.5", Locality: "notmatch"},
    			}),
    		},
    	})
    	ads := s.Connect(&model.Proxy{Locality: &core.Locality{Region: "region"}}, nil, watchAll)
    
    	assertEndpoints(ads, "1.2.3.4:80", "1.2.3.5:80")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  7. pkg/controlplane/controller/kubernetesservice/controller_test.go

    				Spec: corev1.ServiceSpec{
    					Ports: []corev1.ServicePort{
    						{Name: "foo", Port: 8080, Protocol: "TCP", TargetPort: intstr.FromInt32(8080)},
    					},
    					Selector:        nil,
    					ClusterIP:       "1.2.3.4",
    					IPFamilyPolicy:  &singleStack,
    					SessionAffinity: corev1.ServiceAffinityNone,
    					Type:            corev1.ServiceTypeClusterIP,
    				},
    			},
    		},
    	}
    	for _, test := range createTests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 10:41:06 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  8. platforms/software/resources/src/test/groovy/org/gradle/internal/resource/local/LocalFileStandInExternalResourceTest.groovy

            file.text = "1234"
    
            expect:
            def resource = new LocalFileStandInExternalResource(file, TestFiles.fileSystem())
            def result = resource.withContentIfPresent(new ExternalResource.ContentAction<String>() {
                @Override
                String execute(InputStream input) throws IOException {
                    assert input.text == "1234"
                    return "result 1"
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 14K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/sets/set_generic_test.go

    		expected sets.Set[string]
    	}{
    		{
    			sets.New("1", "2", "3", "4"),
    			sets.New("3", "4", "5", "6"),
    			sets.New("1", "2", "3", "4", "5", "6"),
    		},
    		{
    			sets.New("1", "2", "3", "4"),
    			sets.New[string](),
    			sets.New("1", "2", "3", "4"),
    		},
    		{
    			sets.New[string](),
    			sets.New("1", "2", "3", "4"),
    			sets.New("1", "2", "3", "4"),
    		},
    		{
    			sets.New[string](),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 09:03:44 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  10. pilot/pkg/security/authz/builder/testdata/tcp/custom-both-http-tcp-out1.yaml

                rules:
                - any: true
            principals:
            - andIds:
                ids:
                - orIds:
                    ids:
                    - directRemoteIp:
                        addressPrefix: 1.2.3.4
                        prefixLen: 32
          istio-ext-authz-ns[foo]-policy[httpbin-deny]-rule[2]:
            permissions:
            - andRules:
                rules:
                - orRules:
                    rules:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 15 22:42:30 UTC 2021
    - 2.7K bytes
    - Viewed (0)
Back to top