Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,509 for Failed (0.22 sec)

  1. src/runtime/cgo/gcc_signal_ios_arm64.c

    	if (ret) {
    		fprintf(stderr, "runtime/cgo: mach_port_allocate failed: %d\n", ret);
    		abort();
    	}
    	ret = mach_port_insert_right(
    		mach_task_self(),
    		port,
    		port,
    		MACH_MSG_TYPE_MAKE_SEND);
    	if (ret) {
    		fprintf(stderr, "runtime/cgo: mach_port_insert_right failed: %d\n", ret);
    		abort();
    	}
    
    	ret = thread_set_exception_ports(
    		mach_thread_self(),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 21:04:22 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/utils/nms_utils.cc

      size_t start_map = fbb.StartMap();
    
      if (failed(AddIntAttr(func, attrs, "max_detections", &fbb)) ||
          failed(AddIntAttr(func, attrs, "max_classes_per_detection", &fbb)) ||
          failed(AddIntAttr(func, attrs, "num_classes", &fbb)) ||
          failed(AddFloatAttr(func, attrs, "nms_score_threshold", &fbb)) ||
          failed(AddFloatAttr(func, attrs, "nms_iou_threshold", &fbb)) ||
          failed(AddFloatAttr(func, attrs, "y_scale", &fbb)) ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. pkg/kubelet/pluginmanager/operationexecutor/operation_generator.go

    			if err = og.notifyPlugin(client, false, fmt.Sprintf("RegisterPlugin error -- plugin validation failed with err: %v", err)); err != nil {
    				return fmt.Errorf("RegisterPlugin error -- failed to send error at socket %s, err: %v", socketPath, err)
    			}
    			return fmt.Errorf("RegisterPlugin error -- pluginHandler.ValidatePluginFunc failed")
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/java-library/module-disabled/tests/buildJavaModule.out

    * What went wrong:
    Execution failed for task ':compileJava'.
    > Compilation failed; see the compiler error output for details.
    
    * Try:
    > Run with --info option to get more log output.
    > Run with --scan to get full insights.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 09:29:37 UTC 2024
    - 735 bytes
    - Viewed (0)
  5. internal/bucket/replication/datatypes.go

    	Pending StatusType = "PENDING"
    
    	// Completed - replication completed ok.
    	Completed StatusType = "COMPLETED"
    
    	// CompletedLegacy was called "COMPLETE" incorrectly.
    	CompletedLegacy StatusType = "COMPLETE"
    
    	// Failed - replication failed.
    	Failed StatusType = "FAILED"
    
    	// Replica - this is a replica.
    	Replica StatusType = "REPLICA"
    )
    
    // String returns string representation of status
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 19:08:18 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. .github/workflows/multipart/migrate.sh

    failed_count_site2=$(./s3-check-md5 -versions -access-key minioadmin -secret-key minioadmin -endpoint http://site2-nginx:9002 -bucket testbucket 2>&1 | grep FAILED | wc -l)
    
    if [ $failed_count_site1 -ne 0 ]; then
    	echo "failed with multipart on site1 uploads"
    	exit 1
    fi
    
    if [ $failed_count_site2 -ne 0 ]; then
    	echo "failed with multipart on site2 uploads"
    	exit 1
    fi
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. testing/internal-testing/src/test/groovy/org/gradle/testing/internal/util/ExpectedFailureRule.java

                    Throwable failed = null;
                    try {
                        base.evaluate();
                    } catch (Throwable t) {
                        failed = t;
                        if (!expectedToFail) {
                            throw t;
                        }
                    }
                    if (expectedToFail) {
                        if (failed == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. cmd/metrics-v3-bucket-replication.go

    				for arn, stat := range stats.Stats {
    					m.Set(bucketReplLastHrFailedBytes, float64(stat.Failed.LastHour.Bytes), labels...)
    					m.Set(bucketReplLastHrFailedCount, float64(stat.Failed.LastHour.Count), labels...)
    					m.Set(bucketReplLastMinFailedBytes, float64(stat.Failed.LastMinute.Bytes), labels...)
    					m.Set(bucketReplLastMinFailedCount, float64(stat.Failed.LastMinute.Count), labels...)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. tests/default_value_test.go

    	}
    
    	DB.Migrator().DropTable(&Harumph{})
    
    	if err := DB.AutoMigrate(&Harumph{}); err != nil {
    		t.Fatalf("Failed to migrate with default value, got error: %v", err)
    	}
    
    	harumph := Harumph{Email: "******@****.***"}
    	if err := DB.Create(&harumph).Error; err != nil {
    		t.Fatalf("Failed to create data with default value, got error: %v", err)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 08 03:29:55 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. src/runtime/netpoll_epoll.go

    	epfd, errno = syscall.EpollCreate1(syscall.EPOLL_CLOEXEC)
    	if errno != 0 {
    		println("runtime: epollcreate failed with", errno)
    		throw("runtime: netpollinit failed")
    	}
    	efd, errno := syscall.Eventfd(0, syscall.EFD_CLOEXEC|syscall.EFD_NONBLOCK)
    	if errno != 0 {
    		println("runtime: eventfd failed with", -errno)
    		throw("runtime: eventfd failed")
    	}
    	ev := syscall.EpollEvent{
    		Events: syscall.EPOLLIN,
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top