Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 56 for 0010 (0.19 sec)

  1. istioctl/pkg/writer/compare/testdata/configdump.json

                  "@type": "type.googleapis.com/envoy.config.listener.v3.Listener",
                  "name": "connect_terminate",
                  "address": {
                    "socket_address": {
                      "address": "0.0.0.0",
                      "port_value": 15008
                    }
                  },
                  "filter_chains": [
                    {
                      "filters": [
                        {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 52K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/compare/testdata/configdump_diff.json

                  "@type": "type.googleapis.com/envoy.config.listener.v3.Listener",
                  "name": "connect_terminate",
                  "address": {
                    "socket_address": {
                      "address": "0.0.0.0",
                      "port_value": 15008
                    }
                  },
                  "filter_chains": [
                    {
                      "filters": [
                        {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    										{Name: "http-filter-to-be-removed"},
    									},
    								}),
    							},
    						},
    					},
    				},
    				{
    					FilterChainMatch: &listener.FilterChainMatch{
    						AddressSuffix: "0.0.0.0",
    					},
    					Filters: []*listener.Filter{
    						{Name: "network-filter-should-not-be-replaced"},
    					},
    				},
    				{
    					FilterChainMatch: &listener.FilterChainMatch{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  4. src/time/time_test.go

    }{
    	{"0s", 0},
    	{"1ns", 1 * Nanosecond},
    	{"1.1µs", 1100 * Nanosecond},
    	{"2.2ms", 2200 * Microsecond},
    	{"3.3s", 3300 * Millisecond},
    	{"4m5s", 4*Minute + 5*Second},
    	{"4m5.001s", 4*Minute + 5001*Millisecond},
    	{"5h6m7.001s", 5*Hour + 6*Minute + 7001*Millisecond},
    	{"8m0.000000001s", 8*Minute + 1*Nanosecond},
    	{"2562047h47m16.854775807s", 1<<63 - 1},
    	{"-2562047h47m16.854775808s", -1 << 63},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		{"9.01", 0, decQuantity(10, 0, DecimalSI), false},
    		{"9.01", 1, decQuantity(10, 0, DecimalSI), false},
    		{"9.01", 2, decQuantity(100, 0, DecimalSI), false},
    
    		{"-9.01", -3, decQuantity(-901, -2, DecimalSI), true},
    		{"-9.01", -2, decQuantity(-901, -2, DecimalSI), true},
    		{"-9.01", -1, decQuantity(-91, -1, DecimalSI), false},
    		{"-9.01", 0, decQuantity(-10, 0, DecimalSI), false},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"self.val1.lowerAscii() == 'rook takes 👑'":         6,
    				"self.val1.lowerAscii() == self.val1.lowerAscii()": 10,
    				// strings version 2
    				"'%d %s %f %s %s'.format([1, 'abc', 1.0, duration('1m'), timestamp('2000-01-01T00:00:00.000Z')]) == '1 abc 1.000000 60s 2000-01-01T00:00:00Z'": 6,
    				"'%e'.format([3.14]) == '3.140000 × 10⁰⁰'":        3,
    				"'%o %o %o'.format([7, 8, 9]) == '7 10 11'":       2,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/css/manual.css

    #header .details br+span:before {
    	content: "\00a0\2013\00a0";
    }
    
    #header .details br+span.author:before {
    	content: "\00a0\22c5\00a0";
    	color: var(--header-color);
    }
    
    #header .details br+span#revremark:before {
    	content: "\00a0|\00a0";
    }
    
    #header #revnumber {
    	text-transform: capitalize;
    }
    
    #header #revnumber:after {
    	content: "\00a0";
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  8. src/net/dnsclient_unix_test.go

    				Questions: q.Questions,
    			}
    			return r, nil
    		},
    		alwaysTCP: true,
    	}
    	r := Resolver{PreferGo: true, Dial: fake.DialContext}
    	ctx := context.Background()
    	_, _, err := r.exchange(ctx, "0.0.0.0", mustQuestion("com.", dnsmessage.TypeALL, dnsmessage.ClassINET), time.Second, useUDPOrTCP, false)
    	if err != nil {
    		t.Fatal("exchange failed:", err)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  9. cluster/gce/windows/k8s-node-setup.psm1

        }
      }
      if (-not $hns_endpoint) {
        $hns_endpoint = New-HnsEndpoint `
            -NetworkId ${hns_network}.Id `
            -Name ${endpoint_name} `
            -IPAddress ${pod_endpoint_gateway} `
            -Gateway "0.0.0.0" `
            -Verbose
        # TODO(pjh): find out: why is this always CompartmentId 1?
        Attach-HnsHostEndpoint `
            -EndpointID ${hns_endpoint}.Id `
            -CompartmentID 1 `
            -Verbose
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

      // def : Pat<(TensorListSetItem($input_handle, $index, $item)),
      //           (XlaDynamicUpdateSlice($input_handle, ExpandDims($item, 0),
      //              Concat(ExpandDims($index, 0), [0, 0, 0, ...])))>
      LogicalResult matchAndRewriteImplWithDynamicUpdateSlice(
          TF::TensorListSetItemOp op, OpAdaptor adaptor,
          ConversionPatternRewriter &rewriter) const {
        Location loc = op.getLoc();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
Back to top