Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 93 for 1e15 (0.09 sec)

  1. src/runtime/netpoll_windows.go

    		return gList{}, 0
    	}
    
    	var entries [64]overlappedEntry
    	var wait uint32
    	var toRun gList
    	mp := getg().m
    
    	if delay >= 1e15 {
    		// An arbitrary cap on how long to wait for a timer.
    		// 1e15 ns == ~11.5 days.
    		delay = 1e15
    	}
    
    	if delay > 0 && mp.waitIocpHandle != 0 {
    		// GetQueuedCompletionStatusEx doesn't use a high resolution timer internally,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. src/runtime/netpoll_epoll.go

    	var waitms int32
    	if delay < 0 {
    		waitms = -1
    	} else if delay == 0 {
    		waitms = 0
    	} else if delay < 1e6 {
    		waitms = 1
    	} else if delay < 1e15 {
    		waitms = int32(delay / 1e6)
    	} else {
    		// An arbitrary cap on how long to wait for a timer.
    		// 1e9 ms == ~11.5 days.
    		waitms = 1e9
    	}
    	var events [128]syscall.EpollEvent
    retry:
    	n, errno := syscall.EpollWait(epfd, events[:], int32(len(events)), waitms)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. src/runtime/netpoll_aix.go

    	} else if delay == 0 {
    		// TODO: call poll with timeout == 0
    		return gList{}, 0
    	} else if delay < 1e6 {
    		timeout = 1
    	} else if delay < 1e15 {
    		timeout = uintptr(delay / 1e6)
    	} else {
    		// An arbitrary cap on how long to wait for a timer.
    		// 1e9 ms == ~11.5 days.
    		timeout = 1e9
    	}
    retry:
    	lock(&mtxpoll)
    	lock(&mtxset)
    	pendingUpdates = 0
    	unlock(&mtxpoll)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. src/log/slog/value_test.go

    	}
    }
    
    func TestValueTime(t *testing.T) {
    	// Validate that all representations of times work correctly.
    	for _, tm := range []time.Time{
    		time.Time{},
    		time.Unix(0, 1e15), // UnixNanos is defined
    		time.Date(2300, 1, 1, 0, 0, 0, 0, time.UTC), // overflows UnixNanos
    	} {
    		got := TimeValue(tm).Time()
    		if !got.Equal(tm) {
    			t.Errorf("got %s (%#[1]v), want %s (%#[2]v)", got, tm)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/measurement/measurement.go

    		{"GCU", []string{"gcu"}, 1},
    		{"k*GCU", []string{"kilogcu"}, 1e3},
    		{"M*GCU", []string{"megagcu"}, 1e6},
    		{"G*GCU", []string{"gigagcu"}, 1e9},
    		{"T*GCU", []string{"teragcu"}, 1e12},
    		{"P*GCU", []string{"petagcu"}, 1e15},
    	},
    	DefaultUnit: Unit{"GCU", []string{}, 1.0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		{"1E6", decQuantity(1, 6, DecimalExponent)},
    		{"1e9", decQuantity(1, 9, DecimalExponent)},
    		{"1E12", decQuantity(1, 12, DecimalExponent)},
    		{"1e15", decQuantity(1, 15, DecimalExponent)},
    		{"1E18", decQuantity(1, 18, DecimalExponent)},
    
    		// Nonstandard but still parsable
    		{"1e14", decQuantity(1, 14, DecimalExponent)},
    		{"1e13", decQuantity(1, 13, DecimalExponent)},
    		{"1e3", decQuantity(1, 3, DecimalExponent)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  7. pkg/test/framework/resource/version_test.go

    		version  IstioVersion
    		result   bool
    	}{
    		{
    			"not at least",
    			makeRevVerMap("1.4", "1.5"),
    			IstioVersion("1.8"),
    			false,
    		},
    		{
    			"tied with minimum",
    			makeRevVerMap("1.4", "1.5"),
    			IstioVersion("1.4"),
    			true,
    		},
    		{
    			"lower than minimum",
    			makeRevVerMap("1.4", "1.5"),
    			IstioVersion("1.3"),
    			true,
    		},
    		{
    			"no versions",
    			makeRevVerMap(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. manifests/addons/dashboards/istio-extension-dashboard.json

              "placement": "bottom",
              "showLegend": true
            },
            "tooltip": {
              "mode": "multi",
              "sort": "none"
            }
          },
          "pluginVersion": "10.1.5",
          "targets": [
            {
              "datasource": {
                "type": "prometheus",
                "uid": "${datasource}"
              },
              "expr": "avg(envoy_wasm_envoy_wasm_runtime_null_active)",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 20K bytes
    - Viewed (0)
  9. manifests/addons/dashboards/istio-mesh-dashboard.json

            "mode": "html"
          },
          "pluginVersion": "10.1.5",
          "style": {
            "font-size": "18pt"
          },
          "targets": [
            {
              "datasource": {
                "type": "prometheus",
                "uid": "${datasource}"
              },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 02:28:01 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  10. manifests/addons/dashboards/istio-performance-dashboard.json

            "mode": "markdown"
          },
          "pluginVersion": "10.1.5",
          "title": "Performance Dashboard README",
          "transparent": true,
          "type": "text"
        },
        {
          "collapsed": false,
          "datasource": {
            "type": "prometheus",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 39.6K bytes
    - Viewed (0)
Back to top