Framework
A framework is a reusable set of libraries or classes in software. In an effort to help developers focus their work on higher level tasks, a framework provides a functional solution for lower level elements of coding. While a framework might add more code than is necessary, they also provide a reusable pattern to speed up development.
Here are 7,838 public repositories matching this topic...
While loading of YAML files in home directory was fixed in #19081 it appears it is ignoring the profiles defined by the spring.profiles property and loading in all YAML documents (the sections in a YAML file) as property sources.
When running the example application with the example spring-boot-devtools.yaml with no profiles activate I would expect only one YAML document to be loaded, the top o
https://edgeguides.rubyonrails.org/association_basics.html#the-belongs-to-association says:
A
belongs_toassociation sets up a one-to-one connection with another model
However (unless I'm going crazy), this is not accurate, because belongs_to can also set up a many-to-one relationship as the other side of has_many. This is explicitly stated in [the has_many section of the same gui
Feature Request
Ionic version:
[x] 4.x or 5.x
Describe the Feature Request
Currently if you present multiple toasts in the same position they show on top of one another which looks like a bug.
Describe Preferred Solution
I would suggest one of two things:
- Implement toast stacking. If you present multiple toasts, they display in a list like the phone's notifi
Hi, I have been spending quite sometime wondering why a simple dropdown was not working.
Is not specified on the docs that the must have the class 'dropdown-trigger' (any other is not triggering the dropdown!)
Just a matter of documentation but crucial in order not to waste time :.)
example, this will not work:
<a class='dropdown-button-example btn' href='#' data-target='dropdo
We have a few references in the documentation where we use the old name of that OS. We should update them.
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 a boundary parameter. Setting Content-Type explicitly to multipart/form-data should result in an error (and it does).
How to reproduce
Follow an existing image upload example from
tl;dr
The default Spring MVC date/time form binding is slightly at odds with the way modern date and time form input fields are submitted by browsers. This results in the need for (quite a bit of) explicit binding configuration to make default form submissions from browsers work.
Details
The current Spring MVC way of binding of date value stems from the time when date and time values
Related PR: #6331
Suggested by @pimlie
When trailing slash handling is enforced (in any manner), it'd be great to have two things for improved DX:
Nuxt Link adaption
No matter how you input the links in your Nuxt link (be it as an object via named routes or via string), the component should enforce the set up trailing slash handling (adding or removing the slashes as needed).
U
The documentation for the HTTP exceptions in packages/common/exceptions/ is incorrect:
- The default return format for specific HTTP exceptions is
{ statusCode, error }, not{ statusCode, message }(this leads to #4044, but it may be a breaking change and it can wait); - The
statusCodein the result cannot be overwritten as described; - A proper explanation for the
messageargument
Description
At the moment it's quite hard to debug HTTP errors because the only information we get is:
HTTP/1.1 400 Bad Request returned for "https://example.com/".
It would be nice to have an opt-in option that would automatically open response payload and headers in order to log them in Sentry for example. It may require to handle a max lenght on the response payload.
In response to @ai's comment here, I suggest we use JSDoc annotations to provide type information in JavaScript files w/o a TypeScript build step.
Related
Badge on Buttons
Issue type
I'm submitting a ... (check one with "x")
- bug report
- feature request
- question about the decisions made in the repository
Issue description
How
Looks like the API documentation has not been regenerated since 3.0.2, as the maxBodySize value typo is still present here:
Dear developers. I write my custom specific web server for work with specific archive files, compression, encryption, etc. And i want to publish my web server under BSD-2-Clause license.
In my project i use Iris and Iris logger as basement.
I'm not going to use the name of your project to promote my project.
Can I publish my project under the BSD-2-Clause license?
Thanks.
-
Updated
Feb 19, 2020 - JavaScript
Do you want to request a feature or report a bug?
Bug
What's the current behavior?
In the docs, it says to use useMemo for the editor instance passed to the <Slate> component so it is "stable across renders". useMemo does not guarantee identity between renders (https:
Issue details
Camera.unproject does not return original value
Reproduction steps/code
public void create() {
Vector2 tmpvec = new Vector2();
tmpvec.set(0, 0);
Stage stage = new Stage(new ScreenViewport());
stage.stageToScreenCoordinates(tmpvec); // has the correct screen coords;
stage.screenToStageCoordinates(tmpvec);
- Framework7 version: 3.x, 4.x, 5.x
- Platform and Target: Android Cordova
Describe the bug
If you increase font size in Android system settings text in many components is misaligned
e.g. Buttons, Dialog.
To Reproduce
Install Framework7 Kitchen Sink as Cordova app.
Expected behavior
Correct position of component text e.g. Button, Dialog.
Actual Behavior
Wrong or
- Node Version: all
- Platform: Intel Xeon
The number of workers is hard-coded in dispatch.js of all cases e.g. :
https://github.com/eggjs/benchmark/blob/master/simple/dispatch.js#L5-L8
And the number of threads used to run the benchmark is also hard-coded, e.g.:
https://github.com/eggjs/benchmark/blob/master/simple/run.sh#
-
Updated
Feb 19, 2020 - JavaScript
-
Updated
Feb 19, 2020 - JavaScript
I noticed an undocumented behavior with listeners, where some of them run in reverse order of registration
- What is the rationale for that?
- Can this be added to the docs?
Additional context
Relevant lines of code from https://github.com/huge-success/sanic/blob/master/sanic/app.py#L1356
# -------------------------------------------- #
# Register start/stop eIn console/Controller.php we can read:
/**
* Prints a string to STDOUT.
*
* You may optionally format the string with ANSI codes by
* passing additional parameters using the constants defined in [[\yii\helpers\Console]].
*
* Example:
*
* ```
* $this->stdout('This will be red and underlined.', Console::FG_RED, Console::UNDERLINE);
Custom auth strategy
We are trying to migrate to v4. But now we are failing because we have no clue how to setup a custom auth (api-key) strategy. In v3 we registered our custom api-key strategy at passport like this:
this.passport.use('apikey', new Strategy(verifier));
// and
app.configure(apikey({ header: config.apiKey.header }));Is there any documentation how to setup a custom (api-key) authentic
-
Updated
Feb 19, 2020 - JavaScript
- Wikipedia
- Wikipedia
Version
2.6.11
Reproduction link
https://codepen.io/frOracle/pen/vYOEEVW
Steps to reproduce
use $http.delete in @click
What is expected?
$http.delete is a function, not unary operator
What is actually happening?
a warning "avoid using JavaScript unary operator as property name"
Related https://githu