forked from flux-framework/flux-sched
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request flux-framework#1211 from trws/process-blocked-in-c…
…ancel qmanager: always process unblocked jobs and make bf reactive during sched loop
- Loading branch information
Showing
10 changed files
with
234 additions
and
145 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
BasedOnStyle : google | ||
SpaceBeforeParens : Always | ||
IndentWidth : 4 | ||
BreakBeforeBraces : Custom | ||
BraceWrapping : | ||
BeforeElse : false | ||
AfterFunction : true | ||
UseTab: Never | ||
AllowShortIfStatementsOnASingleLine : false | ||
ConstructorInitializerAllOnOneLineOrOnePerLine : true | ||
AllowShortFunctionsOnASingleLine : false | ||
AllowShortLoopsOnASingleLine : false | ||
BinPackParameters : false | ||
BinPackArguments : false | ||
AllowAllParametersOfDeclarationOnNextLine : false | ||
AlignTrailingComments : true | ||
ColumnLimit : 100 | ||
|
||
# do not put all arguments on one line unless it's the same line as the call | ||
PenaltyBreakBeforeFirstCallParameter : 10000000 | ||
PenaltyReturnTypeOnItsOwnLine : 65000 | ||
PenaltyBreakString : 10 | ||
|
||
# preserve formatting of arguments to pack/unpack functions | ||
# found by running: rg --only-matching --no-filename --no-line-number '(flux|json)(_[^ ,()]+)?_(un)?pack' | sort -u | ||
WhitespaceSensitiveMacros : | ||
- flux_conf_unpack | ||
- flux_event_pack | ||
- flux_event_publish_pack | ||
- flux_event_unpack | ||
- flux_job_result_get_unpack | ||
- flux_jobspec1_attr_pack | ||
- flux_jobspec1_attr_unpack | ||
- flux_jobspec_info_unpack | ||
- flux_jobtap_event_post_pack | ||
- flux_kvs_lookup_get_unpack | ||
- flux_kvs_lookup_unpack | ||
- flux_kvs_txn_pack | ||
- flux_lookup_get_unpack | ||
- flux_mrpc_pack | ||
- flux_msg_pack | ||
- flux_msg_unpack | ||
- flux_plugin_arg_pack | ||
- flux_plugin_arg_unpack | ||
- flux_plugin_args_unpack | ||
- flux_plugin_conf_unpack | ||
- flux_request_unpack | ||
- flux_respond_pack | ||
- flux_rpc_get_unpack | ||
- flux_rpc_pack | ||
- flux_shell_getopt_unpack | ||
- flux_shell_info_unpack | ||
- flux_shell_jobspec_info_unpack | ||
- flux_shell_rank_info_unpack | ||
- flux_shell_rpc_pack | ||
- flux_shell_setopt_pack | ||
- flux_shell_setopt_unpack | ||
- flux_shell_task_info_unpack | ||
- json_pack | ||
- json_unpack | ||
|
||
# treat foreach macros as for loops | ||
ForEachMacros : | ||
- json_array_foreach | ||
- json_object_foreach | ||
|
||
SortIncludes : false | ||
BreakBeforeBinaryOperators : NonAssignment | ||
AlignAfterOpenBracket: Align | ||
AlignOperands : true | ||
BreakBeforeTernaryOperators : true | ||
SpaceBeforeSquareBrackets: false | ||
IndentPPDirectives: None | ||
NamespaceIndentation: None | ||
SpaceAfterTemplateKeyword: false | ||
DerivePointerAlignment: false | ||
PointerAlignment: Right | ||
|
||
# | ||
# vi:tabstop=4 shiftwidth=4 expandtab ft=yaml | ||
# |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.