- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 339 for goexit (0.05 sec)
-
src/all.bash
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Mar 11 19:53:58 UTC 2024 - 377 bytes - Viewed (0) -
buildscripts/disable-root.sh
exit 1 fi set -e killall -9 minio export MINIO_API_ROOT_ACCESS=on for ((i = 0; i < $((nr_servers)); i++)); do (minio server --address ":$((9100 + i))" $args 2>&1 >/tmp/log$i.txt) & done set +e ./mc ready minioadm/ ./mc ls minioadm/ if [ $? -ne 0 ]; then echo "listing failed, 'minioadmin' should be enabled" exit 1 fi killall -9 minio
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed May 22 23:07:14 UTC 2024 - 3.5K bytes - Viewed (0) -
buildscripts/minio-iam-ldap-upgrade-import-test.sh
echo "Failed to verify groups: $groups" exit 1 fi users=$(echo "$output" | jq -r '.result.policyMappings[] | select(.policy == "readwrite") | .users[]') if [ "$users" != "uid=dillon,ou=people,ou=swengg,dc=min,dc=io" ]; then echo "Failed to verify users: $users" exit 1 fi mc admin service stop new-minio } main() {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat May 18 18:19:01 UTC 2024 - 3.4K bytes - Viewed (0) -
tests/transaction_test.go
if err := DB.First(&User{}, "name = ?", "transaction-2").Error; err != nil { t.Fatalf("Should be able to find committed record, but got %v", err) } t.Run("this is test nested transaction and prepareStmt coexist case", func(t *testing.T) { // enable prepare statement tx3 := DB.Session(&gorm.Session{PrepareStmt: true}) if err := tx3.Transaction(func(tx4 *gorm.DB) error { // nested transaction
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Sat Sep 14 12:58:29 UTC 2024 - 12.9K bytes - Viewed (0) -
src/main/assemblies/files/fess.bat
) ) IF "x!params!" NEQ "x" ( GOTO loop ) ) SET HOSTNAME=%COMPUTERNAME% CALL "%~dp0fess.in.bat" IF ERRORLEVEL 1 ( IF NOT DEFINED nopauseonerror ( PAUSE ) EXIT /B %ERRORLEVEL% ) "%JAVA_HOME%\bin\java" %FESS_JAVA_OPTS% !newparams! -cp "%FESS_CLASSPATH%" "org.codelibs.fess.FessBoot"
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun May 24 22:24:52 UTC 2020 - 796 bytes - Viewed (0) -
configure.cmd
:: License for the specific language governing permissions and limitations under :: the License. @echo off set configure_dir=%~dp0 set configure_dir=%configure_dir:~0,-1% python "%configure_dir%\configure.py" %* || ( exit /b )
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Tue Aug 11 09:27:42 UTC 2020 - 782 bytes - Viewed (0) -
helm-releases/minio-5.3.0.tgz
$SECRET" $MC_COMMAND STATUS=$? until [ $STATUS = 0 ]; do ATTEMPTS=$(expr $ATTEMPTS + 1) echo \"Failed attempts: $ATTEMPTS\" if [ $ATTEMPTS -gt $LIMIT ]; then exit 1 fi sleep 2 # 1 second intervals between attempts $MC_COMMAND STATUS=$? done set -e # reset `e` as active return 0 } # checkBucketExists ($bucket) # Check if the bucket exists, by using the exit code of `mc ls` checkBucketExists() { BUCKET=$1 CMD=$(${MC} stat myminio/$BUCKET >/dev/null 2>&1) return $? } # createBucket ($bucket, $policy, $purge)...
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Oct 11 12:21:05 UTC 2024 - 21.7K bytes - Viewed (0) -
.github/workflows/go-fips.yml
with: context: . file: Dockerfile.fips.test push: false load: true tags: minio/fips-test:latest # This should fail if grep returns non-zero exit - name: Test binary run: | docker run --rm minio/fips-test:latest ./minio --version
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed May 22 23:07:14 UTC 2024 - 1.5K bytes - Viewed (0) -
helm-releases/minio-4.1.0.tgz
; STATUS=$? ; until [ $STATUS = 0 ] do ATTEMPTS=`expr $ATTEMPTS + 1` ; echo \"Failed attempts: $ATTEMPTS\" ; if [ $ATTEMPTS -gt $LIMIT ]; then exit 1 ; fi ; sleep 2 ; # 1 second intervals between attempts $MC_COMMAND ; STATUS=$? ; done ; set -e ; # reset `e` as active return 0 } # checkBucketExists ($bucket) # Check if the bucket exists, by using the exit code of `mc ls` checkBucketExists() { BUCKET=$1 CMD=$(${MC} ls myminio/$BUCKET > /dev/null 2>&1) return $? } # createBucket ($bucket, $policy,...
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Oct 24 20:37:05 UTC 2022 - 20K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/InterruptibleTaskTest.java
assertThat(expected) .hasMessageThat() .isEqualTo("I bet you didn't think Thread.interrupt could throw"); // We need to wait for the runner to exit. It used to be that the runner would get stuck in the // busy loop when interrupt threw. runner.join(SECONDS.toMillis(10)); } static final class BrokenChannel extends AbstractInterruptibleChannel {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 22:10:29 UTC 2024 - 6.6K bytes - Viewed (0)