Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 940 for crashes (0.18 sec)

  1. src/runtime/HACKING.md

    For runtime error debugging, it may be useful to run with `GOTRACEBACK=system`
    or `GOTRACEBACK=crash`. The output of `panic` and `fatal` is as described by
    `GOTRACEBACK`. The output of `throw` always includes runtime frames, metadata
    and all goroutines regardless of `GOTRACEBACK` (i.e., equivalent to
    `GOTRACEBACK=system`). Whether `throw` crashes or not is still controlled by
    `GOTRACEBACK`.
    
    Synchronization
    ===============
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. pkg/test/kube/dump.go

    						c.Name(), pod.Namespace, pod.Name, container.Name, err)
    				}
    			}
    
    			if crashed, terminateState := containerCrashed(pod, container.Name); crashed {
    				scopes.Framework.Errorf("FAIL: cluster/pod/container: %s/%s/%s/%s crashed with status: %+v. Logs: %v",
    					c.Name(), pod.Namespace, pod.Name, container.Name, terminateState, prow.ArtifactsURL(fname))
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.py

    ) -> Optional[NotNoneT]:
      """Calls `func` and returns `None` on error.
    
      This is used to gracefully return the 'error status' represented as `None`, as
      raising exceptions from `PyFunctionLibrary` methods crashes the program.
    
      Args:
        func: The function to run. The function should be a callable returning a
          non-None value.
        error_msg: The error message to log upon error. Used for debugging purposes.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:32:11 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  4. src/runtime/extern.go

    and shows goroutines created internally by the run-time.
    GOTRACEBACK=crash is like “system” but crashes in an operating system-specific
    manner instead of exiting. For example, on Unix systems, the crash raises
    SIGABRT to trigger a core dump.
    GOTRACEBACK=wer is like “crash” but doesn't disable Windows Error Reporting (WER).
    For historical reasons, the GOTRACEBACK settings 0, 1, and 2 are synonyms for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  5. src/runtime/stubs.go

    	// exactly what you would want it to.
    	return int(*(*uint8)(unsafe.Pointer(&x)))
    }
    
    // abort crashes the runtime in situations where even throw might not
    // work. In general it should do something a debugger will recognize
    // (e.g., an INT3 on x86). A crash in abort is recognized by the
    // signal handler, which will attempt to tear down the runtime
    // immediately.
    func abort()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  6. ChangeLog.md

    - [`KT-60318`](https://youtrack.jetbrains.com/issue/KT-60318) K2: disable SLC for non-JVM platforms
    - [`KT-56546`](https://youtrack.jetbrains.com/issue/KT-56546) LL FIR: fix lazy resolve contract violation in Symbol Light Classes
    - [`KT-55788`](https://youtrack.jetbrains.com/issue/KT-55788) [SLC] Declarations with value classes are leaked into light classes
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  7. src/syscall/fs_wasip1.go

    	FILESTAT_SET_ATIM_NOW = 0x0002
    	FILESTAT_SET_MTIM     = 0x0004
    	FILESTAT_SET_MTIM_NOW = 0x0008
    )
    
    const (
    	// Despite the rights being defined as a 64 bits integer in the spec,
    	// wasmtime crashes the program if we set any of the upper 32 bits.
    	fullRights  = rights(^uint32(0))
    	readRights  = rights(RIGHT_FD_READ | RIGHT_FD_READDIR)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/genericapiserver_test.go

    	testHandler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		// this will catch recoverable panic like 'Header called after Handler finished'.
    		// go runtime crashes the program if it detects a program-ending
    		// panic like 'concurrent map iteration and map write', so this
    		// panic can not be caught.
    		defer func() {
    			result := result{}
    			result.err = recover()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  9. docs/changelogs/changelog_4x.md

     *  Fix: Don't crash in `HttpUrl.topPrivateDomain()` when the hostname is malformed.
    
     *  Fix: Don't attempt Brotli decompression if the response body is empty.
    
    
    ## Version 4.7.2
    
    _2020-05-20_
    
     *  Fix: Don't crash inspecting whether the host platform is JVM or Android. With 4.7.0 and 4.7.1 we
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #endif  // GTEST_HAS_PTHREAD
    
    // Returns the number of threads running in the process, or 0 to indicate that
    // we cannot detect it.
    GTEST_API_ size_t GetThreadCount();
    
    // Passing non-POD classes through ellipsis (...) crashes the ARM
    // compiler and generates a warning in Sun Studio.  The Nokia Symbian
    // and the IBM XL C/C++ compiler try to instantiate a copy constructor
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
Back to top