Makhaev Anatoliy

Results 12 comments of Makhaev Anatoliy

libusb has asynchronous transmission. We only need to make a wrapper for it. http://libusb.sourceforge.net/api-1.0/group__libusb__asyncio.html

We can use `std::async` also instead of creating a new thread for each new transfer. It may be implemented as thread pool sometimes. Or we can implement own thread pool....

I had this problem. This parameters (host and port) helped me: ``` app.run_server(mode='inline', host='localhost', port=1050) ``` Developers of dash could solve this problem by using another default port in colab...

Probably it's fixed: https://github.com/tinygo-org/tinygo/issues/3788 https://github.com/tinygo-org/tinygo/pull/3986 Let's make minor release with fixes?

My problem is here: https://github.com/whid-injector/WHID/issues/57 Check please that you have the same problem. It helped me... Original (In Russian): http://wiki.amperka.ru/установка-и-настройка-arduino-ide:arduino-restore-bootloader Translation (In English): https://wiki-amperka-ru.translate.goog/установка-и-настройка-arduino-ide:arduino-restore-bootloader?_x_tr_sch=http&_x_tr_sl=auto&_x_tr_tl=en&_x_tr_hl=en

running as an administrator helped me in windows, but I have the same problem in linux

@pyanchesko same issue for me could you share your solution? thanks UPD: I did it My solution: ``` """Interceptor a client call with prometheus""" import logging from timeit import default_timer...

@nettashafir Using of ServerInterceptor: ``` from prometheus_aio_server_interceptor import PromAioServerInterceptor server = grpc.aio.server(interceptors=(PromAioServerInterceptor(enable_handling_time_histogram=True),)) actual_port = server.add_insecure_port('[::]:1234') ... ``` I don't use ClientInterceptor. Describe in more detail what problems do you have...

@nettashafir I have written an example in more details: ``` import asyncio import grpc from grpc_health.v1 import health, health_pb2, health_pb2_grpc import prometheus_client from prometheus_aio_server_interceptor import PromAioServerInterceptor async def serve( server:...

@alexcrichton Hello! Thank you for your answer It seems we misunderstood. I read about ResourceLimiter. 1) It does the same as ResourceLimiter? https://github.com/bytecodealliance/wasmtime-go/pull/171/files 2) We need not only limiting but...