Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 433 for abortCh (0.19 sec)

  1. cmd/object-api-multipart_test.go

    	if err != nil {
    		// Failed to create newbucket, abort.
    		t.Fatalf("%s : %s", instanceType, err.Error())
    	}
    	// Initiate Multipart Upload on the above created bucket.
    	res, err := obj.NewMultipartUpload(context.Background(), bucket, object, opts)
    	if err != nil {
    		// Failed to create NewMultipartUpload, abort.
    		t.Fatalf("%s : %s", instanceType, err.Error())
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
  2. pkg/security/retry.go

    	retry.WithMax(5),
    	retry.WithBackoff(wrapBackoffWithMetrics(retry.BackoffExponentialWithJitter(100*time.Millisecond, 0.1))),
    	retry.WithCodes(codes.Canceled, codes.DeadlineExceeded, codes.ResourceExhausted, codes.Aborted, codes.Internal, codes.Unavailable),
    }
    
    // CARetryInterceptor is a grpc UnaryInterceptor that adds retry options, as a convenience wrapper
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. tests/fuzz/testdata/FuzzConfigValidation2/fuzz_config_validation2.dict

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 07 17:07:53 UTC 2021
    - 2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/upgrade/staticpods_test.go

    			waitErrsToReturn: map[string]error{
    				waitForHashes:        nil,
    				waitForHashChange:    nil,
    				waitForPodsWithLabel: errors.New("boo! failed"),
    			},
    			moveFileFunc:         os.Rename,
    			expectedErr:          true,
    			manifestShouldChange: false,
    		},
    		{
    			description: "any path-moving error should result in a rollback and an abort 1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 32K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/route/route_internal_test.go

    			},
    		},
    		{
    			name: "grpc abort",
    			fault: &networking.HTTPFaultInjection{
    				Abort: &networking.HTTPFaultInjection_Abort{
    					ErrorType: &networking.HTTPFaultInjection_Abort_GrpcStatus{
    						GrpcStatus: "DEADLINE_EXCEEDED",
    					},
    					Percentage: &networking.Percent{
    						Value: float64(50),
    					},
    				},
    			},
    			want: &xdshttpfault.HTTPFault{
    				Abort: &xdshttpfault.FaultAbort{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 11 02:47:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/BuildAbort.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven;
    
    /**
     * A special throwable used to signal a graceful abort of the build.
     */
    public class BuildAbort extends Error {
    
        public BuildAbort(String message) {
            super(message);
        }
    
        public BuildAbort(String message, Throwable cause) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/execution/plan/PlanExecutor.java

         */
        <T> ExecutionResult<Void> process(WorkSource<T> workSource, Action<T> worker);
    
        /**
         * Verifies that this executor and the work it is running is healthy (not starved or deadlocked). Aborts any current work when not healthy, so that {@link #process(WorkSource, Action)}
         * returns with a failure result.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. src/runtime/cgo/gcc_fatalf.c

    #include "libcgo.h"
    
    void
    fatalf(const char* format, ...)
    {
    	va_list ap;
    
    	fprintf(stderr, "runtime/cgo: ");
    	va_start(ap, format);
    	vfprintf(stderr, format, ap);
    	va_end(ap);
    	fprintf(stderr, "\n");
    	abort();
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 14:57:16 UTC 2023
    - 526 bytes
    - Viewed (0)
  9. src/runtime/cgo/gcc_libinit.c

    void
    x_cgo_sys_thread_create(void* (*func)(void*), void* arg) {
    	pthread_t p;
    	int err = _cgo_try_pthread_create(&p, NULL, func, arg);
    	if (err != 0) {
    		fprintf(stderr, "pthread_create failed: %s", strerror(err));
    		abort();
    	}
    }
    
    uintptr_t
    _cgo_wait_runtime_init_done(void) {
    	void (*pfn)(struct context_arg*);
    	pfn = __atomic_load_n(&cgo_context_function, __ATOMIC_CONSUME);
    
    	int done = 2;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 01:07:18 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. src/internal/syscall/unix/arc4random_darwin.go

    //go:cgo_import_dynamic libc_arc4random_buf arc4random_buf "/usr/lib/libSystem.B.dylib"
    
    func libc_arc4random_buf_trampoline()
    
    // ARC4Random calls the macOS arc4random_buf(3) function.
    func ARC4Random(p []byte) {
    	// macOS 11 and 12 abort if length is 0.
    	if len(p) == 0 {
    		return
    	}
    	syscall_syscall(abi.FuncPCABI0(libc_arc4random_buf_trampoline),
    		uintptr(unsafe.Pointer(unsafe.SliceData(p))), uintptr(len(p)), 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:02:21 UTC 2024
    - 633 bytes
    - Viewed (0)
Back to top