Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 61 for npidle (0.13 sec)

  1. pilot/pkg/networking/grpcgen/grpcecho_test.go

    		cw := tt.dialEcho("xds:///echo-app.default.svc.cluster.local:7070")
    		distribution := map[string]int{}
    		for i := 0; i < 100; i++ {
    			res, err := cw.Echo(context.Background(), &proto.EchoRequest{Message: "needle"})
    			if err != nil {
    				return err
    			}
    			distribution[res.Version]++
    		}
    
    		if err := expectAlmost(distribution["v1"], 20); err != nil {
    			return err
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. src/runtime/tracestatus.go

    func (w traceWriter) writeProcStatusForP(pp *p, inSTW bool) traceWriter {
    	if !pp.trace.acquireStatus(w.gen) {
    		return w
    	}
    	var status traceProcStatus
    	switch pp.status {
    	case _Pidle, _Pgcstop:
    		status = traceProcIdle
    		if pp.status == _Pgcstop && inSTW {
    			// N.B. a P that is running and currently has the world stopped will be
    			// in _Pgcstop, but we model it as running in the tracer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. cmd/metrics-resource.go

    	interfaceTxErrors MetricName = "tx_errors"
    
    	// cpu stats
    	cpuUser       MetricName = "user"
    	cpuSystem     MetricName = "system"
    	cpuIOWait     MetricName = "iowait"
    	cpuIdle       MetricName = "idle"
    	cpuNice       MetricName = "nice"
    	cpuSteal      MetricName = "steal"
    	cpuLoad1      MetricName = "load1"
    	cpuLoad5      MetricName = "load5"
    	cpuLoad15     MetricName = "load15"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 17 15:15:13 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  4. src/net/tcpconn_keepalive_conf_solaris_test.go

    		Enable:   true,
    		Idle:     20 * time.Second,
    		Interval: -1,
    		Count:    10,
    	},
    	{
    		Enable:   true,
    		Idle:     20 * time.Second,
    		Interval: 10 * time.Second,
    		Count:    -1,
    	},
    	{
    		Enable:   true,
    		Idle:     -1,
    		Interval: -1,
    		Count:    10,
    	},
    	{
    		Enable:   true,
    		Idle:     -1,
    		Interval: 10 * time.Second,
    		Count:    -1,
    	},
    	{
    		Enable:   true,
    		Idle:     20 * time.Second,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/cases/context.go

    	offset := 2 + e[0]&lengthMask // size of header + fold string
    
    	nFirst := (e[1] >> lengthBits) & lengthMask
    	if nTitle := e[1] & lengthMask; nTitle != noChange {
    		if nFirst != noChange {
    			e = e[nFirst:]
    		}
    		return c.writeString(e[offset : offset+nTitle])
    	}
    	if ct == cLower && nFirst != noChange {
    		// Use the uppercase version instead.
    		return c.writeString(e[offset : offset+nFirst])
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. src/strings/strings_test.go

    	{"", "a", false},
    
    	// cases to cover code in runtime/asm_amd64.s:indexShortStr
    	// 2-byte needle
    	{"xxxxxx", "01", false},
    	{"01xxxx", "01", true},
    	{"xx01xx", "01", true},
    	{"xxxx01", "01", true},
    	{"01xxxxx"[1:], "01", false},
    	{"xxxxx01"[:6], "01", false},
    	// 3-byte needle
    	{"xxxxxxx", "012", false},
    	{"012xxxx", "012", true},
    	{"xx012xx", "012", true},
    	{"xxxx012", "012", true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

        const char* needle_expr, const char* haystack_expr,
        const char* needle, const char* haystack);
    GTEST_API_ AssertionResult IsSubstring(
        const char* needle_expr, const char* haystack_expr,
        const wchar_t* needle, const wchar_t* haystack);
    GTEST_API_ AssertionResult IsNotSubstring(
        const char* needle_expr, const char* haystack_expr,
        const char* needle, const char* haystack);
    GTEST_API_ AssertionResult IsNotSubstring(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        set("b", "b", "b")
        while (taskFaker.isIdle()) {
          assertValue("a", "a", "a")
          assertValue("b", "b", "b")
        }
      }
    
      @ParameterizedTest
      @ArgumentsSource(FileSystemParamProvider::class)
      fun rebuildJournalOnRepeatedEdits(parameters: Pair<FileSystem, Boolean>) {
        setUp(parameters.first, parameters.second)
        while (taskFaker.isIdle()) {
          set("a", "a", "a")
          set("b", "b", "b")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  9. src/net/tcpsock_windows.go

    		if err := setKeepAliveIdle(c.fd, config.Idle); err != nil {
    			return &OpError{Op: "set", Net: c.fd.net, Source: c.fd.laddr, Addr: c.fd.raddr, Err: err}
    		}
    		if err := setKeepAliveInterval(c.fd, config.Interval); err != nil {
    			return &OpError{Op: "set", Net: c.fd.net, Source: c.fd.laddr, Addr: c.fd.raddr, Err: err}
    		}
    	} else if err := setKeepAliveIdleAndInterval(c.fd, config.Idle, config.Interval); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:35 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. releasenotes/notes/set-tcp-idle-timeout-in-http-clusters.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue: []
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 11 03:37:28 UTC 2024
    - 168 bytes
    - Viewed (0)
Back to top