-
Updated
May 5, 2021 - C++
transport
Here are 709 public repositories matching this topic...
-
Updated
Nov 3, 2019 - Go
-
Updated
Apr 4, 2021 - Java
-
Updated
Apr 21, 2021 - Jupyter Notebook
Hi,
For safety use, it's better to have null check for all variables which are used in this function.
if (!_sessionPriv.$clientAlarmList) {
return;
}
↓
if (!_sessionPriv.$clientAlarmList
|| !_sessionPriv.$monitoredItemForAlarmList
|| !_sessionPriv.$subscriptionforAlarmList ) {
return;
}
-
Updated
May 2, 2021 - Jupyter Notebook
-
Updated
Apr 18, 2021 - C#
Refactor dropdowns
Currently, the Dropdown code resides in src/OpenLoco/Ui/Dropdown.cpp. Its variables are still using loco_global wrappers to interopt with vanilla code. However, now that all windows that use dropdowns have been implemented, this is no longer necessary. This makes it possible to clea
The Decoder is used by the FramedTcp transport to transform a stream-based protocol (TCP) into a packet-based protocol that fits really well with the concept of message.
The Decoder collects data from the stream until it can be considered a message. In that process, each chunk of data received from the
-
Updated
May 3, 2021 - TypeScript
-
Updated
Apr 8, 2021 - Go
When adding multiple rpc target classes, if multiple targets contain the same\similar method, the method in first target added is used (as documented). But I miss an option to disallow duplicates, as this is (in my case) always an error. Alternatives:
-Preferably a setting on JsonRpc itself that produce error when AddLocalRpcTarget is called
-A setting on JsonRpc itself that produce error during
-
Updated
Apr 6, 2021 - R
-
Updated
Apr 9, 2021 - JavaScript
-
Updated
May 5, 2021
-
Updated
Jun 3, 2020 - C#
-
Updated
May 5, 2021 - Python
-
Updated
Sep 9, 2020 - PHP
-
Updated
Mar 27, 2021 - Swift
-
Updated
Apr 27, 2021 - R
Improve this page
Add a description, image, and links to the transport topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the transport topic, visit your repo's landing page and select "manage topics."


having two edges of equal lane count (and length, maxSpeed) randomTrips has currently no way of deciding which to prefer. Usually you would expect more traffic on the higher prioritized road. The problem is to find a good factor here.