Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 404 for dropped (0.16 sec)

  1. docs/changelogs/changelog_2x.md

     *  New: Buffer WebSocket frames for better performance.
     *  New: Drop support for `TLS_DHE_DSS_WITH_AES_128_CBC_SHA`, our only remaining
        DSS cipher suite. This is consistent with Firefox and Chrome which have also
        dropped these cipher suite.
    
    ## Version 2.5.0
    
    _2015-08-25_
    
     *  **Timeouts now default to 10 seconds.** Previously we defaulted to never
        timing out, and that was a lousy policy. If establishing a connection,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  2. src/text/template/parse/node.go

    	return n.tr
    }
    
    func (n *NilNode) Copy() Node {
    	return n.tr.newNil(n.Pos)
    }
    
    // FieldNode holds a field (identifier starting with '.').
    // The names may be chained ('.x.y').
    // The period is dropped from each ident.
    type FieldNode struct {
    	NodeType
    	Pos
    	tr    *Tree
    	Ident []string // The identifiers in lexical order.
    }
    
    func (t *Tree) newField(pos Pos, ident string) *FieldNode {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. src/io/io.go

    // If min is greater than the length of buf, ReadAtLeast returns [ErrShortBuffer].
    // On return, n >= min if and only if err == nil.
    // If r returns an error having read at least min bytes, the error is dropped.
    func ReadAtLeast(r Reader, buf []byte, min int) (n int, err error) {
    	if len(buf) < min {
    		return 0, ErrShortBuffer
    	}
    	for n < min && err == nil {
    		var nn int
    		nn, err = r.Read(buf[n:])
    		n += nn
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:34:10 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  4. src/runtime/mgcpacer_test.go

    // amplitude amp, followed by zeroes.
    //
    // In another manner of speaking, this is the Kronecker delta.
    func unit(amp float64) float64Stream {
    	dropped := false
    	return func() float64 {
    		if dropped {
    			return 0
    		}
    		dropped = true
    		return amp
    	}
    }
    
    // oscillate returns a stream that oscillates sinusoidally
    // with the given amplitude, phase, and period.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 13:53:21 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  5. pkg/workloadapi/workload.proto

        // This can be used, for instance, to keep traffic ONLY within the same cluster/node/region.
        // This should be used with caution, as it can result in all traffic being dropped if there is no matching endpoints,
        // even if there are endpoints outside of the preferences.
        STRICT = 1;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json.go

    		}
    		return nil, nil
    	}
    
    	if s.options.Yaml {
    		// In strict mode pass the original data through the YAMLToJSONStrict converter.
    		// This is done to catch duplicate fields in YAML that would have been dropped in the original YAMLToJSON conversion.
    		// TODO: rework YAMLToJSONStrict to return warnings about duplicate fields without terminating so we don't have to do this twice.
    		_, err := yaml.YAMLToJSONStrict(originalData)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 25 16:08:07 UTC 2022
    - 12K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go

    	{20, "SIGWINCH", "window changed"},
    	{21, "SIGURG", "urgent I/O condition"},
    	{22, "SIGIO", "I/O possible"},
    	{23, "SIGSTOP", "stopped (signal)"},
    	{24, "SIGTSTP", "stopped"},
    	{25, "SIGCONT", "continued"},
    	{26, "SIGTTIN", "stopped (tty input)"},
    	{27, "SIGTTOU", "stopped (tty output)"},
    	{28, "SIGVTALRM", "virtual timer expired"},
    	{29, "SIGPROF", "profiling timer expired"},
    	{30, "SIGXCPU", "CPU time limit exceeded"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/eventbus/EventBus.java

     *       alternatives.
     *   <li>It imposes requirements on the lifecycle of its subscribers. For example, if an event
     *       occurs between when one subscriber is removed and the next subscriber is added, the event
     *       is dropped.
     *   <li>Its performance is suboptimal, especially under Android.
     *   <li>It <a href="https://github.com/google/guava/issues/1431">doesn't support parameterized
     *       types</a>.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 17 16:01:41 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness.go

    	longRunningRequestCheck apirequest.LongRunningRequestCheck
    	fcIfc                   utilflowcontrol.Interface
    	workEstimator           flowcontrolrequest.WorkEstimatorFunc
    
    	// droppedRequests tracks the history of dropped requests for
    	// the purpose of computing RetryAfter header to avoid system
    	// overload.
    	droppedRequests utilflowcontrol.DroppedRequestsTracker
    
    	// newReqWaitCtxFn creates a derived context with a deadline
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    	)
    	// TLSHandshakeErrors is a number of requests dropped with 'TLS handshake error from' error
    	TLSHandshakeErrors = compbasemetrics.NewCounter(
    		&compbasemetrics.CounterOpts{
    			Subsystem:      APIServerComponent,
    			Name:           "tls_handshake_errors_total",
    			Help:           "Number of requests dropped with 'TLS handshake error from' error",
    			StabilityLevel: compbasemetrics.ALPHA,
    		},
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K bytes
    - Viewed (0)
Back to top