This file contains hidden or 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
pr 06 15:15:00 staging-worker-0 systemd[1]: Started Rancher System Agent. | |
Apr 06 15:15:00 staging-worker-0 rancher-system-agent[3443]: time="2023-04-06T15:15:00Z" level=info msg="Rancher System Agent version v0.2.13 (4fa9427) is starting" | |
Apr 06 15:15:00 staging-worker-0 rancher-system-agent[3443]: time="2023-04-06T15:15:00Z" level=info msg="Using directory /var/lib/rancher/agent/work for work" | |
Apr 06 15:15:00 staging-worker-0 rancher-system-agent[3443]: time="2023-04-06T15:15:00Z" level=info msg="Starting remote watch of plans" | |
Apr 06 15:15:01 staging-worker-0 rancher-system-agent[3443]: E0406 15:15:01.149583 3443 memcache.go:206] couldn't get resource list for management.cattle.io/v3: | |
Apr 06 15:15:01 staging-worker-0 rancher-system-agent[3443]: time="2023-04-06T15:15:01Z" level=info msg="Starting /v1, Kind=Secret controller" | |
Apr 06 15:15:01 staging-worker-0 rancher-system-agent[3443]: time="2023-04-06T15:15:01Z" level=info msg="Detected first start, force-applying one-time instruction set" | |
Apr 06 15:15:0 |
This file contains hidden or 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
installing github.com/coreos/go-etcd/etcd ... 2015/09/18 11:24:19 failed installing packages: failed building package github.com/coreos/go-etcd/etcd, error: # github.com/coreos/go-etcd/etcd | |
./response.generated.go:112: r.EncodeMapKVSeparator undefined (type codec.encDriver has no field or method EncodeMapKVSeparator) | |
./response.generated.go:123: r.EncodeArrayEntrySeparator undefined (type codec.encDriver has no field or method EncodeArrayEntrySeparator) | |
./response.generated.go:137: r.EncodeMapEntrySeparator undefined (type codec.encDriver has no field or method EncodeMapEntrySeparator) | |
./response.generated.go:143: r.EncodeMapKVSeparator undefined (type codec.encDriver has no field or method EncodeMapKVSeparator) | |
./response.generated.go:158: r.EncodeArrayEntrySeparator undefined (type codec.encDriver has no field or method EncodeArrayEntrySeparator) | |
./response.generated.go:173: r.EncodeMapEntrySeparator undefined (type codec.encDriver has no field or method EncodeMapEntrySeparator) | |
./response.generated.go:179: |
This file contains hidden or 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
(ns travian.troops | |
(:gen-class) | |
(:require [clj-http.client :as client])) | |
(use | |
'travian.parse | |
'[travian.request :as request] | |
) | |
(defn moving? |
This file contains hidden or 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
runtime: checkdead: find g 1 in status 1 | |
fatal error: checkdead: runnable g | |
runtime stack: | |
runtime.throw(0x600d3c) | |
/usr/lib/go/src/runtime/panic.go:491 +0xad | |
checkdead() | |
/usr/lib/go/src/runtime/proc.c:2828 +0x287 | |
mput(0x604ae0) | |
/usr/lib/go/src/runtime/proc.c:3175 +0x47 |
This file contains hidden or 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
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCzdPgx7VRfMMRMSS7RJsaItuvLa6tle9QI9FZb3PtnjOfzjCO3gDU/GEC9YyELVtqkZAmPbZtDGiCpalfJfy1vBRhSzS7o23J90ZF27pxbfpxRmh2oM9c3NJc0BOfxTmf1UL/BQz4Ckronlk40OWuOYYeX2nhdRURVt1+/YxyfgV4o52AUTenmOCYtQCf8tShJQJoD+LpJ4TBm31ptJ2iAqGeunYosuPFH7J7txh9IU4OoJrPiMMKz1GG1aGzavMz4usp5+2tuf366SxjTYh+7om7x23pmZpBnK5z1qucijf4oCTCP9b/p1OJf8e9LF5BCZzcgIg/kXPFmRdotPIof patr29@diss |
This file contains hidden or 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
#define PRETTY //Comment out when you no longer need to read JSON to disable pretty print system-wide | |
#define USEFLOAT //Use floats for numbers instead of doubles (enable if you're getting too many significant digits in string output) | |
using UnityEngine; | |
using System.Collections; | |
using System.Collections.Generic; | |
/* | |
* http://www.opensource.org/licenses/lgpl-2.1.php | |
* JSONObject class |
This file contains hidden or 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
# -*- coding: utf8 -*- | |
import pytest | |
ADDITION = '+' | |
SUBTRACTION = '-' | |
MULTIPLICATION = '*' | |
DIVISION = '/' | |
MODULO = '%' |
This file contains hidden or 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
struct Inventory { | |
slot1: Slot, | |
slot2: Slot, | |
slot3: Slot | |
} | |
struct User { | |
name: Field, | |
inventory: Inventory |
This file contains hidden or 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
@pytest.fixture | |
def gate_socket(): | |
socket = zmq.Context(1).socket(zmq.REQ) | |
socket.connect(GATE_CHANNEL) | |
return socket | |
def test_executor(performer): | |
assert performer.executor(params('user')) == USER_AUTH_RESPONSE |
This file contains hidden or 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
class UserEnergyUpdate(BaseCommand): | |
params = 'uid', | |
requires = 'user', | |
@getter | |
def session(self): | |
return RSession() | |
@getter |
NewerOlder