Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for growing (0.47 sec)

  1. pilot/pkg/model/push_context.go

    // to avoid passing around large objects - like full list of endpoints for a registry,
    // or the full list of endpoints for a service across registries, since it limits
    // scalability.
    //
    // Future optimizations will include grouping the endpoints by labels, gateway or region to
    // reduce the time when subsetting or split-horizon is used. This design assumes pilot
    // tracks all endpoints in the mesh and they fit in RAM - so limit is few M endpoints.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  2. src/crypto/tls/conn.go

    )
    
    // maxPayloadSizeForWrite returns the maximum TLS payload size to use for the
    // next application data record. There is the following trade-off:
    //
    //   - For latency-sensitive applications, such as web browsing, each TLS
    //     record should fit in one TCP segment.
    //   - For throughput-sensitive applications, such as large file transfers,
    //     larger TLS records better amortize framing and encryption overheads.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/scheduling_queue.go

    	}
    	return result
    }
    
    var pendingPodsSummary = "activeQ:%v; backoffQ:%v; unschedulablePods:%v"
    
    // PendingPods returns all the pending pods in the queue; accompanied by a debugging string
    // recording showing the number of pods in each queue respectively.
    // This function is used for debugging purposes in the scheduler cache dumper and comparer.
    func (p *PriorityQueue) PendingPods() ([]*v1.Pod, string) {
    	p.lock.RLock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/load.go

    	SilenceMissingStdImports bool
    
    	// SilenceNoGoErrors indicates that LoadPackages should not print
    	// imports.ErrNoGo errors.
    	// This allows the caller to invoke LoadPackages (and report other errors)
    	// without knowing whether the requested packages exist for the given tags.
    	//
    	// Note that if a requested package does not exist *at all*, it will fail
    	// during module resolution and the error will not be suppressed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  5. src/net/http/transport.go

    		// We send an "Expect: 100-continue" header, but the server
    		// responded with a terminal status and no 100 Continue.
    		//
    		// If we're going to keep using the connection, we need to send the request body.
    		// Tell writeLoop to skip sending the body if we're going to close the connection,
    		// or to send it otherwise.
    		//
    		// The case where we receive a 101 Switching Protocols response is a bit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top