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
| #!/bin/bash | |
| set -e | |
| CONTAINERD_VERSION=${CONTAINERD_VERSION:-2.1.4} | |
| RUNC_VERSION=${RUNC_VERSION:-1.3.1} | |
| KUBERNETES_VERSION=${KUBERNETES_VERSION:-1.33} | |
| INSTALL_PREFIX=${INSTALL_PREFIX:-/usr/local} | |
| ARCH=$(uname -m |sed -e 's/x86_64/amd64/' -e 's/aarch64/arm64/') | |
| cat <<EOF |
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
| Name: nginx-untrusted | |
| Namespace: default | |
| Node: kata/10.138.0.2 | |
| Start Time: Tue, 22 May 2018 17:29:25 +0000 | |
| Labels: <none> | |
| Annotations: io.kubernetes.cri-o.TrustedSandbox=false | |
| io.kubernetes.cri.untrusted-workload=true | |
| kubectl.kubernetes.io/last-applied-configuration={"apiVersion":"v1","kind":"Pod","metadata":{"annotations":{"io.kubernetes.cri-o.TrustedSandbox":"false","io.kubernetes.cri.untrusted-workload":"true"},... | |
| Status: Running | |
| IP: 192.168.86.196 |
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
| ;;; jon-light-theme --- A light theme. | |
| (deftheme jon-light | |
| "Jon's Light Theme") | |
| (custom-theme-set-variables | |
| 'jon-light | |
| '(whitespace-space-after-tab-regexp (quote (" +\\( +\\)" . "\\( +\\) +"))) | |
| '(whitespace-style | |
| (quote | |
| (face trailing tabs lines-tail empty indentation spaces space-after-tab space-before-tab tab-mark space-mark)))) |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>ANSIBlackColor</key> | |
| <data> | |
| YnBsaXN0MDDUAQIDBAUGKyxYJHZlcnNpb25YJG9iamVjdHNZJGFyY2hpdmVyVCR0b3AS | |
| AAGGoKcHCBMZHSQoVSRudWxs1QkKCwwNDg8QERJcTlNDb21wb25lbnRzVU5TUkdCXE5T | |
| Q29sb3JTcGFjZV8QEk5TQ3VzdG9tQ29sb3JTcGFjZVYkY2xhc3NPECkwLjAyNzQ1MDk4 | |
| MDM5IDAuMjExNzY0NzA1OSAwLjI1ODgyMzUyOTQgMU8QJzAuMDM5MzgwNzM2NjUgMC4x |
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
| set-option -g base-index 1 | |
| set-option -g default-terminal screen-256color | |
| set-option -g set-clipboard on | |
| set-option -g mouse on | |
| bind-key -n M-1 select-window -t 1 | |
| bind-key -n M-2 select-window -t 2 | |
| bind-key -n M-3 select-window -t 3 |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>ANSIBlackColor</key> | |
| <data> | |
| YnBsaXN0MDDUAQIDBAUGKyxYJHZlcnNpb25YJG9iamVjdHNZJGFyY2hpdmVyVCR0b3AS | |
| AAGGoKcHCBMZHSQoVSRudWxs1QkKCwwNDg8QERJcTlNDb21wb25lbnRzVU5TUkdCXE5T | |
| Q29sb3JTcGFjZV8QEk5TQ3VzdG9tQ29sb3JTcGFjZVYkY2xhc3NPECkwLjAyNzQ1MDk4 | |
| MDM5IDAuMjExNzY0NzA1OSAwLjI1ODgyMzUyOTQgMU8QJzAuMDM5MzgwNzM2NjUgMC4x |
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
| import Hypervisor | |
| class X86InitialState { | |
| let registers: Dictionary<hv_x86_reg_t, UInt64> = [ | |
| HV_X86_RIP: 0xfff0, | |
| HV_X86_RFLAGS: 0x2, | |
| HV_X86_RAX: 0, | |
| HV_X86_RCX: 0, | |
| HV_X86_RDX: 0xf00, | |
| HV_X86_RBX: 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
| #include <stdio.h> | |
| #include <string.h> | |
| #include <signal.h> | |
| #include <netinet/in.h> | |
| #include <sys/socket.h> | |
| #include <sys/types.h> | |
| #include <stdlib.h> | |
| #include <unistd.h> | |
| #include <sys/time.h> |
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
| * os- | |
| * `y//` | |
| * `oNy+ | |
| * .s:y | |
| * /ooy: | |
| * :oM:o- | |
| * `od`y- | |
| * os`m+: | |
| * //+s.y- | |
| * `/m.`y- |
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
| from sys import argv | |
| from math import sqrt | |
| maxval = int(argv.pop()) | |
| x = [ True ] * maxval | |
| x[0] = False | |
| for n in xrange(1, int(sqrt(maxval + 1)), 2): | |
| if x[n - 1]: | |
| m = n ** 2 |
NewerOlder