Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,014 for crashes (0.3 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/CrashingBuildsArtifactTransformIntegrationTest.groovy

    import org.gradle.integtests.fixtures.AbstractDependencyResolutionTest
    
    class CrashingBuildsArtifactTransformIntegrationTest extends AbstractDependencyResolutionTest {
        def "cleans up cached output after build process crashes during transform"() {
            given:
            buildFile << """
    
    enum Color { Red, Green, Blue }
    def type = Attribute.of("artifactType", String)
    
    abstract class ToColor implements TransformAction<Parameters> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/kube/templates/vm_deployment.yaml

              sudo rm /var/run/secrets/istio/key.pem
              sudo chown -R istio-proxy /var/run/secrets
    
              # Change coredump directory to the correct user. Note this is a volume so we persist between crashes
              sudo chown -R istio-proxy:istio-proxy /var/lib/istio/data
    
              # place mounted bootstrap files (token is mounted directly to the correct location)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. src/runtime/syscall_solaris.go

    func syscall_getpid() (pid, err uintptr) {
    	call := libcall{
    		fn:   uintptr(unsafe.Pointer(&libc_getpid)),
    		n:    0,
    		args: uintptr(unsafe.Pointer(&libc_getpid)), // it's unused but must be non-nil, otherwise crashes
    	}
    	asmcgocall(unsafe.Pointer(&asmsysvicall6x), unsafe.Pointer(&call))
    	return call.r1, call.err
    }
    
    //go:nosplit
    //go:linkname syscall_ioctl
    //go:cgo_unsafe_args
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_fuzz_mutator_repeat.txt

    # a worker process terminates without communicating the crashing input back
    # to the coordinator.
    
    [short] skip
    env GOCACHE=$WORK/cache
    
    # Start fuzzing. The worker crashes after 100 iterations.
    # The fuzz function writes the crashing input to "want" before exiting.
    # The fuzzing engine reconstructs the crashing input and saves it to testdata.
    ! exists want
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/ObjectConnectionBuilder.java

         * This may happen because the peer has signalled that it has finished sending messages, or closes the connection, or crashes. It may also happen when
         * this side of the connection is closed using {@link ObjectConnection#stop()}.
         * </p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. src/runtime/debug/example_monitor_test.go

    		log.SetFlags(0)
    		log.SetPrefix("monitor: ")
    
    		crash, err := io.ReadAll(os.Stdin)
    		if err != nil {
    			log.Fatalf("failed to read from input pipe: %v", err)
    		}
    		if len(crash) == 0 {
    			// Parent process terminated without reporting a crash.
    			os.Exit(0)
    		}
    
    		// Save the crash report securely in the file system.
    		f, err := os.CreateTemp("", "*.crash")
    		if err != nil {
    			log.Fatal(err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/configurations/FunctionalTest.kt

        )
    
        failureConditions {
            // JavaExecDebugIntegrationTest.debug session fails without debugger might cause JVM crash
            // Some soak tests produce OOM exceptions
            // There are also random worker crashes for some tests.
            // We have test-retry to handle the crash in tests
            javaCrash = false
        }
    })
    
    private fun determineFlakyTestStrategy(stage: Stage): String {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 05:47:35 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. .github/ISSUE_TEMPLATE/bug_report.yml

          description: |-
            This is used to report product bugs:
            To report a security vulnerability, please visit <https://istio.io/about/security-vulnerabilities>.
            Any crashes are potentially security vulnerabilities and should be treated as such.
            To ask questions about how to use Istio, please visit <https://github.com/istio/istio/discussions>.
          options:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 15:17:29 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. src/runtime/trace_cgo_test.go

    	"internal/trace"
    	"io"
    	"os"
    	"runtime"
    	"strings"
    	"testing"
    )
    
    // TestTraceUnwindCGO verifies that trace events emitted in cgo callbacks
    // produce the same stack traces and don't cause any crashes regardless of
    // tracefpunwindoff being set to 0 or 1.
    func TestTraceUnwindCGO(t *testing.T) {
    	if *flagQuick {
    		t.Skip("-quick")
    	}
    	testenv.MustHaveGoBuild(t)
    	t.Parallel()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/Interceptor.kt

     *    indicating that the call was canceled. The interceptor's exception is delivered to the current
     *    thread's [uncaught exception handler][Thread.UncaughtExceptionHandler]. By default this
     *    crashes the application on Android and prints a stacktrace on the JVM. (Crash reporting
     *    libraries may customize this behavior.)
     *
     * A good way to signal a failure is with a synthetic HTTP response:
     *
     * ```kotlin
     *   @Throws(IOException::class)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top