Skip to content

Commit

Permalink
Format all .java files (#132)
Browse files Browse the repository at this point in the history
Signed-off-by: Yannic Bonenberger <yannic@engflow.com>
  • Loading branch information
Yannic authored Nov 27, 2023
1 parent 84392c1 commit 9426bb2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ public class BazelProfileConstants {
"Remote execution process wall time";
public static final String CAT_REMOTE_EXECUTION_QUEUING_TIME = "Remote execution queuing time";
public static final String CAT_REMOTE_EXECUTION_SETUP = "Remote execution setup";

/**
* This event does not necessarily imply remote execution was enabled. For example, it is also
* reported when setting the Bazel flag `--disk_cache`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ public class NegligiblePhaseSuggestionProvider extends SuggestionProviderBase {
BazelProfilePhase.ANALYZE,
BazelProfilePhase.ANALYZE_AND_EXECUTE,
BazelProfilePhase.EXECUTE);

// Don't apply this check to profiles shorter than this duration
private static final Duration MIN_DURATION = Duration.ofSeconds(30);
// Non-negligible phases should be less than this percentage of total duration (1.0 = 1%)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@

public class SuggestionProviderUtil {
private static final Logger logger = Logger.getLogger(SuggestionProviderUtil.class.getName());

/**
* Convenience method for retrieving all available {@link SuggestionProvider}s. When adding a new
* SuggestionProvider, also add it to the list returned by this method.
Expand Down

0 comments on commit 9426bb2

Please sign in to comment.