Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for recovered (0.43 sec)

  1. src/cmd/go/alldocs.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: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                    }
                    configurations {
                        compile {
                            attributes.attribute color, 'blue'
                        }
                    }
                    task resolveRed(type: Resolve) {
                        artifacts = configurations.compile.incoming.artifactView {
                            attributes { it.attribute(color, 'red') }
                        }.artifacts
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	_, err = registry.Get(testContext, podA.Name, &metav1.GetOptions{})
    	if !errors.IsNotFound(err) {
    		t.Errorf("Unexpected error: %v", err)
    	}
    }
    
    // TestGracefulStoreCanDeleteIfExistingGracePeriodZero tests recovery from
    // race condition where the graceful delete is unable to complete
    // in prior operation, but the pod remains with deletion timestamp
    // and grace period set to 0.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  4. src/net/http/server.go

    // provided Request.
    //
    // 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: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. pkg/printers/internalversion/printers_test.go

    			}
    			if len(rows) <= 0 {
    				t.Fatalf("expected to have at least one TableRow, but got: %d", len(rows))
    			}
    
    			func() {
    				defer func() {
    					if err := recover(); err != nil {
    						// Same as stdlib http server code. Manually allocate stack
    						// trace buffer size to prevent excessively large logs
    						const size = 64 << 10
    						buf := make([]byte, size)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  6. src/net/http/serve_test.go

    		}
    	}
    }
    
    // Issue 24297
    func TestServeMuxHandleFuncWithNilHandler(t *testing.T) {
    	setParallel(t)
    	defer func() {
    		if err := recover(); err == nil {
    			t.Error("expected call to mux.HandleFunc to panic")
    		}
    	}()
    	mux := NewServeMux()
    	mux.HandleFunc("/", nil)
    }
    
    var serveMuxTests2 = []struct {
    	method  string
    	host    string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top