Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for 0001 (0.07 sec)

  1. pkg/controller/disruption/disruption_test.go

    	}
    	add(t, dc.rcStore, rc)
    	dc.sync(ctx, pdbName)
    	// One RC and 200%>1% healthy => disruption allowed
    	ps.VerifyDisruptionAllowed(t, pdbName, 1)
    
    	rc, _ = newReplicationController(t, 1)
    	rc.Name = "rc 2"
    	for i := 0; i < podCount; i++ {
    		updatePodOwnerToRc(t, pods[i], rc)
    	}
    	add(t, dc.rcStore, rc)
    	dc.sync(ctx, pdbName)
    
    	// 100%>1% healthy BUT two RCs => no disruption allowed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  2. src/time/format.go

    				return layout[0:i], stdNumShortTZ, layout[i+3:]
    			}
    
    		case 'Z': // Z070000, Z07:00:00, Z0700, Z07:00,
    			if len(layout) >= i+7 && layout[i:i+7] == "Z070000" {
    				return layout[0:i], stdISO8601SecondsTZ, layout[i+7:]
    			}
    			if len(layout) >= i+9 && layout[i:i+9] == "Z07:00:00" {
    				return layout[0:i], stdISO8601ColonSecondsTZ, layout[i+9:]
    			}
    			if len(layout) >= i+5 && layout[i:i+5] == "Z0700" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K 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

    	{"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},
    }
    
    func TestDurationString(t *testing.T) {
    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. src/net/dnsclient_unix_test.go

    	"golang.org/x/net/dns/dnsmessage"
    )
    
    // Test address from 192.0.2.0/24 block, reserved by RFC 5737 for documentation.
    var TestAddr = [4]byte{0xc0, 0x00, 0x02, 0x01}
    
    // Test address from 2001:db8::/32 block, reserved by RFC 3849 for documentation.
    var TestAddr6 = [16]byte{0x20, 0x01, 0x0d, 0xb8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1}
    
    func mustNewName(name string) dnsmessage.Name {
    	nn, err := dnsmessage.NewName(name)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. pkg/kubelet/nodestatus/setters_test.go

    		},
    		{
    			name:              "cloud provider is external and nodeIP specified",
    			nodeIP:            netutils.ParseIPSloppy("10.0.0.1"),
    			nodeAddresses:     []v1.NodeAddress{},
    			cloudProviderType: cloudProviderExternal,
    			expectedAddresses: []v1.NodeAddress{
    				{Type: v1.NodeInternalIP, Address: "10.0.0.1"},
    				{Type: v1.NodeHostName, Address: testKubeletHostname},
    			},
    			shouldError: false,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener_test.go

    			FilterChains: []listenertest.FilterChainTest{
    				{
    					Name:           "0.0.0.0_8080",
    					Type:           listenertest.MTLSHTTP,
    					HTTPFilters:    httpFilters,
    					NetworkFilters: httpNetworkFilters,
    					TotalMatch:     true,
    				},
    				{
    					Name:           "0.0.0.0_8080",
    					Type:           listenertest.PlainTCP,
    					HTTPFilters:    httpFilters,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  10. pilot/pkg/model/virtualservice_test.go

    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/config/schema/kind"
    	"istio.io/istio/pkg/config/visibility"
    	"istio.io/istio/pkg/test/util/assert"
    	"istio.io/istio/pkg/util/sets"
    )
    
    const wildcardIP = "0.0.0.0"
    
    func TestMergeVirtualServices(t *testing.T) {
    	independentVs := config.Config{
    		Meta: config.Meta{
    			GroupVersionKind: gvk.VirtualService,
    			Name:             "virtual-service",
    			Namespace:        "default",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
Back to top