Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 742 for recovered (0.35 sec)

  1. src/testing/testing.go

    // If ph is recoverAndReturnPanic, it will catch panics, and return the
    // recovered value if any.
    func (c *common) runCleanup(ph panicHandling) (panicVal any) {
    	c.cleanupStarted.Store(true)
    	defer c.cleanupStarted.Store(false)
    
    	if ph == recoverAndReturnPanic {
    		defer func() {
    			panicVal = recover()
    		}()
    	}
    
    	// Make sure that if a cleanup function panics,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/test.go

    has failed.
    
    In package list mode only, go test caches successful package test
    results to avoid unnecessary repeated running of tests. When the
    result of a test can be recovered from the cache, go test will
    redisplay the previous output instead of running the test binary
    again. When this happens, go test prints '(cached)' in place of the
    elapsed time in the summary line.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtOverrideInfoProvider.kt

            withValidityAssertion { analysisSession.overrideInfoProvider.getImplementationStatus(this, parentClassSymbol) }
    
        /**
         * Unwraps fake override [KaCallableSymbol]s until an original declared symbol is uncovered.
         *
         * In a class scope, a symbol may be derived from symbols declared in super classes. For example, consider
         *
         * ```
         * public interface  A<T> {
         *   public fun foo(t:T)
         * }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        // Seed the pool with a bad connection.
        assertContent("a", getResponse(newRequest("/")))
    
        // Give the server time to disconnect.
        Thread.sleep(500)
    
        // This connection will need to be recovered. When it is, transparent gzip should still work!
        assertContent("b", getResponse(newRequest("/")))
        assertThat(server.takeRequest().sequenceNumber).isEqualTo(0)
        // Connection is not pooled.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  5. src/reflect/all_test.go

    // Issue 8917.
    func TestLargeGCProg(t *testing.T) {
    	fv := ValueOf(func([256]*byte) {})
    	fv.Call([]Value{ValueOf([256]*byte{})})
    }
    
    func fieldIndexRecover(t Type, i int) (recovered any) {
    	defer func() {
    		recovered = recover()
    	}()
    
    	t.Field(i)
    	return
    }
    
    // Issue 15046.
    func TestTypeFieldOutOfRangePanic(t *testing.T) {
    	typ := TypeOf(struct{ X int }{10})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  6. test/abi/defer_recover_results.go

    // run
    
    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that when a function recovers from a panic, it
    // returns the correct results to the caller (in particular,
    // setting the result registers correctly).
    
    package main
    
    type S struct {
    	x uint8
    	y uint16
    	z uint32
    	w float64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 06 20:22:15 UTC 2021
    - 800 bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    a minute or two sobs choked his voice.  `Same as if he had a bone
    in his throat,' said the Gryphon:  and it set to work shaking him
    and punching him in the back.  At last the Mock Turtle recovered
    his voice, and, with tears running down his cheeks, he went on
    again:--
    
      `You may not have lived much under the sea--' (`I haven't,' said Alice)--
    `and perhaps you were never even introduced to a lobster--'
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

                "items":...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    a minute or two sobs choked his voice.  `Same as if he had a bone
    in his throat,' said the Gryphon:  and it set to work shaking him
    and punching him in the back.  At last the Mock Turtle recovered
    his voice, and, with tears running down his cheeks, he went on
    again:--
    
      `You may not have lived much under the sea--' (`I haven't,' said Alice)--
    `and perhaps you were never even introduced to a lobster--'
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/filters/wrap.go

    			// Honor the http.ErrAbortHandler sentinel panic value
    			//
    			// If ServeHTTP panics, the server (the caller of ServeHTTP) assumes
    			// that the effect of the panic was isolated to the active request.
    			// It recovers the panic, logs a stack trace to the server error log,
    			// and either closes the network connection or sends an HTTP/2
    			// RST_STREAM, depending on the HTTP protocol. To abort a handler so
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top