-
Updated
Aug 18, 2021 - C++
transport
Here are 741 public repositories matching this topic...
-
Updated
Nov 3, 2019 - Go
-
Updated
Jun 14, 2021 - Java
-
Updated
May 12, 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 20, 2021 - Jupyter Notebook
-
Updated
Apr 18, 2021 - C#
-
Updated
Jul 8, 2021 - TypeScript
We recently added the Map::validCoords function. This should be used in a number of locations. Search the codebase for the constant 0x2FFF, 12287, 0x3000 or 12288 and if its a Map::Pos2 or Pos3 then it very likely should be using the validCoords function.
Likewise if its 384, 0x180, or 0x17F, 383 and if its a Map::TilePos2 then it should probably also be using the validCoords functi
Currently, WebSocket is working for client/server side. However, the browsers do not allow to create tcp connections direclty (which is the current implementation based). Instead, the web-sys must be used.
- Use a different WebSocket implementation if the target is
wasm. - wasm example of a client.
-
Updated
Jul 23, 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
Jul 22, 2021 - R
-
Updated
Aug 17, 2021 - JavaScript
-
Updated
Aug 17, 2021
-
Updated
Jun 3, 2020 - C#
-
Updated
Aug 19, 2021 - Python
-
Updated
Sep 9, 2020 - PHP
-
Updated
Mar 27, 2021 - Swift
-
Updated
Aug 19, 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."
currently, the header contains command line arguments with
--beginrendered as<doubleminus>beginsince it's part of an xml-comment. Instead, all tools that use sumolib.options.ArgumentParser could write the xml-config into the comment just like all other sumo applications.