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
# Prototype for new worker.json enabled: flag. | |
# https://jira.tegile.com/browse/FIR-698 | |
# Currently it's simple: true/false | |
# With this implementation it will be something complex. | |
# It could be old true/false value | |
# But also some list of complex rules | |
# Rules is an array. They are processed one by one: |
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 Controller from '@ember/controller'; | |
import { tracked } from '@glimmer/tracking'; | |
import { action } from '@ember/object'; | |
export default class ApplicationController extends Controller { | |
appName = 'test'; | |
@tracked v1 = 1; | |
get computed() { | |
console.log("Computed called!"); |
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 Component from '@glimmer/component'; | |
import { tracked } from '@glimmer/tracking'; | |
import { action } from '@ember/object'; | |
export default class extends Component { | |
@tracked value = ''; | |
@tracked counter = 0; | |
@action submit() { | |
this.counter += 1; |
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
# by defailt mint tests fail on the first failed test case, to change it follow these steps: | |
git clone [email protected]:minio/minio.git | |
cd minio/mint | |
vim mint.sh +194 # comment "break" on string 194 to run all the tests and don't stop on the first fail | |
docker build --no-cache -t minio/mint:local . -f Dockerfile.dev | |
docker run \ | |
--name mint \ | |
--rm \ | |
-it \ | |
-e SERVER_ENDPOINT=10.3.199.254:9000 \ |
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
diff --git a/mint/mint.sh b/mint/mint.sh | |
index 5d9e997..952dc16 100755 | |
--- a/mint/mint.sh | |
+++ b/mint/mint.sh | |
@@ -139,6 +139,7 @@ function main() | |
export ENABLE_VIRTUAL_STYLE | |
export GO111MODULE | |
export GOPROXY | |
+ export BAIL | |
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
#!/usr/bin/env bash | |
# setup: | |
# $ mkdir -p /tmp/s3 && cd /tmp/s3 | |
# $ ~/js/nexenta/nef.extra/mc/test.sh 2>&1 | grep --color -E "^\+.+$|$" | |
set -x; | |
#set -e; | |
HOST="1.1.1.1:9000" |
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
#!/usr/bin/env bash | |
# setup: | |
# $ mkdir -p /tmp/s3 && cd /tmp/s3 | |
# $ ~/js/nexenta/nef/test.sh 2>&1 | grep --color -E "^\+.+$|$" | |
set -x; | |
#set -e; | |
HOST="1.1.1.1:9000" |