- Blog - When to use parallel streams?
- Blog - Sequential vs Parallel vs Concurrent
- Blog - Nested Parallel Streams more concurrency less performance
- Blob - Why your parallel stream might not be parallel at all
- Blog - Synchronous vs Asynchronous
- Blog - Virtual thread with Spring boot
- Video - Java 24 Stops Pinning Virtual Threads (Almost) - Inside Java Newscast #80
- [Blog - Netflix blog: Dude where's my lock?](https://netflixtechblog.com/java-21-virt
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
| NAME TITLE | |
| abusiveexperiencereport.googleapis.com Abusive Experience Report API | |
| acceleratedmobilepageurl.googleapis.com Accelerated Mobile Pages (AMP) URL API | |
| accessapproval.googleapis.com Access Approval API | |
| accesscontextmanager.googleapis.com Access Context Manager API | |
| actions.googleapis.com Actions API | |
| adexchangebuyer-json.googleapis.com Ad Exchange Buyer API | |
| adexchangebuyer.googleapis.com Ad Exchange Buyer API II | |
| adexchangeseller.googleapis.com Ad Exchange Seller API | |
| adexperiencereport.googleapis.com Ad Experience Report API |
http://www.oreilly.com/programming/free/files/microservices-for-java-developers.pdf
http://www.oreilly.com/programming/free/files/microservices-for-java-developers.epub
http://www.oreilly.com/programming/free/files/microservices-for-java-developers.mobi
http://www.oreilly.com/programming/free/files/modern-java-ee-design-patterns.pdf
http://www.oreilly.com/programming/free/files/modern-java-ee-design-patterns.epub
http://www.oreilly.com/programming/free/files/modern-java-ee-design-patterns.mobi
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
| #!/bin/bash | |
| # Adicione um novo remote; pode chamá-lo de "upstream": | |
| git remote add upstream https://github.com/usuario/projeto.git | |
| # Obtenha todos os branches deste novo remote, | |
| # como o upstream/master por exemplo: | |
| git fetch upstream |
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
| document.querySelector('#readme').setAttribute('style', 'position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 100; background-color: white') | |
| document.querySelector('body').appendChild(document.querySelector('#readme')) | |
| window.print() |
