-
Updated
Oct 7, 2020 - Java
search
Here are 3,707 public repositories matching this topic...
-
Updated
Oct 3, 2020 - Rust
-
Updated
Oct 7, 2020 - Python
-
Updated
Oct 4, 2020 - HTML
-
Updated
Jul 22, 2020 - JavaScript
-
Updated
Sep 17, 2020 - Rust
-
Updated
Oct 7, 2020 - C
Description of Change
Add new implementation of binary search tree code using oop, generics, and smart pointers.
Add basic documentation to each of the BST functions.
Add tests for each BST function.
Checklist
- Added description of change
- Added file name matches [File name guidelines](h
-
Updated
Aug 19, 2020 - JavaScript
-
Updated
Sep 14, 2020 - JavaScript
Welcome to JavaScript community
Describe your change:
- Add an algorithm?
- Fix a bug or typo in an existing algorithm?
- Documentation change?
Checklist:
- I have read CONTRIBUTING.md.
- This pull request is all my own work -- I have not plagiarized.
- I know that p
-
Updated
Oct 5, 2020 - Python
-
Updated
Sep 15, 2020 - Ruby
-
Updated
Sep 30, 2020 - JavaScript
-
Updated
Oct 5, 2020
-
Updated
Sep 26, 2020 - Python
-
Updated
Oct 2, 2020 - TypeScript
-
Updated
Oct 7, 2020 - Go
-
Updated
Oct 7, 2020 - Java
-
Updated
Sep 20, 2020
-
Updated
Oct 7, 2020 - Python
While doing an update to 1.4.5 (from 1.3.16) I discovered an issue in the docker image when it waits for tomcat to start:
Current code
date +"%F %T Waiting for Tomcat startup..."
while [ "`curl --silent --write-out '%{response_code}' -o /dev/null 'http://localhost:8080/${URL_ROOT}'`" == "000" ]; do
sleep 1;
done
It looks like the URL_ROOT is not expanded here. While this is no
When trying to add a field of type constant_keyword to a Mapping, an exception is returned:
DSL class `constant_keyword` does not exist in field.
-
Updated
Oct 5, 2020 - Python
What happened
Accidentally omitting document content returns 500 Internal Server Error
with a body of {"message":"Internal error","uri":"/new_index"}
What was expected
Emitting any kind of helpful message would be helpful. Also, in my experience, when the client receives a 500 response, there is usually something informative on the server-side. But in this case, the server e
Improve this page
Add a description, image, and links to the search topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the search topic, visit your repo's landing page and select "manage topics."
I see a lot of
fd
users that seem to think that they need to add"{}"
to all commands. Some users also seem to think that the closing semicolon (which needs to be escaped)\;
is required:In reality, 90% of the
--exec
use cases can be written without the"{}"
part (whichfd
adds, if it is ommitted) because the file entry often comes last. The semic