networking
Here are 3,228 public repositories matching this topic...
VS 2019
Currently we use a pretty naive removal of testing dependencies for SwiftPM by setting an environment variable. We should be able to use Rocket and update our Rakefile script to just remove testing dependencies on each release, and keep it in the development process thanks to that.
The idea came from this PR that I saw RxSwiftCommunity/RxOptional#83, which sounds reall
Note: This is an issue that is in 0.1.x and in 0.2.x. Any fix should be backported.
UdpFramed violates the decode contract by not attempting to continue decoding past the first discrete item if there is more data in the buffer.
Correct Framed implementation https://github.com/tokio-rs/tokio/blob/v0.1.x/tokio-io/src/framed_read.rs#L199
and incorrect https://github.com/tokio-rs/tokio/blo
-
Updated
Feb 20, 2020 - Python
Issue description
In writing rust zmq bindings for tokio, the question came up about when zmq_send and zmq_recv might return EAGAIN when passed the ZMQ_DONTWAIT flag in a multipart message. The implication of the high water mark documentation is that it will only return EAGAIN on the first part of the multipart message, but I couldn't find it explicitly stated anywhere that this
ByteBufferView is a Collection of UInt8 which "views" into a ByteBuffer. Right now, we basically only implement the subscript which vends individual bytes. That's good enough to implement Collection/Sequence (and a bunch of more specialised sub-protocols) but it's not very fast at all.
Especially methods like firstIndex(of:) or firstIndex(where:) will be very slow because it'l
Can you please provide an AppImage, this is basically just a standalone portable executable for linux, that doesn't require installation.
Thanks
There are different ways to create AppImages:
Use Open Build Service (OBS)
Convert existing binary packages (.deb, .rpm, …)
Bundling your Travis CI builds as AppImages
Run linuxdeployqt on your Qt application
Using electron-
BPF / eBPF support?
Right now, when we do our reverse-dns queries (getting the hostname of an ip address), if the request failed, we retry immediately. This can cause a lot of connections (also visible in the app!) to be opened if a request repeatedly fails.
It would be nice if we have some sort of progressive backoff mechanism for this... something like: wait for 1 second before retrying, then wait for 2, 4, etc.
-
Updated
Feb 20, 2020 - Java
https://github.com/zerotier/ZeroTierOne/tree/master/controller
Network object format:
routes | array[object] | Managed IPv4 and IPv6 routes; see below | YES
The array of objects format for routes is not specified. Settings for managed routes are ambiguous. Please fix the README.md in the controller directory.
-
Updated
Feb 20, 2020 - C++
-
Updated
Feb 19, 2020 - Assembly
The documentation for Object, Var and Varholder lead me to believe that given the following setup:
std::vector<DynamicStruct> testList;
Object t1;
t1.set("name","com.tl");
t1.set("num1",false);
Object j;
j.set("testval",testList);
The following call would let me extract the values (similar to my other use of Object with primitives and basic strings)
` auto retB
-
Updated
Feb 20, 2020 - Swift
To Reproduce
From the documentation Adding Parameters (body() in the docs should be body):
Fuel.post("https://httpbin.org/post", listOf("foo" to "foo", "bar" to "bar"))
.also { println(it.url) }
.also { println(String(it.body.toByteArray())) }Expected output
https://httpbin.org/post
"
Currently in our docs for open_signal_receiver, we have an example of catching SIGHUP and using it to reload the application configuration. While talking to @wgwz today re: python-trio/snekomatic#41, I discovered that this example is maybe not so great, because readers who aren't already steeped in Unix tr
-
Updated
Feb 20, 2020 - Swift
It would be handy (especially for intellisense purposes) to have XMLdoc equivalents for the existing Javadoc comments that have been copied from the Netty project.
If anyone wants to help out with this, please let me know and we can coordinate (maybe we can split up the work by namespace or something).
Documentation
Knative intends to add as little overhead to pure HTTP as possible. As such, some of our components are exposed to the hot-path of just about each HTTP request coming
There are some issues of code quality. Like createPoller() returns a pointer to a poller which locates heap.
And we should fix these issues. If you think there are code quality issues, please comment in this issue. Thanks a lot.
If a plugin exits with a non-0 exit status and prints stuff to stderr but not stdout, then pkg/invoke/raw_exec.go:pluginErr() will categorize this as "netplugin failed with no error message". This seems to be in part because it forwards the plugin's stderr to its parent's stderr, which is nice and all, but it means that the stderr might end up getting logged somewhere less useful (eg, in cri-o
- Terraform Concepts | Command | Tutorial
- Puppet Concepts | Command | Tutorial
- Chef Concepts | Command | Tutorial
- Ansible Concepts | Command | Tutorial
Some links in the readme are dead :
- Best Kept Secrets of Peer Code Review (pdf)
- The link to 11 Best Practices for Peer Code Review
- [C++ Coding Standards (Sutter & Andrescu)](https://doc.lagout.org/prog
-
Updated
Feb 20, 2020 - TypeScript
The win32 API has been used to implement high resolution integer timers, but implementations for Apple/Linux are still missing.
See:
https://github.com/RandyGaul/tinyheaders/blob/master/tinytime.h#L10-L29
CONTRIBUTING.md
Having a CONTRIBUTING.md (this file will be displayed by GitHub when creating a PR for the first time) would help maintainers and contributors by providing an initial “common ground”. This came up a couple of times in previous discussions and I want to create this discussion to figure out what should be communicated in the file. Eventually, when everybody is happy I would open a PR that formulat
Improve this page
Add a description, image, and links to the networking topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the networking topic, visit your repo's landing page and select "manage topics."
FatalError: dataTask received data for incorrect Request subclass nil: SessionDelegate.swift
What did you do?
We distributed our app using Alamofire for network requests
What did you expect to happen?
No crashes initiated b