Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 433 for abortCh (0.22 sec)

  1. pkg/probe/dialer_others.go

    // The dialer reduces the TIME-WAIT period to 1 seconds instead of the OS default of 60 seconds.
    // Using 1 second instead of 0 because SO_LINGER socket option to 0 causes pending data to be
    // discarded and the connection to be aborted with an RST rather than for the pending data to be
    // transmitted and the connection closed cleanly with a FIN.
    // Ref: https://issues.k8s.io/89898
    func ProbeDialer() *net.Dialer {
    	dialer := &net.Dialer{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 16:57:32 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/BuildResultTest.java

            try {
                result.rethrowFailure();
                fail();
            } catch (GradleException e) {
                assertThat(e.getMessage(), equalTo("Build aborted because of an internal error."));
                assertThat(e.getCause(), sameInstance(failure));
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 19 10:56:37 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/sigaltstack.go

    static void changeSignalStack(void) {
    	stack_t ss;
    	memset(&ss, 0, sizeof ss);
    	ss.ss_sp = signalStack;
    	ss.ss_flags = 0;
    	ss.ss_size = CSIGSTKSZ;
    	if (sigaltstack(&ss, &oss) < 0) {
    		perror("sigaltstack");
    		abort();
    	}
    }
    
    static void restoreSignalStack(void) {
    #if (defined(__x86_64__) || defined(__i386__)) && defined(__APPLE__)
    	// The Darwin C library enforces a minimum that the kernel does not.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/BuildResult.java

            if (failure instanceof GradleException) {
                throw (GradleException) failure;
            }
            if (failure != null) {
                throw new GradleException(action + " aborted because of an internal error.", failure);
            }
            return this;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 14 23:28:03 UTC 2021
    - 2K bytes
    - Viewed (0)
  5. pilot/cmd/pilot-agent/status/dialer_others.go

    // The dialer reduces the TIME-WAIT period to 1 seconds instead of the OS default of 60 seconds.
    // Using 1 second instead of 0 because SO_LINGER socket option to 0 causes pending data to be
    // discarded and the connection to be aborted with an RST rather than for the pending data to be
    // transmitted and the connection closed cleanly with a FIN.
    // Ref: https://issues.k8s.io/89898
    func ProbeDialer() *net.Dialer {
    	dialer := &net.Dialer{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 28 02:39:05 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. pilot/cmd/pilot-agent/status/dialer_windows.go

    // The dialer reduces the TIME-WAIT period to 1 seconds instead of the OS default of 60 seconds.
    // Using 1 second instead of 0 because SO_LINGER socket option to 0 causes pending data to be
    // discarded and the connection to be aborted with an RST rather than for the pending data to be
    // transmitted and the connection closed cleanly with a FIN.
    // Ref: https://issues.k8s.io/89898
    func ProbeDialer() *net.Dialer {
    	dialer := &net.Dialer{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 28 02:39:05 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. src/runtime/testdata/testprogcgo/sigstack.go

    	if (base == MAP_FAILED) {
    		perror("mmap failed");
    		abort();
    	}
    	stack_t st = {}, ost = {};
    	st.ss_sp = (char*)base;
    	st.ss_flags = 0;
    	st.ss_size = CSIGSTKSZ;
    	if (sigaltstack(&st, &ost) < 0) {
    		perror("sigaltstack failed");
    		abort();
    	}
    
    	// Call Go.
    	SigStackCallback();
    
    	// Disable signal stack and protect it so we can detect reuse.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/TimeLimiter.java

       * <p>If the target method call finishes before the limit is reached, the return value or
       * exception is propagated to the caller exactly as-is. If, on the other hand, the time limit is
       * reached, the proxy will attempt to abort the call to the target, and will throw an {@link
       * UncheckedTimeoutException} to the caller.
       *
       * <p>It is important to note that the primary purpose of the proxy object is to return control to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  9. src/runtime/race/race_darwin_amd64.go

    //go:cgo_import_dynamic _sanitizer_internal_memmove _sanitizer_internal_memmove ""
    //go:cgo_import_dynamic _sanitizer_internal_memset _sanitizer_internal_memset ""
    //go:cgo_import_dynamic abort abort ""
    //go:cgo_import_dynamic arc4random_buf arc4random_buf ""
    //go:cgo_import_dynamic close close ""
    //go:cgo_import_dynamic dlsym dlsym ""
    //go:cgo_import_dynamic dup dup ""
    //go:cgo_import_dynamic dup2 dup2 ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 19:29:22 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. src/runtime/race/race_darwin_arm64.go

    //go:cgo_import_dynamic _sanitizer_internal_memmove _sanitizer_internal_memmove ""
    //go:cgo_import_dynamic _sanitizer_internal_memset _sanitizer_internal_memset ""
    //go:cgo_import_dynamic abort abort ""
    //go:cgo_import_dynamic arc4random_buf arc4random_buf ""
    //go:cgo_import_dynamic bzero bzero ""
    //go:cgo_import_dynamic close close ""
    //go:cgo_import_dynamic dlsym dlsym ""
    //go:cgo_import_dynamic dup dup ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 19:29:22 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top