performance
Here are 2,793 public repositories matching this topic...
Hi there! I wanted to propose adding the following badge to the README to indicate how many TODO comments are in this codebase:
The badge links to tickgit.com which is a free service that indexes and displays TODO comme
Spurred by conversation in avajs/ava#2449 and avajs/ava#1485 we'd like for our assertions to return booleans. true when they pass, false when they fail. This does not apply to the throws() and throwsAsync() assertions.
Failing assertions will fail the test, but do not throw exceptions. This means your test does not stop executing. Usua
-
Updated
Jul 15, 2020 - Java
#2124 makes a great type change for depending on light-my-request. This should be added to the types in next if its not already there.
I need to scroll to a certain part of the page, using hash routing. Something like:
/#/post/32#comment-id
This project seems to solve it for the react router, but it doesn't work with inferno:
https://github.com/rafrex/react-router-hash-link.
Here's the main source, seems like it could be easily adapted to the
For the example page http://afarkas.github.io/lazysizes/#examples, the "Desert Road" image https://farm6.staticflickr.com/5531/9638435181_7e3e44c2b8_b.jpg is not loaded since it returns a 410 from staticflickr.com. At least, Chrome and Firefox on Win7 get a 410 on the URL directly. Not a big deal, but I was evaluating lazysizes and it made me question whether it was working or buggy.
Description
Options skipColumnOnPaste and skipRowOnPaste when added to table settings hang the browser down after pasting.
It is said that
When added to a column property, it skips the colum
-
Updated
Jul 11, 2020 - Shell
add Openwhisk plugin
Title: Openwhisk Plugin Contribution
Link: https://github.com/lopiter/pinpoint/tree/add-openwhisk-plugin
Target: Openwhisk
Supported Version: 0.0.1-SNAPSHOT
Description: serverless open source platform Openwhisk(https://openwhisk.apache.org)
before, akka-http plugin should be installed
ServiceTypes: OPENWHISK_INTERNAL , OPENWHISK_INVOKER
Configurations:
- profiler.openwhisk.enable : set
Floating numbers should have thousand separator with specifier 'n' like python.
Python:
>>> from locale import setlocale, LC_ALL
>>> setlocale(LC_ALL, 'en_US')
'en_US'
>>> '{:n}'.format(1234)
'1,234'
>>> '{:n}'.format(1234.56)
'1,234.56'C++
setlocale(LC_ALL, "en-US");
fmt::format("{:n} {:n}", 1234, 1234.56);
// gives 1,234 1234.56-
Updated
Jun 18, 2020
Feedback from @surma:
I feel like by default you should add a rootMargin to the IO to trigger the load before something comes into the viewport.
So, rootMargin defaults to "0px 0px 0px 0px", meaning the intersection will be computed between the root element's unmodified bounds rectangle and the target's bounds. This change would be made to https://github.com/GoogleChromeLabs/quicklink/b
loadimpact / k6
if you run
const response = http.request("get", url);
you will either:
- if http1 - get 400 (probably dependant on the implementation
- if http2 - get
WARN[0001] Request Failed error="get \"https://test-api.k6.io/\": stream error: stream ID 1; PROTOCOL_ERROR"
This is easily fixed by uppercasing get to GET
I'm guessing, since I see no reference to filtering and sorting in the docs, that the underlying data model is expected to deal with those aspects.
My question is simply if anyone could point out some nice fast example code for that functionality.
Thanks.
There's a lot of place for improvement of the documentation.
- Update the Angular guide to use
ngx-build-plus - Improve the API documentation explaining the configuration properties
- Include a guide showing how to use Guess.js with JWT instead of OAuth
- Include Gatsby guide
The content of the documentation is in the GitHub page [repo](https://github.com/guess-js/guess-
-
Updated
Jul 2, 2020 - JavaScript
Pre-check
- I'm aware that I can edit the docs and submit a pull request
Describe the improvement
I'd like to report
- Unclear documentation
- A typo
- Missing documentation
- Other
Description of the improvement / report
Add documentation for running tests using Github Actions.
-
Updated
Sep 25, 2019 - Java
Describe the bug
Docs never mention that Vibora searches for a folder named templates, additionally template rendering varies depending on where from you execute the file.
To Reproduce
Given the following folder structure:
.
├── project1
│ ├── app.py
│ └── templates
│ └── index.html
When Vibora is run from root folder like so python3 project1/app.py it wo
For each Job, it adds plots about density, cumulative mean, and so on. But two files are named BenchmarkDotNet.Artifacts/results/MyBench.Sleeps-Time50--density.png and BenchmarkDotNet.Artifacts/results/MyBench.Sleeps-Time50--facetDensity.png, with the -- instead of single. Like some iteration variable is empty (since later there are names with -Default-
 could be clarified a bit, e.g. in updates-ii 'query' is highlighted as a symbol, but in iii 'queries' is highlighted as a symbol, which is confusing as to what the correct parameter name is. I think the former might be a formatting typo.
Also, it refers to it as a query parameter, whereas in mult
Documentation error
-
Updated
May 27, 2020 - JavaScript
Improve this page
Add a description, image, and links to the performance topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the performance topic, visit your repo's landing page and select "manage topics."


Description
Using the fetch API from WHATWG in Google Chrome, an image upload does not have Content-Type multipart/form-data. Instead, the content type is set to the MIME type (ex:
image/jpeg) with aboundaryparameter. Setting Content-Type explicitly tomultipart/form-datashould result in an error (and it does).How to reproduce
Follow an existing image upload example from