- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of about 10,000 for doesn (0.37 sec)
-
TODO/design-doesnt-scale.md
> * 原文地址:[Design Doesn’t Scale](https://medium.com/@hellostanley/design-doesnt-scale-4d81e12cbc3e#.pp9zks7wq) * 原文作者:[Stanley Wood](https://medium.com/@hellostanley?source=post_header_lockup) * 译文出自:[掘金翻译计划](https://github.com/xitu/gold-miner) * 译者: * 校对者: # Design Doesn’t Scale. #
Plain Text - Registered: 2023-02-02 14:49 - Last Modified: 2017-01-11 08:48 - 9.6K bytes - Viewed (0) -
docs/faq/DesignDecisions.md
## Table of Contents - [Why doesn't Redux pass the state and action to subscribers?](#why-doesnt-redux-pass-the-state-and-action-to-subscribers) - [Why doesn't Redux support using classes for actions and reducers?](#why-doesnt-redux-support-using-classes-for-actions-and-reducers) - [Why does the middleware signature use currying?](#why-does-the-middleware-signature-use-currying)
Plain Text - Registered: 2023-02-05 03:43 - Last Modified: 2021-06-26 18:31 - 10K bytes - Viewed (0) -
docs/_style/prism-master/tests/languages/applescript/operator_feature.test
is equal...
Plain Text - Registered: 2023-02-02 20:08 - Last Modified: 2018-12-19 06:09 - 2.5K bytes - Viewed (0) -
test/unit/plugins/provisioners/shell/provisioner_test.rb
Ruby - Registered: 2023-02-06 14:15 - Last Modified: 2020-05-26 20:35 - 20.7K bytes - Viewed (0) -
plugins/chucknorris/fortunes/chucknorris
% Chuck Norris doesn't churn butter. He roundhouse kicks the cows and the butter comes straight out. % Chuck Norris doesn't eat, he just sucks the energy out of food by staring at it. % Chuck Norris doesn't exhale. The air runs desperately scared out of his lungs. % Chuck Norris doesn't go hunting.... CHUCK NORRIS GOES KILLING. % Chuck Norris doesn't let it go. % Chuck Norris doesn't like Mudkipz. %
Plain Text - Registered: 2023-02-02 12:35 - Last Modified: 2021-12-01 11:20 - 22K bytes - Viewed (0) -
docs/_style/prism-master/examples/prism-markdown.html
If a failure is listed here, it doesn’t mean it will never be fixed. This is more of a “known bugs” list, just with a certain type of bug. </p> <h3>Nesting of elements is not fully supported</h3> <pre><code>_ **bold** inside italic DOESN'T work _ __ but *italic* inside bold DOES work __ [Link partially *italic* DOESN'T work](http://example.com) _ [But link inside italic DOES work](http://example.com) _
HTML - Registered: 2023-02-02 20:08 - Last Modified: 2018-12-19 06:09 - 1.9K bytes - Viewed (0) -
docs/long-form/file-change-watcher-efficiency.md
`inotify` (on Linux) and `kqueue` (on OSX), and a slower but more reliable "stat polling" method. `inotify`/`kqueue` is less reliable because it does not work on every system, and sometimes `meteor` can't even tell if it doesn't work. Stat polling is slower in two ways: it only looks for changes once every "polling interval", and the actual check that it does consumes more CPU. By default, `meteor` uses both `inotify`/`kqueue` and stat polling, with a polling interval of 5 seconds; if it detects...
Plain Text - Registered: 2023-02-01 22:11 - Last Modified: 2021-10-01 15:05 - 4.9K bytes - Viewed (0) -
test/integration/model/sync.test.js
const results = await this.sequelize.getQueryInterface().showIndex(User.getTableName()); if (dialect === 'sqlite') { // SQLite doesn't treat primary key as index // However it does create an extra "autoindex", except primary == false expect(results).to.have.length(4 + 1); } else { expect(results).to.have.length(4 + 1);
JavaScript - Registered: 2023-02-01 14:16 - Last Modified: 2020-06-28 08:45 - 15.2K bytes - Viewed (0) -
feature-detects/input/inputtypes.js
docElement.removeChild(inputElem); } else if (/^(search|tel)$/.test(inputElemType)) { // Spec doesn't define any special parsing or detectable UI // behaviors so we pass these through as true // Interestingly, opera fails the earlier test, so it doesn't // even make it here. } else if (/^(url|email)$/.test(inputElemType)) {
JavaScript - Registered: 2023-02-06 20:07 - Last Modified: 2021-03-10 07:18 - 3.4K bytes - Viewed (1) -
test/unit/lib/utils/fs/fileExistsSync.test.js
describe('When reading a file', () => { it('should detect if a file exists', () => { const file = fileExistsSync(__filename); expect(file).to.equal(true); }); it("should detect if a file doesn't exist", () => { const noFile = fileExistsSync(path.join(__dirname, 'XYZ.json')); expect(noFile).to.equal(false); }); }); describe('When reading a symlink to a file', () => {
JavaScript - Registered: 2023-01-31 02:18 - Last Modified: 2021-11-17 14:34 - 2K bytes - Viewed (0)