-
Updated
Jun 12, 2020 - Dart
parameters
Here are 187 public repositories matching this topic...
Effective Go says:
Every package should have a package comment, a block comment preceding the package clause.
The command mvdan.cc/unparam
does not have a package comment.
This can be seen by visiting https://pkg.go.dev/mvdan.cc/unparam or running go doc mvdan.cc/unparam
inside the module.
-
Updated
Jun 6, 2020 - Elixir
Currently we use a docstring trick to generate signatures for Parameterized classes. This approach is no longer supported by IPython in recent versions and is also pretty hacky (and ugly to look at in a docstring since all the keywords appear there). Instead we should use the __signature__
object (see PEP362).
![Screen Shot 2020-01-18 at 9 51 33
-
Updated
Jun 8, 2020 - Elixir
-
Updated
Feb 13, 2020 - C++
-
Updated
Feb 10, 2017 - Go
For regressionBF
, I don't know how to interpret the output from model_parameters
and the documentation is not giving me any hints. Is this something we should add to the docs?
BayesFactor
output
# setup
set.seed(123)
library(parameters)
library(BayesFactor)
#> Loading required package: coda
#> Loading required package: Matrix
#> ************
#> Welcome to BayesFactor 0.9
Currently if you run the command, and you haven't set up AWS credentials properly, it won't execute your command, but have a zero exit status, suggesting that everything went okay. Wouldn't it make more sense if it exited with a non-zero status?
Example:
bash-4.4# env-aws-params --prefix /foobar /bin/ls && echo $?
ERROR: NoCredentialProviders: no valid providers in chain. Deprecated.
Okay, so if you pass a filterWith
rule, that function should return true|false
.
However, you can throw a custom error in that function instead. It's just that the customer error needs to implement toJSON
and return { field, message }
.
-
Updated
Apr 14, 2020 - Julia
-
Updated
Jun 23, 2020 - Elixir
Currently ToString / Save methods in SharedParameterFile ignore the original format (e.g. the absence of Description and/or UserModifiable columns). File shall be persisted exactly as it was read
-
Updated
Feb 2, 2018 - Ruby
-
Updated
Jan 28, 2019 - Dart
-
Updated
Jan 15, 2020 - JavaScript
-
Updated
Jul 23, 2019 - R
-
Updated
Nov 1, 2018 - MATLAB
-
Updated
Mar 3, 2019 - Ruby
-
Updated
Jan 6, 2020 - JavaScript
-
Updated
Apr 6, 2020 - TypeScript
-
Updated
Mar 4, 2020 - Elixir
- Fix Travis stalls build when it comes down to testing lkm_mev (local run works)
- Fix Build Warnings
warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
- Fix following warnings/issues in .travis.yml
- root: duplicate key: install
- root: deprecated key sudo (The key
sudo
has no effect anymore.)
-
Updated
Apr 25, 2020 - Ruby
-
Updated
Jan 16, 2018 - JavaScript
-
Updated
Mar 21, 2019 - Ruby
-
Updated
Jan 3, 2020 - PHP
Improve this page
Add a description, image, and links to the parameters topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the parameters topic, visit your repo's landing page and select "manage topics."
It's not needed to put the
require
option in theGemfile
, since your gem already requires everything you have inlib
folder.So in your
Gemfile
you can simply put:gem "sinatra-param"
Instead of:
gem "sinatra-param", require: "sinatra/param"