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
/**************************************************************************** | |
* Copyright 2018-2021,2022 Thomas E. Dickey * | |
* Copyright 1998-2017,2018 Free Software Foundation, Inc. * | |
* * | |
* Permission is hereby granted, free of charge, to any person obtaining a * | |
* copy of this software and associated documentation files (the * | |
* "Software"), to deal in the Software without restriction, including * | |
* without limitation the rights to use, copy, modify, merge, publish, * | |
* distribute, distribute with modifications, sublicense, and/or sell * | |
* copies of the Software, and to permit persons to whom the Software is * |
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
/* include/ncurses_cfg.h. Generated automatically by configure. */ | |
/**************************************************************************** | |
* Copyright 2020 Thomas E. Dickey * | |
* Copyright 1998-2016,2017 Free Software Foundation, Inc. * | |
* * | |
* Permission is hereby granted, free of charge, to any person obtaining a * | |
* copy of this software and associated documentation files (the * | |
* "Software"), to deal in the Software without restriction, including * | |
* without limitation the rights to use, copy, modify, merge, publish, * | |
* distribute, distribute with modifications, sublicense, and/or sell * |
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 tmux statusbar config was created by tmuxline.vim | |
# on Thu, 05 Jan 2023 | |
set -g status-justify "centre" | |
set -g status "on" | |
set -g status-left-style "none" | |
set -g message-command-style "fg=colour4,bg=colour0" | |
set -g status-right-style "none" | |
set -g pane-active-border-style "fg=colour4" | |
set -g status-style "none,bg=colour0" |
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
# Copyright 2015 The Bazel Authors. All rights reserved. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, |
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
# Copyright 2015 The Bazel Authors. All rights reserved. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, |
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
{ | |
"innerJobA": { | |
"type": "javaprocess", | |
"props": { | |
"job.class": "azkaban.executor.SleepJavaJob", | |
"seconds": 1, | |
"fail": "false" | |
} | |
}, | |
"innerJobB": { |
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
javaprocess('innerJobA') { | |
job.class = azkaban.executor.SleepJavaJob | |
seconds = 1 | |
fail = false | |
property.with.variable = Name of class: ${job.class} | |
arithmetic = $($(1 + 3) - 2) | |
} | |
javaprocess('innerJobB') { | |
deps = innerJobA |
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
innerJobA.type = javaprocess | |
innerJobA.job.class = azkaban.executor.SleepJavaJob | |
innerJobA.seconds = 1 | |
innerJobA.fail = false | |
innerJobA.property.with.variable = Name of class: ${job.class} | |
innerJobA.arithmetic = $($(1 + 3) - 2) | |
innerJobB.type = javaprocess | |
innerJobB.job.class = azkaban.executor.SleepJavaJob | |
innerJobB.deps = innerJobA |
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
innerJobA: | |
type: javaprocess | |
job.class: azkaban.executor.SleepJavaJob | |
seconds: 1 | |
fail: false | |
property.with.variable: "Name of class: ${job.class}" | |
arithmetic: (1 + 3) - 2 | |
innerJobB: | |
type: javaprocess |
NewerOlder