Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 628 for recovery (0.81 sec)

  1. docs/changelogs/changelog_3x.md

     *  Fix: Handle 'Expect: 100 Continue' properly in MockWebServer.
    
    
    ## Version 3.8.1
    
    _2017-06-18_
    
     *  Fix: Recover gracefully from stale coalesced connections. We had a bug where
        connection coalescing (introduced in OkHttp 3.7.0) and stale connection
        recovery could interact to cause a `NoSuchElementException` crash in the
        `RouteSelector`.
    
    
    ## Version 3.8.0
    
    _2017-05-13_
    
    
    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/runtime/stack_test.go

    func TestPanicUseStack(t *testing.T) {
    	pc := make([]uintptr, 10000)
    	defer func() {
    		recover()
    		Callers(0, pc) // force stack walk
    		useStackAndCall(100, func() {
    			defer func() {
    				recover()
    				Callers(0, pc) // force stack walk
    				useStackAndCall(200, func() {
    					defer func() {
    						recover()
    						Callers(0, pc) // force stack walk
    					}()
    					panic(3)
    				})
    			}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  3. docs/changelogs/changelog_4x.md

        exception the callback is now notified that the call was canceled. The exception is still sent
        to the uncaught exception handler for reporting and recovery.
    
     *  Fix: Un-deprecate `MockResponse.setHeaders()` and other setters. These were deprecated in OkHttp
        4.0 but that broke method chaining for Java callers.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  4. src/crypto/ecdsa/ecdsa.go

    		// (0, N). These are the most dangerous lines in the package and maybe in
    		// the library: a single bit of bias in the selection of nonces would likely
    		// lead to key recovery, but no tests would fail. Look but DO NOT TOUCH.
    		if excess := len(b)*8 - c.N.BitLen(); excess > 0 {
    			// Just to be safe, assert that this only happens for the one curve that
    			// doesn't have a round number of bits.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  5. plugin/pkg/admission/noderestriction/admission_test.go

    				"15G", nil,
    			),
    			expectError: "is not allowed to update fields other than",
    		},
    		{
    			name: "should allow updates to allocatedResources with expansion and recovery enabled",
    			oldObj: makeTestPVC(
    				api.PersistentVolumeClaimResizing,
    				"10G", nil,
    			),
    			subresource:             "status",
    			expansionFeatureEnabled: true,
    			recoveryFeatureEnabled:  true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  6. test/recover4.go

    )
    
    func memcopy(dst, src []byte) (n int, err error) {
    	defer func() {
    		if r, ok := recover().(error); ok {
    			err = r
    		}
    	}()
    
    	for i := 0; i < len(dst) && i < len(src); i++ {
    		dst[i] = src[i]
    		n++
    	}
    	return
    }
    
    func main() {
    	// Turn the eventual fault into a panic, not a program crash,
    	// so that memcopy can recover.
    	debug.SetPanicOnFault(true)
    
    	size := syscall.Getpagesize()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. test/recover3.go

    	var inter interface{}
    	inter = 1
    	check("type-concrete", func() { println(inter.(string)) }, "int, not string")
    	check("type-interface", func() { println(inter.(m)) }, "missing method m")
    
    	if didbug {
    		panic("recover3")
    	}
    }
    
    type m interface {
    	m()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.6K bytes
    - Viewed (0)
  8. pkg/volume/util/operationexecutor/operation_generator.go

    		}
    	} else {
    		// Get attacher plugin and the volumeName by splitting the volume unique name in case
    		// there's no VolumeSpec: this happens only on attach/detach controller crash recovery
    		// when a pod has been deleted during the controller downtime
    		pluginName, volumeName, err = util.SplitUniqueName(volumeToDetach.VolumeName)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  9. test/recover1.go

    	v := recover()
    	if v == nil {
    		println("missing recover")
    		die()	// panic is useless here
    	}
    	if v != x {
    		println("wrong value", v, x)
    		die()
    	}
    	
    	// the value should be gone now regardless
    	v = recover()
    	if v != nil {
    		println("recover didn't recover")
    		die()
    	}
    }
    
    func mustNotRecover() {
    	v := recover()
    	if v != nil {
    		println("spurious recover")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 2.5K bytes
    - Viewed (0)
  10. test/recover5.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Verify that recover arguments requirements are enforced by the
    // compiler.
    
    package main
    
    func main() {
    	_ = recover()     // OK
    	_ = recover(1)    // ERROR "too many arguments"
    	_ = recover(1, 2) // ERROR "too many arguments"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 12:37:49 UTC 2017
    - 408 bytes
    - Viewed (0)
Back to top