-
Updated
Aug 28, 2020 - Go
versioning
Here are 681 public repositories matching this topic...
-
Updated
Aug 27, 2020 - Python
-
Updated
Jun 22, 2020 - C#
-
Updated
Aug 24, 2020 - C#
While inspecting the installer, I noticed the fallbacks for Linux / OSX when appdirs isn't available (in data_dir()).
Wouldn't it make sense to add an if for Windows based on %APPDATA% or %LOCALAPPDATA%, before resorting to globally installing appdirs?
-
Updated
Aug 29, 2020 - Go
While migrating a friend's project at raychenon/gray-sky-weather#4,
I realized that dependency injections are another very common class of libraries
that we didn't include - except for Dagger.
It would be nice to add:
- Koin https://github.com/InsertKoinIO/koin
- Kodein framework https://kodein.org/
- Guice https://github.com/google/guice
Also missing `Google.g
-
Updated
Jun 24, 2020 - Ruby
-
Updated
Aug 24, 2020 - JavaScript
The change logs or diffs are currently directly stored in JSON files. However, when we support encryption at rest we should instead store it in a shadow structure of the resource we store, meaning another trie besides the document index beneath the RevisionRootPage.
-
Updated
Apr 7, 2018 - JavaScript
-
Updated
Jun 6, 2020 - Kotlin
fetchPypi just calls fetchurl underneath but has a slightly different calling syntax in order to construct the URL. It would be great to track these external dependencies using niv. :-)
-
Updated
Aug 29, 2020 - JavaScript
-
Updated
Aug 28, 2020 - JavaScript
-
Updated
Aug 13, 2020 - Groovy
-
Updated
Aug 27, 2020 - Elixir
-
Updated
Aug 18, 2020 - Ruby
-
Updated
Aug 3, 2020 - PLpgSQL
-
Updated
May 30, 2020 - CSS
-
Updated
Jul 16, 2020 - Scala
Improve this page
Add a description, image, and links to the versioning topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the versioning topic, visit your repo's landing page and select "manage topics."


Description & context
Users can specify names for their nodes to identify them more easily. When a name is not explicitly specified, Kedro auto-generates a default name. You can see this in the
nameproperty onNode.The current auto-generated name for a node looks something like this:
func_name(inputs) -> outputs. (see implementation of__str__method on theNodeclass)This is