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
| filenames | |
| .parallelStream() | |
| .forEach(f -> writeFile(tempDirWithPrefix.resolve(f), data)); |
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
| #!/sbin/runscript | |
| # | |
| # name: /etc/init.d/oracle | |
| # description: starts and stops Oracle on Gentoo Linux | |
| # author: Brian.Duff@oracle.com | |
| # | |
| # Change this to your Oracle user | |
| oracle_user=ora92 | |
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
| import java.util.*; | |
| public class TestClass | |
| { | |
| public static void main( String[] args ) | |
| { | |
| List<String> words = new ArrayList<String>(); | |
| words.add( "This" ); | |
| words.add( " is" ); | |
| words.add( " cool :)" ); |
NewerOlder