KAFKA_HOSTNAME
- Hostname with your kafka service;USERNAME
- username;PASSWORD
- password
[ | |
{ | |
"type": "error", | |
"code": "unknown", | |
"details": "Error extracting glob pattern" | |
}, | |
{ | |
"type": "file", | |
"size": 1501, | |
"modified": "2023-08-16 10:35:36.158743465 +09:00" |
# Mac OS settings with tmux | |
[shell] | |
program = "/opt/homebrew/bin/tmux" | |
args = [ | |
"new-session", | |
"-A", | |
"-D", | |
"-s", | |
"main" |
use core::future::Future; | |
use core::pin::Pin; | |
use core::task; | |
use std::io; | |
///Future that resolves when program is requested to terminate | |
#[must_use = "Future does nothing without polling"] | |
pub struct Termination { | |
#[cfg(unix)] | |
term: tokio::signal::unix::Signal, |
# Make sure to create folder /www and grant write access to nginx and yourself | |
$DOMAIN="your domain" | |
# Create file structure to serve static file with challenge | |
sudo mkdir /www | |
sudo mkdir /www/.well-known/ | |
sudo mkdir /www/.well-known/acme-challenge | |
sudo chown nginx /www/.well-known/acme-challenge | |
#As example grant group write permission (e.g. you want www to belong to nginx user and anyone in nginx group) do: |
use core::{ptr, task, hint, mem}; | |
use core::cell::UnsafeCell; | |
use core::sync::atomic::{AtomicBool, AtomicU8, Ordering}; | |
mod noop { | |
use core::{ptr, task}; | |
const VTABLE: task::RawWakerVTable = task::RawWakerVTable::new(clone, action, action, action); | |
const WAKER: task::RawWaker = task::RawWaker::new(ptr::null(), &VTABLE); |
# HELP kube_cronjob_annotations Kubernetes annotations converted to Prometheus labels. | |
# TYPE kube_cronjob_annotations gauge | |
# HELP kube_cronjob_labels [STABLE] Kubernetes labels converted to Prometheus labels. | |
# TYPE kube_cronjob_labels gauge | |
# HELP kube_cronjob_info [STABLE] Info about cronjob. | |
# TYPE kube_cronjob_info gauge | |
kube_cronjob_info{namespace="default",cronjob="demo",schedule="* * * * *",concurrency_policy="Forbid"} 1 | |
# HELP kube_cronjob_created [STABLE] Unix creation timestamp | |
# TYPE kube_cronjob_created gauge | |
kube_cronjob_created{namespace="default",cronjob="demo"} 1.707200821e+09 |
155:DataManager (extras):309:in `frame_count=': Argument 0: Expected fixnum, TypeError | |
from 155:DataManager (extras):309:in `on_after_load' | |
from 167:Default System Options Setup:77:in `on_after_load' | |
from 764:Self Switch Reset:63:in `on_after_load' | |
from 733:Scene_Title (custom):324:in `command_quickload' | |
from 062:Window_Selectable:212:in `call' | |
from 062:Window_Selectable:212:in `call_handler' | |
from 063:Window_Command:136:in `call_ok_handler' | |
from 062:Window_Selectable:322:in `process_ok' | |
from 296:Mouse Window Integration (CURRENT):304:in `process_handling' |
import com.datastax.driver.core.exceptions.NoHostAvailableException; | |
import io.lettuce.core.RedisCommandExecutionException; | |
import org.slf4j.Logger; | |
import java.util.concurrent.Callable; | |
public class ExponentialBackoff { | |
private final long delay; | |
private final long maxAttempts; | |
private final Logger logger; |