Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 67 for crack (0.08 sec)

  1. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

      }
    
      /**
       * We had a bug where we'd perform infinite retries of route that fail with connection shutdown
       * errors. The problem was that the logic that decided whether to reuse a route didn't track
       * certain HTTP/2 errors. https://github.com/square/okhttp/issues/5547
       */
      @ParameterizedTest
      @ArgumentsSource(ProtocolParamProvider::class)
      fun noRecoveryFromTwoRefusedStreams(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

              "apiVersion": {
                "description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.",
                "type": "string"
              },
              "fieldsType": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  3. src/crypto/tls/conn.go

    	scts             [][]byte // signed certificate timestamps from server
    	peerCertificates []*x509.Certificate
    	// activeCertHandles contains the cache handles to certificates in
    	// peerCertificates that are used to track active references.
    	activeCertHandles []*activeCert
    	// verifiedChains contains the certificate chains that we built, as
    	// opposed to the ones presented by the server.
    	verifiedChains [][]*x509.Certificate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/prove.go

    var noLimit = limit{math.MinInt64, math.MaxInt64, 0, math.MaxUint64}
    
    // a limitFact is a limit known for a particular value.
    type limitFact struct {
    	vid   ID
    	limit limit
    }
    
    // factsTable keeps track of relations between pairs of values.
    //
    // The fact table logic is sound, but incomplete. Outside of a few
    // special cases, it performs no deduction or arithmetic. While there
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types/type.go

    func (t *Type) setFields(fields []*Field) {
    	// If we've calculated the width of t before,
    	// then some other type such as a function signature
    	// might now have the wrong type.
    	// Rather than try to track and invalidate those,
    	// enforce that SetFields cannot be called once
    	// t's width has been calculated.
    	if t.widthCalculated() {
    		base.Fatalf("SetFields of %v: width previously calculated", t)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/runtime/framework.go

    		}
    		if disabledSet.Has("*") {
    			logger.V(4).Info("Skipped MultiPoint expansion because all plugins are disabled for extension point", "extension", pluginType)
    			continue
    		}
    
    		// track plugins enabled via multipoint separately from those enabled by specific extensions,
    		// so that we can distinguish between double-registration and explicit overrides
    		multiPointEnabled := newOrderedSet()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  7. src/runtime/mprof.go

    // guarded by GODEBUG for now. Set GODEBUG=runtimecontentionstacks=1 to enable.
    //
    // TODO(rhysh): plumb through the delay duration, remove GODEBUG, update comment
    //
    // The M will track this by storing a pointer to the lock; lock/unlock pairs for
    // runtime-internal locks are always on the same M.
    //
    // Together, that demands several steps for recording contention. First, when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"apiVersion":  "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  9. src/regexp/syntax/parse.go

    	if p.size == nil {
    		// We haven't started tracking size yet.
    		// Do a relatively cheap check to see if we need to start.
    		// Maintain the product of all the repeats we've seen
    		// and don't track if the total number of regexp nodes
    		// we've seen times the repeat product is in budget.
    		if p.repeats == 0 {
    			p.repeats = 1
    		}
    		if re.Op == OpRepeat {
    			n := re.Max
    			if n == -1 {
    				n = re.Min
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  10. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      optional string operation = 2;
    
      // APIVersion defines the version of this resource that this field set
      // applies to. The format is "group/version" just like the top-level
      // APIVersion field. It is necessary to track the version of a field
      // set because it cannot be automatically converted.
      optional string apiVersion = 3;
    
      // Time is the timestamp of when the ManagedFields entry was added. The
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top