Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 91 for 00001234 (0.14 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. test/literal.go

    	var cx1 uint8 = '\x0f'
    	var cx2 uint8 = '\xff'
    	assert(cx0 == 0, "cx0")
    	assert(cx1 == 15, "cx1")
    	assert(cx2 == 255, "cx2")
    
    	var cu0 uint16 = '\u1234'
    	var cu1 uint32 = '\U00101234'
    	assert(cu0 == 0x1234, "cu0")
    	assert(cu1 == 0x101234, "cu1")
    
    	// string
    	var s0 string = ""
    	var s1 string = "hellĂ´"
    	assert(s1[0] == 'h', "s1-0")
    	assert(s1[4] == 0xc3, "s1-4")
    	assert(s1[5] == 0xb4, "s1-5")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 12 18:17:49 UTC 2013
    - 5K bytes
    - Viewed (0)
  5. 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)
  6. test/fixedbugs/bug013.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    func main() {
    	var cu0 uint16 = '\u1234';
    	var cU1 uint32 = '\U00101234';
    	_, _ = cu0, cU1;
    }
    /*
    bug13.go:4: missing '
    bug13.go:4: syntax error
    bug13.go:5: newline in string
    bug13.go:5: missing '
    bug13.go:6: newline in string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:48:57 UTC 2012
    - 411 bytes
    - Viewed (0)
  7. 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)
  8. src/html/entity.go

    		"or;":                              '\U00002228',
    		"orarr;":                           '\U000021BB',
    		"ord;":                             '\U00002A5D',
    		"order;":                           '\U00002134',
    		"orderof;":                         '\U00002134',
    		"ordf;":                            '\U000000AA',
    		"ordm;":                            '\U000000BA',
    		"origof;":                          '\U000022B6',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  9. plugin/pkg/auth/authorizer/node/metrics.go

    			Help:           "Histogram of duration of graph actions in node authorizer.",
    			StabilityLevel: metrics.ALPHA,
    			// Start with 0.1ms with the last bucket being [~200ms, Inf)
    			Buckets: metrics.ExponentialBuckets(0.0001, 2, 12),
    		},
    		[]string{"operation"},
    	)
    )
    
    var registerMetrics sync.Once
    
    // RegisterMetrics registers metrics for node package.
    func RegisterMetrics() {
    	registerMetrics.Do(func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 10 07:40:46 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  10. 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)
Back to top