Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 81 for 00001234 (0.1 sec)

  1. pilot/pkg/networking/grpcgen/lds_test.go

    		{"foo.ns.svc.cluster.local", ""},
    		{"foo.com", ""},
    		{"foo.ns.com", ""},
    		{"foo.ns.svc.notdnsdomain", ""},
    		{"foo.ns.svc.cluster.local.extra", ""},
    		{"xds.istio.io/grpc/lds/inbound/0.0.0.0:1234", ""},
    	}
    
    	for _, tc := range cases {
    		t.Run(tc.in, func(t *testing.T) {
    			if got := tryFindFQDN(tc.in, node); got != tc.want {
    				t.Errorf("want %q but got %q", tc.want, got)
    			}
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 30 20:07:58 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/core/convert/BigDecimalConversionUtilTest.java

            assertEquals(0, new BigDecimal("0.00123").compareTo(BigDecimalConversionUtil.toBigDecimal(new Double(0.00123D))));
            assertEquals(0, new BigDecimal("0.000123").compareTo(BigDecimalConversionUtil.toBigDecimal(new Double(0.000123D))));
            assertEquals(0, new BigDecimal("0.0000123").compareTo(BigDecimalConversionUtil.toBigDecimal(new Double(0.0000123D))));
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. cmd/kube-proxy/app/server_linux_test.go

    				ClusterCIDR:     "2002:0:0:1234::/64",
    			},
    			primaryIPFamily: v1.IPv6Protocol,
    			nodePodCIDRs:    []string{"2002::1234:abcd:ffff:0:0/96"},
    			expected: map[v1.IPFamily]proxyutil.LocalTrafficDetector{
    				v1.IPv4Protocol: proxyutil.NewNoOpLocalDetector(),
    				v1.IPv6Protocol: proxyutil.NewDetectLocalByCIDR("2002::1234:abcd:ffff:0:0/96"),
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/net/util.go

    import (
    	"errors"
    	"net"
    	"reflect"
    	"strings"
    	"syscall"
    )
    
    // IPNetEqual checks if the two input IPNets are representing the same subnet.
    // For example,
    //
    //	10.0.0.1/24 and 10.0.0.0/24 are the same subnet.
    //	10.0.0.1/24 and 10.0.0.0/25 are not the same subnet.
    func IPNetEqual(ipnet1, ipnet2 *net.IPNet) bool {
    	if ipnet1 == nil || ipnet2 == nil {
    		return false
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 20 19:02:55 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. tensorflow/cc/saved_model/saved_model_bundle_lite_test.cc

    constexpr char kTestDataPbTxt[] =
        "cc/saved_model/testdata/half_plus_two_pbtxt/00000123";
    constexpr char kTestDataMainOp[] =
        "cc/saved_model/testdata/half_plus_two_main_op/00000123";
    constexpr char kTestDataSharded[] =
        "cc/saved_model/testdata/half_plus_two/00000123";
    constexpr char kTestDataInitOpV2[] =
        "cc/saved_model/testdata/half_plus_two_v2/00000123";
    
    class LoaderTest : public ::testing::Test {
     protected:
      LoaderTest() {}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 19:16:58 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/reader_test.cc

    namespace {
    
    string TestDataPbTxt() {
      return io::JoinPath("tensorflow", "cc", "saved_model", "testdata",
                          "half_plus_two_pbtxt", "00000123");
    }
    
    string TestDataSharded() {
      return io::JoinPath("tensorflow", "cc", "saved_model", "testdata",
                          "half_plus_two", "00000123");
    }
    
    string ChunkedSavedModel() {
      return io::JoinPath("tensorflow", "cc", "saved_model", "testdata",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 17 21:17:08 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. tensorflow/cc/saved_model/saved_model_bundle_test.cc

    constexpr char kTestDataPbTxt[] =
        "cc/saved_model/testdata/half_plus_two_pbtxt/00000123";
    constexpr char kTestDataMainOp[] =
        "cc/saved_model/testdata/half_plus_two_main_op/00000123";
    constexpr char kTestDataSharded[] =
        "cc/saved_model/testdata/half_plus_two/00000123";
    constexpr char kTestDataInitOpV2[] =
        "cc/saved_model/testdata/half_plus_two_v2/00000123";
    constexpr char kTestDataV2DebugInfo[] =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 19:16:58 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  8. pkg/proxy/util/utils_test.go

    	testCases := []struct {
    		name   string
    		addr   string
    		port   int32
    		expect string
    	}{
    		{
    			name:   "IPv4 all-zeros bind address has port",
    			addr:   "0.0.0.0:12345",
    			port:   23456,
    			expect: "0.0.0.0:12345",
    		},
    		{
    			name:   "non-zeros IPv4 config",
    			addr:   "9.8.7.6",
    			port:   12345,
    			expect: "9.8.7.6:12345",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  9. test/initialize.go

    // Test initialization of package-level variables.
    
    package main
    
    import (
    	"fmt"
    	"reflect"
    )
    
    type S struct {
    	A, B, C, X, Y, Z int
    }
    
    type T struct {
    	S
    }
    
    var a1 = S{0, 0, 0, 1, 2, 3}
    var b1 = S{X: 1, Z: 3, Y: 2}
    
    var a2 = S{0, 0, 0, 0, 0, 0}
    var b2 = S{}
    
    var a3 = T{S{1, 2, 3, 0, 0, 0}}
    var b3 = T{S: S{A: 1, B: 2, C: 3}}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 04:04:52 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Client-TLSv13-Ed25519

    00000200  5a 39 b5 40 46 e8 b1 28  06 08 22 d3 27 b4 e6 ef  |Z9.@F..(..".'...|
    00000210  10 79 08 d4 ce 9e e2 cb  0b 86 a4 b1 80 e4 1b ac  |.y..............|
    00000220  71 15 fd 16 5b aa 01 c2  7b e3 c2 84 01 c0 f6 04  |q...[...{.......|
    00000230  a7 31 2b ec f2 50 bf 5a  07 6f b8 03 9f d2 c6 ad  |.1+..P.Z.o......|
    00000240  73 18 81 f5 fd 9a 5a b2  bc 9f 85 94 9f f6 da da  |s.....Z.........|
    00000250  dd 56 bc 66 17 03 03 00  35 9f 7e 2e 02 66 bb ac  |.V.f....5.~..f..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top