[Improvement][Style] Fix remaining style errors and wildcard imports (#12412)
* Fix remaining style errors and wildcard imports
* Upgrade spotless to the latest stable version, exclude .github folder from spotless check and fix dead link
* Fix spotless matching scope of markdown files
@ -49,4 +49,5 @@ DolphinScheduler provides the following network port configurations for normal o
The minimum supported version of Google Chrome is version 85, but version 90 or above is recommended.
The minimum supported version of Google Chrome is version 85, but version 90 or above is recommended.
## Synchronize clocks
## Synchronize clocks
To avoid problems with internal cluster communications that can impact your task execution, make sure that the clocks on all of the cluster nodes are synchronized from a common clock source, such as using Chrony and/or NTP. Synchronizing the time ensures that every node in the cluster has the same time.
To avoid problems with internal cluster communications that can impact your task execution, make sure that the clocks on all of the cluster nodes are synchronized from a common clock source, such as using Chrony and/or NTP. Synchronizing the time ensures that every node in the cluster has the same time.
Preconditions.checkArgument(!Objects.isNull(botAccessToken),"WebexTeams bot access token can not be null");
Preconditions.checkArgument(!Objects.isNull(botAccessToken),"WebexTeams bot access token can not be null");
Preconditions.checkArgument(!Objects.isNull(destination),"WebexTeams message destination can not be null");
Preconditions.checkArgument(!Objects.isNull(destination),"WebexTeams message destination can not be null");
Preconditions.checkArgument((!Objects.isNull(roomId)||!Objects.isNull(toPersonId)||!Objects.isNull(toPersonEmail)),"WebexTeams message destination could not be determined. Provide only one destination in the roomId, toPersonEmail, or toPersonId field");