Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 219 for Paused (0.18 sec)

  1. docs/changelogs/changelog_3x.md

        bug where shutdown HTTP/2 connections were considered usable. This caused
        infinite loops when calls attempted to recover.
    
    
    ## Version 3.4.1
    
    _2016-07-10_
    
     *  **Fix a major bug in encoding HTTP headers.** In 3.4.0 and 3.4.0-RC1 OkHttp
        had an off-by-one bug in our HPACK encoder. This bug could have caused the
        wrong headers to be emitted after a sequence of HTTP/2 requests! Everyone
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  2. src/go/parser/parser.go

    	if p.nestLev > maxNestLev {
    		p.error(p.pos, "exceeded max nesting depth")
    		panic(bailout{})
    	}
    	return p
    }
    
    // decNestLev is used to track nesting depth during parsing to prevent stack exhaustion.
    // It is used along with incNestLev in a similar fashion to how un and trace are used.
    func decNestLev(p *parser) {
    	p.nestLev--
    }
    
    // Advance to the next token.
    func (p *parser) next0() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/reflect/TypeToken.java

       * bounds is not easy. For now we punt, hoping that this defect should rarely cause issues in real
       * code.
       *
       * @param formalType is {@code Foo<formalType>} a supertype of {@code Foo<T>}?
       * @param declaration The type variable in the context of a parameterized type. Used to infer type
       *     bound when {@code formalType} is a wildcard with implicit upper bound.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  4. src/reflect/type.go

    	if u == nil {
    		panic("reflect: nil type passed to Type.Implements")
    	}
    	if u.Kind() != Interface {
    		panic("reflect: non-interface type passed to Type.Implements")
    	}
    	return implements(u.common(), t.common())
    }
    
    func (t *rtype) AssignableTo(u Type) bool {
    	if u == nil {
    		panic("reflect: nil type passed to Type.AssignableTo")
    	}
    	uu := u.common()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/reflect/TypeToken.java

       * bounds is not easy. For now we punt, hoping that this defect should rarely cause issues in real
       * code.
       *
       * @param formalType is {@code Foo<formalType>} a supertype of {@code Foo<T>}?
       * @param declaration The type variable in the context of a parameterized type. Used to infer type
       *     bound when {@code formalType} is a wildcard with implicit upper bound.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            List<Throwable> causes = new ArrayList<Throwable>()
            while (exception != null) {
                causes.add(exception)
                exception = exception.cause
            }
            assertThat(causes, CoreMatchers.hasItem(hasMessage(startsWith(message))))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

            }
        }
    
        private static List<Failure> toFailures(List<? extends InternalFailure> causes) {
            if (causes == null) {
                return null;
            }
            List<Failure> failures = new ArrayList<>();
            for (InternalFailure cause : causes) {
                failures.add(toFailure(cause));
            }
            return failures;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  8. pkg/controller/job/job_controller.go

    		if oldADS == nil || *oldADS != *curADS {
    			passed := jm.clock.Since(curJob.Status.StartTime.Time)
    			total := time.Duration(*curADS) * time.Second
    			// AddAfter will handle total < passed
    			jm.queue.AddAfter(key, total-passed)
    			logger.V(4).Info("job's ActiveDeadlineSeconds updated, will rsync", "key", key, "interval", total-passed)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_client_test.go

    // s_client` process.
    type opensslInputEvent int
    
    const (
    	// opensslRenegotiate causes OpenSSL to request a renegotiation of the
    	// connection.
    	opensslRenegotiate opensslInputEvent = iota
    
    	// opensslSendBanner causes OpenSSL to send the contents of
    	// opensslSentinel on the connection.
    	opensslSendSentinel
    
    	// opensslKeyUpdate causes OpenSSL to send a key update message to the
    	// client and request one back.
    	opensslKeyUpdate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  10. src/cmd/internal/testdir/testdir_test.go

    )
    
    var types2Failures32Bit = setOf(
    	"printbig.go",             // large untyped int passed to print (32-bit)
    	"fixedbugs/bug114.go",     // large untyped int passed to println (32-bit)
    	"fixedbugs/issue23305.go", // large untyped int passed to println (32-bit)
    )
    
    // In all of these cases, the 1.17 compiler reports reasonable errors, but either the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
Back to top