$ sysctl kern.maxfiles
kern.maxfiles: 12288
$ sysctl kern.maxfilesperproc
kern.maxfilesperproc: 10240
$ ulimit -n
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Check for primes starting at 2 since 1 is not prime by definition | |
| number = 2 | |
| # Store all primes in this list | |
| primes = [] | |
| # Keep looking for primes until we find 1000 of them | |
| while len(primes) < 1000: | |
| # Assume the number is prime until proven otherwise | |
| is_prime = True |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 11:41:10 dhcpx-208-90:yeti $ yeti test/functional/fixture/io.html | |
| Creating a Hub. Open `yeti --server` in another Terminal to reuse browsers for future batches. | |
| Waiting for agents to connect at http://192.168.56.1:9000 | |
| ...also available locally at http://localhost:9000 | |
| When ready, press Enter to begin testing. | |
| Agent connected: Chrome (27.0.1453.110) / Mac OS from 127.0.0.1 | |
| ✓ Testing started on Chrome (27.0.1453.110) / Mac OS | |
| ✓ Agent completed: Chrome (27.0.1453.110) / Mac OS |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset=utf-8 /> | |
| <title>Axis EOL</title> | |
| <style> | |
| #rich-container { | |
| width: 440px; | |
| } | |
| </style> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| YUI().use('json-stringify', function (Y) { | |
| var ua = {}; | |
| Y.Object.each(Y.UA, function (v, k) { | |
| if (v) { | |
| ua[k] = v; | |
| } | |
| }); | |
| log(Y.JSON.stringify(ua, null, 4)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/src/get/tests/unit/assets/get-test.js b/src/get/tests/unit/assets/get-test.js | |
| index feb137b..0b6cb09 100644 | |
| --- a/src/get/tests/unit/assets/get-test.js | |
| +++ b/src/get/tests/unit/assets/get-test.js | |
| @@ -2,8 +2,6 @@ YUI.add('get-test', function (Y) { | |
| Y.GetTests = new Y.Test.Suite("Get"); | |
| - Y.GetTests.TEST_FILES_BASE = "getfiles/"; | |
| - |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <head> | |
| <style> | |
| button { | |
| font-size: 30px; | |
| width: 300px; | |
| height:150px; | |
| } | |
| </style> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <head> | |
| <style> | |
| #good, | |
| #bad { | |
| font-size: 30px; | |
| width: 300px; | |
| height:150px; | |
| } | |
| </style> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <head> | |
| <style> | |
| #good, | |
| #bad { | |
| font-size: 30px; | |
| width: 300px; | |
| height:150px; | |
| } | |
| </style> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <head> | |
| <style> | |
| #good, | |
| #bad { | |
| font-size: 30px; | |
| width: 300px; | |
| height:150px; | |
| } | |
| </style> |