"test": "$npm_config_bin/istanbul cover $npm_config_bin/_mocha -- --compilers ts:ts-node/register test/*.ts",
"test": "$npm_config_bin/istanbul cover $npm_config_bin/_mocha -- --compilers ts:espower-typescript/guess test/*.ts",
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
annotations: | |
deployment.kubernetes.io/revision: "1" | |
creationTimestamp: "2024-01-31T05:52:25Z" | |
generation: 1 | |
labels: | |
app: containerssh | |
name: containerssh |
apiVersion: v1 | |
data: | |
config.yaml: | | |
log: | |
level: debug | |
ssh: | |
hostkeys: | |
- /etc/containerssh/host.key | |
auth: | |
password: |
{"timestamp":"2024-01-31T05:52:50Z","level":"debug","code":"SSH_CONNECTED","message":"Client connected","details":{"connectionId":"6c13177770d0425687ca67b9f355df18","module":"ssh","remoteAddr":"106.72.211.193"}} | |
{"timestamp":"2024-01-31T05:52:50Z","level":"info","code":"SSH_AUTH_UNAVAILABLE","message":"Keyboard-interactive authentication for user test-user currently unavailable. (Keyboard-interactive authentication is disabled.)","details":{"connectionId":"6c13177770d0425687ca67b9f355df18","method":"keyboard-interactive","module":"ssh","reason":"Keyboard-interactive authentication is disabled.","remoteAddr":"106.72.211.193","username":"test-user"}} | |
{"timestamp":"2024-01-31T05:52:52Z","level":"debug","code":"AUTH","message":"Password authentication request","details":{"authtype":"password","connectionId":"6c13177770d0425687ca67b9f355df18","module":"auth","url":"/password","username":"test-user"}} | |
{"timestamp":"2024-01-31T05:52:52Z","level":"debug","code":"HTTP_CLIENT_REQUEST","message":"HTTP POST request to ht |
"test": "$npm_config_bin/istanbul cover $npm_config_bin/_mocha -- --compilers ts:ts-node/register test/*.ts",
"test": "$npm_config_bin/istanbul cover $npm_config_bin/_mocha -- --compilers ts:espower-typescript/guess test/*.ts",
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "node", | |
"request": "launch", | |
"protocol": "inspector", | |
"name": "Run Mocha", | |
"program": "${workspaceRoot}/node_modules/mocha/bin/_mocha", | |
"args": [ |
using UnityEngine; | |
using System.Collections; | |
using System.Runtime.InteropServices; | |
using System; | |
using UnityEngine.Assertions; | |
public class PreviewTestNew : MonoBehaviour { | |
AndroidJavaClass androidNativeCam; | |
AndroidJavaObject androidNativeCamActivity; |
Shader "Theta/Sphere1" { | |
Properties { | |
_MainTex ("Base (RGB)", 2D) = "white" {} | |
_AlphaBlendTex ("Alpha Blend (RGBA)", 2D) = "white" {} | |
_OffsetU ("Offset U", Range(-0.5, 0.5)) = 0 | |
_OffsetV ("Offset V", Range(-0.5, 0.5)) = 0 | |
_ScaleU ("Scale U", Range(0.8, 1.2)) = 1 | |
_ScaleV ("Scale V", Range(0.8, 1.2)) = 1 | |
_ScaleCenterU ("Scale Center U", Range(0.0, 1.0)) = 0 | |
_ScaleCenterV ("Scale Center V", Range(0.0, 1.0)) = 0 |
export default function fixTableHeader (wrapperId) { | |
var wrapper = document.querySelector('#' + wrapperId) | |
var table = wrapper.querySelector('table') | |
var thead = table.querySelector('thead') | |
function nlToArray (nodeList) { | |
return Array.prototype.slice.call(nodeList) | |
} |