Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 433 for abortCh (0.24 sec)

  1. hack/update-kustomize.sh

    read -p "Update kubectl kustomize to these versions? [y/N] " -n 1 -r
    echo
    
    if [[ $REPLY =~ ^[Yy]$ ]]; then
      echo -e "\n${color_blue:?}Updating kubectl kustomize${color_norm:?}"
    else
      echo -e "\n${color_red:?}Update aborted${color_norm:?}"
      exit 1
    fi
    
    ./hack/pin-dependency.sh sigs.k8s.io/kustomize/kyaml "$LATEST_KYAML"
    ./hack/pin-dependency.sh sigs.k8s.io/kustomize/cmd/config "$LATEST_CONFIG"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:40:04 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. src/syscall/errors_plan9.go

    	EACCES       = NewError("access permission denied")
    	EAFNOSUPPORT = NewError("address family not supported by protocol")
    	ESPIPE       = NewError("illegal seek")
    )
    
    // Notes
    const (
    	SIGABRT = Note("abort")
    	SIGALRM = Note("alarm")
    	SIGHUP  = Note("hangup")
    	SIGINT  = Note("interrupt")
    	SIGKILL = Note("kill")
    	SIGTERM = Note("interrupt")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Apr 22 13:31:24 UTC 2017
    - 1.6K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/tasks/StopExecutionException.java

     * stop execution of the current task and start execution of the next task. This allows, for example, precondition
     * actions to be added to a task which abort execution of the task if the preconditions are not met.</p>
     *
     * <p>Note that throwing this exception does not fail the execution of the task or the build.</p>
     */
    public class StopExecutionException extends RuntimeException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 1.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_saver_op_test.cc

                      .Attr("output_file_path", "/tmp/statistics.pbtxt")
                      .Finalize(node_def()));
      ASSERT_THAT(InitOp(),
                  StatusIs(tsl::error::ABORTED,
                           HasSubstr("The number of inputs must be  three times "
                                     "the size of the `ids` list.")));
    }
    
    TEST_F(CalibrationStatisticsSaverTest, WrongInputTypes) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 01:31:23 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #endif
    
    #if GTEST_OS_WINDOWS_MOBILE
    // Windows CE has no C library. The abort() function is used in
    // several places in Google Test. This implementation provides a reasonable
    // imitation of standard behaviour.
    void Abort();
    #else
    inline void Abort() { abort(); }
    #endif  // GTEST_OS_WINDOWS_MOBILE
    
    }  // namespace posix
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  6. platforms/jvm/testing-junit-platform/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformTestExecutionListener.java

    import java.util.concurrent.ConcurrentHashMap;
    import java.util.concurrent.ConcurrentMap;
    
    import static org.gradle.api.tasks.testing.TestResult.ResultType.SKIPPED;
    import static org.junit.platform.engine.TestExecutionResult.Status.ABORTED;
    import static org.junit.platform.engine.TestExecutionResult.Status.FAILED;
    
    /**
     * A {@link TestExecutionListener} that maps JUnit5 events to Gradle test events.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:58:25 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testsanitizers/testdata/msan2_cmsan.go

    #include <stdlib.h>
    
    void f(int32_t *p, int n) {
      int32_t * volatile q = (int32_t *)malloc(sizeof(int32_t) * n);
      memcpy(p, q, n * sizeof(*p));
      free(q);
    }
    
    void g(int32_t *p, int n) {
      if (p[4] != 1) {
        abort();
      }
    }
    */
    import "C"
    
    import (
    	"unsafe"
    )
    
    func main() {
    	a := make([]int32, 10)
    	C.f((*C.int32_t)(unsafe.Pointer(&a[0])), C.int(len(a)))
    	a[4] = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 710 bytes
    - Viewed (0)
  8. platforms/jvm/plugins-application/src/main/java/org/gradle/internal/deployment/JavaApplicationHandle.java

        }
    
        @Override
        public void start(Deployment deployment) {
            handle = builder.build().start();
        }
    
        @Override
        public void stop() {
            handle.abort();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleHandle.java

         */
        String getErrorOutput();
    
        /**
         * Forcefully kills the build and returns immediately. Does not block until the build has finished.
         */
        GradleHandle abort();
    
        /**
         * Cancel a build that was started as a cancellable build by closing stdin.  Does not block until the build has finished.
         */
        GradleHandle cancel();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/InstrumentingClassLoader.java

         * Prefer returning {@code null} instead of the {@code classfileBuffer} to continue loading the original bytecode.
         * <p>
         * Throwing the exception from this method aborts the transformation but doesn't affect class loading. The caller
         * (the agent) will catch all throwables thrown by this method and forward them to {@link #transformFailed(String, Throwable)}.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top