Commit Graph

4179 Commits

Author SHA1 Message Date
DiegoMarti2 9cc307e108 baeldung-articles : BAEL-6752 (#16195)
* baeldung-articles : BAEL-6752

When to Use Setter Methods or Constructors for Setting a Variable's Value in Java.

* baeldung-articles : BAEL-6752

When to Use Setter Methods or Constructors for Setting a Variable's Value in Java.

* Updating ConstructorsVersusSetterMethodsUnitTest.java

Rename functions
2024-03-22 14:08:14 -07:00
MohamedHelmyKassab 663d1831da This commit is related to BAEL-6404 (#16201)
This commit aims to add a test class "UTF8ToISOUnitTest.java" To convert UTF-8 to ISO-8859-1 in Java.
2024-03-22 11:15:31 -07:00
Harry9656 04b7d05a76 [JAVA-32305] Failing test for External UrlCheckerUnitTest in core-java-networking-2 (#16174) 2024-03-22 16:36:21 +01:00
Loredana Crusoveanu 525d43f5b1 Merge pull request #16189 from rcalago/master
Update on README.md
2024-03-22 08:28:14 +02:00
Dominique Plante 0248e55803 Merge pull request #16018 from Imranalam28/master
[BAEL-7527] Find Peak Elements of a List
2024-03-21 15:59:09 -07:00
rcalago 1b599ba18d Update README.md 2024-03-21 23:51:24 +08:00
rcalago c49c851800 Update README.md 2024-03-21 23:50:05 +08:00
rcalago 37004adaa0 Update README.md 2024-03-21 23:46:26 +08:00
rcalago add089ed5e Update README.md 2024-03-21 23:39:20 +08:00
rcalago b31ede967f Update README.md 2024-03-21 23:37:05 +08:00
rcalago 4a87ccbb01 Update README.md 2024-03-21 23:34:23 +08:00
rcalago 26c5a38a28 Update README.md 2024-03-21 23:24:39 +08:00
rcalago debd762c51 Update README.md 2024-03-21 23:14:03 +08:00
rcalago 3019e85e4f Update README.md 2024-03-21 23:12:06 +08:00
rcalago 9dc79459fb Update README.md 2024-03-21 23:10:40 +08:00
Wynn Teo 1d289c30b9 Bael 7641 (#16099)
* BAEL-7490 read write file in separate thread

* Change the to try resources

* Update the code to sync with article

* code demostration for ExecutorService vs CompletableFuture
2024-03-20 20:22:00 -05:00
DiegoMarti2 30b95b0161 baeldung-articles : BAEL-6402 (#16185)
* baeldung-articles : BAEL-6402

Normalizing the EOL Character in Java

* Add dep to pom.xml file
2024-03-20 15:02:21 -07:00
Kai.Yuan 0242528345 [add-to-immutable-list] replace list.copyof with collections.unmodifiableList 2024-03-20 17:20:04 +01:00
Wynn Teo 503774a05e Bael 7616 (#15985)
* BAEL-7490 read write file in separate thread

* Change the to try resources

* Update the code to sync with article

* BAEL-7616 check if date object is yesterday

* Update test vars

* change the variable name prefix

* Update the test variable name
2024-03-19 20:07:54 -05:00
Kai.Yuan 356624bf22 [add-to-immutable-list] add elements to immutable list 2024-03-19 23:54:56 +01:00
danielmcnally285 9439463838 move BeforeEach to top of class 2024-03-19 20:02:44 +00:00
danielmcnally285 ab35aeabf7 Merge branch 'eugenp:master' into danielmcnally285_last_n_characters 2024-03-19 19:59:07 +00:00
Kai.Yuan 9456b4b953 [map-stream-to-map] updates.. 1 2024-03-19 09:32:58 +01:00
MohamedHelmyKassab 51ec697ebc This commit is related to BAEL-6825 (#15981)
* This commit is related to BAEL-6825

This commit aims to add a test class "IntegersBitLevelUnitTest.java".

* Update IntegersBitLevelUnitTest.java

* Update IntegersBitLevelUnitTest.java

* Update IntegersBitLevelUnitTest.java

* Update IntegersBitLevelUnitTest.java
2024-03-18 20:24:13 +00:00
Bipin kumar 75ed16ffb5 [JAVA-31565] Changes made for update commons-validator (#16131) 2024-03-18 20:31:58 +01:00
Kai.Yuan 614d910766 [map-stream-to-map] merge a stream of maps to a single map 2024-03-18 20:02:15 +01:00
DiegoMarti2 bb3e43fdec baeldung-articles : BAEL-6596 (#16143)
Check if a given time lies between two times regardless of date.
2024-03-18 11:40:01 -07:00
Liam Williams 89cb132fe1 Merge pull request #16137 from sk1418/calc-percentile
Calc percentile
2024-03-18 16:58:54 +00:00
Kai.Yuan e959114bc7 [add-to-immutable-list] wip 2024-03-17 17:27:57 +01:00
anujgaud cd5a95f764 Included import statements in Test file 2024-03-17 01:10:47 +05:30
anujgaud 9d0024b926 Apply formatting 2024-03-16 23:49:41 +05:30
anujgaud 576925e862 Create SetMatrixToZero.java 2024-03-16 23:36:32 +05:30
anujgaud 44aab18987 Delete core-java-modules/core-java-arrays-operations-advanced-2/src/main/java/com/baeldung/matrixToZero directory 2024-03-16 23:34:03 +05:30
anujgaud f88022796a Create SetMatrixToZeroUnitTest.java 2024-03-16 23:32:11 +05:30
anujgaud 2922f0619f Create SetMatrixToZero.java 2024-03-16 23:21:47 +05:30
danielmcnally285 96450ee79d add new lines before assert statements 2024-03-16 12:34:35 +00:00
danielmcnally285 82ca2b8b92 last n characters from string unit tests 2024-03-16 12:23:28 +00:00
Bipin kumar 8a2f4211c3 JAVA-32170_C_11: Changes made for Fix formatting of POMs - C_11 (#16112) 2024-03-15 23:54:51 +02:00
Bipin kumar 684902d716 JAVA-32170_C_10: Changes made for Fix formatting of POMs - C_10 (#16111) 2024-03-15 23:53:26 +02:00
Bipin kumar c3155551b6 JAVA-32170_C_09: Changes made for Fix formatting of POMs - C_09(#16110) 2024-03-15 23:52:33 +02:00
Bipin kumar f23750dcdc JAVA-32170_C_08: Changes made for Fix formatting of POMs - C_08 (#16109) 2024-03-15 23:51:19 +02:00
Bipin kumar ce581549b9 JAVA-32170_C_07: Changes made for Fix formatting of POMs - C_07 (#16108) 2024-03-15 23:50:09 +02:00
Bipin kumar 8f0bbdb6c0 JAVA-32170_C_06: Changes made for Fix formatting of POMs - C_06 (#16107) 2024-03-15 23:48:49 +02:00
Bipin kumar d8aa0eeaef JAVA-32170_C_05: Changes made for Fix formatting of POMs - C_05(#16106) 2024-03-15 23:46:57 +02:00
Bipin kumar 38c569055d JAVA-32170: Changes made for Fix formatting of POMs - C_03 (#16105) 2024-03-15 23:43:53 +02:00
Bipin kumar c653562b79 JAVA-32170: Changes made for Fix formatting of POMs - C_02(#16104) 2024-03-15 23:42:20 +02:00
Kai.Yuan 2195e2c404 [calc-percentile] add 0 and 100 boundary test cases 2024-03-15 19:47:55 +01:00
adalagandev 83cc018515 BAEL-7131 - Removed InputStreamUnitTest as per Final review sugestions. 2024-03-15 18:08:35 +01:00
Bipin kumar 9236adee65 JAVA-32170: Changes made for Fix formatting of POMs - C_01(#16103) 2024-03-15 17:57:32 +02:00
Kai.Yuan 4c48476258 [calc-percentile] calc percentile 2024-03-15 14:45:38 +01:00