language
Here are 3,208 public repositories matching this topic...
TS Template added by @mjbvz
TypeScript Version: 3.8.0-dev.20200108
Search Terms
- Organize imports
In TypeScript / JavaScript, the command Organize Imports inserts up to two newlines if export { ... }; is at the end of a file. This does not happen with other forms of export.
- VSCode Version: 1.41.1
- OS Version: Windows 10 (1803)
Steps to Reproduce:
- Hav
-
Updated
Mar 4, 2020 - Ruby
This came up for fixes to svg-gradient() (less/less.js#3261). There are no automated visual regression tests, so it might be good to do so for functions that create visual assets. See: https://github.com/garris/BackstopJS
V version:
v --version
V 0.1.25 6574420
OS:
OSX 10,14,14
What did you do?
ran v doc with various modules listed on the Modules page
What did you expect to see?
Some form of usable documentation generated
What did you see instead?
A lot of times, various error messages. When documentation is generated –how is it supposed to be accessed?
As it s
- https://crystal-lang.org/api/master/File.html
- Click on either
.new/.openconstructors - Notice you don't get taken to the detail section of those methods
Seems to be caused by escaping the " for the id of the element. mode="r", doesn't match the anchor value of mode="r".
-
Updated
Mar 4, 2020 - JavaScript
The callable constructor proposal was withdrawn because "the same problems can be solved with decorators" but the readme here doesn't show examples of that. Can you please update that for reference? It would be really helpful.
-
Updated
Mar 4, 2020
For a university school project I will be making some edits to your documentation which will aim to make writing more technical
Please add edits if you would like :)
When importing httpclient when taint mode is enabled, compilation fails
Example
echo "import httpclient" > foo.nim
nim c --taintMode:on foo.nimCurrent Output
nim-1.0.2/lib/pure/httpclient.nim(357, 6) Error: type mismatch: got <MultipartData, string, TaintedString, string, string>
but expected one of:
proc add(p: var MultipartData; name, content: string; fil
opened to replace #4223
In the version deployed at http://play.witheve.com/#/examples/quickstart.eve the hover text for sidebar expand/collapse button is reversed. Look through the repo for the offending code but could not find it.
Dart SDK Version: 2.7.0, dart:async library
The dartdoc of scheduleMicrotask (*1) refers to an article (*2) saying: "Learn how Dart handles the event queue and microtask queue,". That link (*2) gets redirected to an article that does not mention anything about microtasks.
*1: https://api.dart.dev/stable/2.7.0/dart-async/scheduleMicrotask.html
*2: https://www.dartlang.org/articles/event-l
Red/System []
s2: declare struct! [
a [integer!]
b [c-string!]
c [struct! [d [integer!] e [float!]] value]
]
probe size? s2
Taken from https://static.red-lang.org/red-system-specs.html#section-4.7.2
Says:
Compiling to native code...
*** Red/System Compiler Internal Error: Script Error : last expected series argument of type: series port tuple
*** Where: for
The embedding example in the documentation suggests to run the code "System.print("I am running in a VM!")" which does not print anything because the vm was not configured with a print function.
Suggesting the user to provide a print/error function would make things clearer.
Summary
The reasoning behind choosing our eventual backend should be documented separately to the design for the new runtime. A document containing this information should be located in doc/design/backend/potential-backends.md or similar.
Value
This information is important as not only does it let us reference the materials used to make the decision in the past, it also gives us so
Haxelib allows to get a library from git like:
haxelib git hamcrest https://github.com/mikestead/hamcrest-haxe.git master src
With arguments: library name, git URL, branch name, subfolder (undocumented).
Likewise you should be able to declare it it using -lib/-L/--library:
-lib hamcrest:git:https://github.com/mikestead/hamcrest-haxe.git#master#src
(found the #src arg
When generating documentation for modules that internally use foreach (which as of #656 emits gensyms) we encounter errors related to some internal macro code. The error message always reads as follows:
carp: Unhandled binder: XObj {obj = Lst [XObj {obj = DefDynamic, info = Nothing, ty = Nothing},XObj {obj = Sym RESP.*gensym-counter* Symbol, info = Nothing, ty = Nothing},XObj {obj = Nu
It seems configurations for proselint are centralized to different canonical files (namely $XDG_CONFIG_HOME/proselint/config, ~/.config/proselint/config and ~/.proselintrc) instead of a per project config basis.
So may I ask how to specify project/folder/files-specific rules? Maybe including some examples in the README.md would be nice?
Thanks
Here I have another suggestion, this time about our Gravity's CLI. I come up with this list of improvements which I think should benefit the project:
- If no arguments passed it should display help section instead of opening
REPL - To open
REPLadd a new flag for examplegravity --repl gravity new [project]- a new simple command to create new project. (A wizard which helps with co
-
Updated
Mar 3, 2020 - JavaScript
Describe the bug
The Unity usage example assumes that user has Rantionary.rpkg file in assets/resources folder but there is no step by step information on how to import those and from what source.
The Rant3.zip from github doesn't contain said file.
To Reproduce
Steps to reproduce the behavior:
- Follow the Running in Unity tutorial
- Run the example in Unity
- See the erro
-
Updated
Mar 2, 2020
When compiling to Python with target set to any version above 3.x the type hints for functions and variables get wrapped in single quotes. This breaks functionality with some libraries which rely on type hints such as pydantic.
I first noticed it with Coconut: Version 1.4.1 [Ernest Scribbler] running on Python 3.7.4 but tested it out on the online interpreter with Python 3.3 3.4 3.5 and
The docs on Built in Functions should include an example in the description of each function. These examples should also be included in the test suite so that if any syntax changes, we know to update the documentation as well.
const char* getIp(void) {
return "192.168.1.1";
}
above should be
const char* getIp(const el::LogMessage *l) {
return "192.168.1.1";
}
Improve this page
Add a description, image, and links to the language topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the language topic, visit your repo's landing page and select "manage topics."
Issue #36736 proposes using
tls.ConnectionStatefor extra verification during the TLS handshake. Before this is done, it would be good to improve documentation for certain fields to make it clear what the format of each field is. For example, one open question from me is whether or not each chain inVerifiedChainsis of the form peer->issuer-of-peer->issuer-of-issuer-of-peer->...