Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Shards (0.19 sec)

  1. pkg/kubelet/kubelet_pods.go

    	}
    	return buffer.Bytes()
    }
    
    // truncatePodHostnameIfNeeded truncates the pod hostname if it's longer than 63 chars.
    func truncatePodHostnameIfNeeded(podName, hostname string) (string, error) {
    	// Cap hostname at 63 chars (specification is 64bytes which is 63 chars and the null terminating char).
    	const hostnameMaxLen = 63
    	if len(hostname) <= hostnameMaxLen {
    		return hostname, nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. src/net/http/transport_test.go

    	c.set.remove(c)
    	return c.Conn.Close()
    }
    
    // testConnSet tracks a set of TCP connections and whether they've
    // been closed.
    type testConnSet struct {
    	t      *testing.T
    	mu     sync.Mutex // guards closed and list
    	closed map[net.Conn]bool
    	list   []net.Conn // in order created
    }
    
    func (tcs *testConnSet) insert(c net.Conn) {
    	tcs.mu.Lock()
    	defer tcs.mu.Unlock()
    	tcs.closed[c] = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  3. src/net/http/server.go

    	// on this connection, if any.
    	lastMethod string
    
    	curReq atomic.Pointer[response] // (which has a Request in it)
    
    	curState atomic.Uint64 // packed (unixtime<<8|uint8(ConnState))
    
    	// mu guards hijackedv
    	mu sync.Mutex
    
    	// hijackedv is whether this connection has been hijacked
    	// by a Handler with the Hijacker interface.
    	// It is guarded by mu.
    	hijackedv bool
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  4. src/database/sql/sql.go

    // interfaces returned via that Conn, such as calls on Tx, Stmt,
    // Result, Rows)
    type driverConn struct {
    	db        *DB
    	createdAt time.Time
    
    	sync.Mutex  // guards following
    	ci          driver.Conn
    	needReset   bool // The connection session should be reset before use if true.
    	closed      bool
    	finalClosed bool // ci.Close has been called
    	openStmt    map[*driverStmt]bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  5. samples/addons/grafana.yaml

    uid":"${datasource}"},"refId":"A"}],"title":"Performance Dashboard Notes","type":"row"},{"gridPos":{"h":6,"w":24,"x":0,"y":1},"id":19,"links":[],"options":{"code":{"language":"plaintext","showLineNumbers":false,"showMiniMap":false},"content":"The charts on this dashboard are intended to show Istio main components cost in terms of resources utilization under steady load.\n\n- **vCPU / 1k rps:** shows vCPU utilization by the main Istio components normalized by 1000 requests/second. When idle or low...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  6. src/net/http/serve_test.go

    // Read and Write.
    type slowTestConn struct {
    	// over multiple calls to Read, time.Durations are slept, strings are read.
    	script []any
    	closec chan bool
    
    	mu     sync.Mutex // guards rd/wd
    	rd, wd time.Time  // read, write deadline
    	noopConn
    }
    
    func (c *slowTestConn) SetDeadline(t time.Time) error {
    	c.SetReadDeadline(t)
    	c.SetWriteDeadline(t)
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  7. src/runtime/proc.go

    // If the run queue is full, runnext puts g on the global queue.
    // Executed only by the owner P.
    func runqput(pp *p, gp *g, next bool) {
    	if !haveSysmon && next {
    		// A runnext goroutine shares the same time slice as the
    		// current goroutine (inheritTime from runqget). To prevent a
    		// ping-pong pair of goroutines from starving all others, we
    		// depend on sysmon to preempt "long-running goroutines". That
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top