Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 433 for abortCh (0.12 sec)

  1. src/runtime/os3_plan9.go

    	// the trailing NUL). We should never receive a longer note.
    	if len(notestr) > _ERRMAX-1 {
    		print("sighandler: note is longer than ERRMAX\n")
    		goto Throw
    	}
    	if isAbortPC(c.pc()) {
    		// Never turn abort into a panic.
    		goto Throw
    	}
    	// See if the note matches one of the patterns in sigtab.
    	// Notes that do not match any pattern can be handled at a higher
    	// level by the program but will otherwise be ignored.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/kernels/internal/compatibility_macros.h

    #ifndef TENSORFLOW_COMPILER_MLIR_LITE_KERNELS_INTERNAL_COMPATIBILITY_MACROS_H_
    #define TENSORFLOW_COMPILER_MLIR_LITE_KERNELS_INTERNAL_COMPATIBILITY_MACROS_H_
    
    #ifndef TFLITE_ABORT
    #define TFLITE_ABORT abort()
    #endif
    
    #ifndef TFLITE_ASSERT_FALSE
    #if defined(NDEBUG)
    #define TFLITE_ASSERT_FALSE (static_cast<void>(0))
    #else
    #define TFLITE_ASSERT_FALSE TFLITE_ABORT
    #endif
    #endif
    
    #ifndef TFLITE_DCHECK
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. src/runtime/cgo/gcc_util.c

    	/* Make our own copy that can persist after we return. */
    	_cgo_tsan_acquire();
    	ts = malloc(sizeof *ts);
    	_cgo_tsan_release();
    	if(ts == nil) {
    		fprintf(stderr, "runtime/cgo: out of memory in thread_start\n");
    		abort();
    	}
    	*ts = *arg;
    
    	_cgo_sys_thread_start(ts);	/* OS-dependent half */
    }
    
    #ifndef CGO_TSAN
    void(* const _cgo_yield)() = NULL;
    #else
    
    #include <string.h>
    
    char x_cgo_yield_strncpy_src = 0;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 18:49:38 UTC 2017
    - 1.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/glob_lit_test.bzl

          tags: [str], tags to attach to the test.
          driver: str, label of the driver shell script.
                  Note: use of a custom driver is not currently supported
                  and specifying a default driver will abort the tests.
          features: [str], list of extra features to enable.
        """
    
        # Disable tests on windows for now, to enable testing rest of all xla and mlir.
        native.py_test(
            name = name,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 06 19:29:19 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. ci/official/wheel_test/update_requirements.sh

    # script to run pip-compile for keras, tensorboard, estimator deps.
    # if there is a change in requirements.in then all lock files will be updated
    # accordingly.
    
    # -e: abort script if one command fails
    # -u: error if undefined variable used
    # -o pipefail: entire command fails if pipe fails. watch out for yes | ...
    # -o history: record shell history
    set -euo pipefail -o history
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 31 18:17:57 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. src/cmd/internal/objabi/funcid.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package objabi
    
    import (
    	"internal/abi"
    	"strings"
    )
    
    var funcIDs = map[string]abi.FuncID{
    	"abort":              abi.FuncID_abort,
    	"asmcgocall":         abi.FuncID_asmcgocall,
    	"asyncPreempt":       abi.FuncID_asyncPreempt,
    	"cgocallback":        abi.FuncID_cgocallback,
    	"corostart":          abi.FuncID_corostart,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 21:33:59 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. src/runtime/signal_windows.go

    	}
    }
    
    // isAbort returns true, if context r describes exception raised
    // by calling runtime.abort function.
    //
    //go:nosplit
    func isAbort(r *context) bool {
    	pc := r.ip()
    	if GOARCH == "386" || GOARCH == "amd64" || GOARCH == "arm" {
    		// In the case of an abort, the exception IP is one byte after
    		// the INT3 (this differs from UNIX OSes). Note that on ARM,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 20:32:29 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildContinueOnSingleFailureIntegrationTest.groovy

    """
            }
            buildC = singleProjectBuild("buildC") {
                buildFile << """
                    task succeeds
    """
            }
            includedBuilds << buildB << buildC
        }
    
        def "aborts build when delegated task in same build fails"() {
            when:
            buildA.buildFile << """
        task delegate {
            dependsOn gradle.includedBuild('buildB').task(':fails')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 06 08:15:28 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/CancellationContinuousIntegrationTest.groovy

            then:
            doesntExit()
    
            when:
            gradle.stdinPipe.close()
    
            then:
            cancelsAndExits()
        }
    
        @Requires(UnitTestPreconditions.NotWindows)
        // GradleHandle.abort() is unsafe on Windows - this is a test infrastructure problem
        def "does not cancel on EOT or by closing System.in when not interactive"() {
            when:
            executer.beforeExecute {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testsanitizers/testdata/tsan8.go

    		return;
    	}
    	if (prev_sa.sa_handler != SIG_IGN && prev_sa.sa_handler != SIG_DFL) {
    		prev_sa.sa_handler(signo);
    		return;
    	}
    
    	fprintf(stderr, "No Go handler to forward to!\n");
    	abort();
    }
    
    void registerSegvFowarder() {
    	struct sigaction sa;
    	memset(&sa, 0, sizeof(sa));
    	sigemptyset(&sa.sa_mask);
    	sa.sa_flags = SA_SIGINFO | SA_ONSTACK;
    	sa.sa_sigaction = forwardSignal;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top