Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for 4m5s (0.34 sec)

  1. src/time/time_test.go

    	str string
    	d   Duration
    }{
    	{"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},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  2. tools/bug-report/pkg/testdata/output/multi_line_entries.log

    2020-06-29T23:37:27.287895Z	info	Effective config: binaryPath: /usr/local/bin/envoy
    configPath: ./etc/istio/proxy
    discoveryAddress: istiod.istio-system.svc:15012
    drainDuration: 45s
    envoyAccessLogService: {}
    envoyMetricsService: {}
    parentShutdownDuration: 60s
    proxyAdminPort: 15000
    proxyMetadata:
      DNS_AGENT: ""
    serviceCluster: istio-ingressgateway
    statNameLength: 189
    statusPort: 15020
    tracing:
      zipkin:
        address: zipkin.istio-system:9411
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 01 20:55:53 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  3. istioctl/pkg/metrics/metrics_test.go

    	expectedOutput := `                                  WORKLOAD    TOTAL RPS    ERROR RPS  P50 LATENCY  P90 LATENCY  P99 LATENCY
                                       details        0.040        0.000          2ms          4ms          4ms
    `
    	if output != expectedOutput {
    		t.Fatalf("Unexpected output; got:\n %q\nwant:\n %q", output, expectedOutput)
    	}
    }
    
    func (client mockPromAPI) Alerts(ctx context.Context) (promv1.AlertsResult, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 02:07:44 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  4. tools/bug-report/pkg/testdata/input/ingress.log

    accessLogFile: /dev/stdout
    accessLogFormat: ""
    defaultConfig:
      concurrency: 2
      configPath: ./etc/istio/proxy
      connectTimeout: 10s
      controlPlaneAuthPolicy: NONE
      discoveryAddress: istiod.istio-system.svc:15012
      drainDuration: 45s
      parentShutdownDuration: 1m0s
      proxyAdminPort: 15000
      proxyMetadata:
        DNS_AGENT: ""
      serviceCluster: istio-proxy
      tracing:
        zipkin:
          address: zipkin.istio-system:9411
    enablePrometheusMerge: false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 03 15:51:03 UTC 2020
    - 11K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/ast/inspector/typeof.go

    //	- type switch					4.9-5.5ms	2.1ms
    //	- binary search over a sorted list of types	5.5-5.9ms	2.5ms
    //	- linear scan, frequency-ordered list		5.9-6.1ms	2.7ms
    //	- linear scan, unordered list			6.4ms		2.7ms
    //	- hash table					6.5ms		3.1ms
    //
    // A perfect hash seemed like overkill.
    //
    // The compiler's switch statement is the clear winner
    // as it produces a binary tree in code,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. pkg/kube/krt/README.md

    While the numbers are likely to change over time, at the time of writing the overhead for `krt` is roughly 10%:
    
    ```text
    name                  time/op
    Controllers/krt-8     13.4ms ±23%
    Controllers/legacy-8  11.4ms ± 6%
    
    name                  alloc/op
    Controllers/krt-8     15.2MB ± 0%
    Controllers/legacy-8  12.9MB ± 0%
    ```
    
    ### Future work
    
    #### Object optimizations
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 17:21:50 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/conversion/webhook_converter.go

    	// Only log conversion webhook traces that exceed a 8ms per object limit plus a 50ms request overhead allowance.
    	// The per object limit uses the SLO for conversion webhooks (~4ms per object) plus time to serialize/deserialize
    	// the conversion request on the apiserver side (~4ms per object).
    	defer span.End(time.Duration(50+8*objCount) * time.Millisecond)
    
    	// TODO: Figure out if adding one second timeout make sense here.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 19:37:55 UTC 2023
    - 20.6K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/v1beta3/doc.go

    //	    mountPath: "/etc/some-pod-path"
    //	    readOnly: false
    //	    pathType: File
    //	  certSANs:
    //	  - "10.100.1.1"
    //	  - "ec2-10-100-0-1.compute-1.amazonaws.com"
    //	  timeoutForControlPlane: 4m0s
    //	controllerManager:
    //	  extraArgs:
    //	    "node-cidr-mask-size": "20"
    //	  extraVolumes:
    //	  - name: "some-volume"
    //	    hostPath: "/etc/some-path"
    //	    mountPath: "/etc/some-pod-path"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 05 13:30:26 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  9. pkg/test/kube/util.go

    		msg := "Ready"
    		if e := istioKube.CheckPodReadyOrComplete(&p); e != nil {
    			msg = e.Error()
    			err = multierror.Append(err, fmt.Errorf("%s/%s: %s", p.Namespace, p.Name, msg))
    		}
    		scopes.Framework.Infof("  [%2d] %45s %15s (%v)", i, p.Name, p.Status.Phase, msg)
    	}
    
    	if err != nil {
    		return nil, err
    	}
    
    	return fetched, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 22:47:52 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/v1beta4/doc.go

    //	    mountPath: "/etc/some-pod-path"
    //	    readOnly: false
    //	    pathType: File
    //	  certSANs:
    //	  - "10.100.1.1"
    //	  - "ec2-10-100-0-1.compute-1.amazonaws.com"
    //	  timeoutForControlPlane: 4m0s
    //	controllerManager:
    //	  extraArgs:
    //	    "node-cidr-mask-size": "20"
    //	  extraVolumes:
    //	  - name: "some-volume"
    //	    hostPath: "/etc/some-path"
    //	    mountPath: "/etc/some-pod-path"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top