Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 730 for exit2 (0.05 sec)

  1. buildscripts/verify-healing-empty-erasure-set.sh

    		echo "FAILED"
    		purge "$WORK_DIR"
    		exit 1
    	done
    
    	if ! ps -p $pid1 1>&2 >/dev/null; then
    		echo "server1 log:"
    		cat "${WORK_DIR}/dist-minio-server1.log"
    		echo "FAILED"
    		purge "$WORK_DIR"
    		exit 1
    	fi
    
    	if ! ps -p $pid2 1>&2 >/dev/null; then
    		echo "server2 log:"
    		cat "${WORK_DIR}/dist-minio-server2.log"
    		echo "FAILED"
    		purge "$WORK_DIR"
    		exit 1
    	fi
    
    	if ! ps -p $pid3 1>&2 >/dev/null; then
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:48:50 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. prow/integ-suite-kind.sh

              ;;
            *)
              echo "Error: Unsupported topology ${TOPOLOGY}" >&2
              exit 1
              ;;
          esac
          shift 2
        ;;
        --topology-config)
          CLUSTER_TOPOLOGY_CONFIG_FILE="${ROOT}/${2}"
          shift 2
        ;;
        -*)
          echo "Error: Unsupported flag $1" >&2
          exit 1
          ;;
        *) # preserve positional arguments
          PARAMS+=("$1")
          shift
          ;;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 05:42:41 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. hack/make-rules/update.sh

    		if ! bash "${KUBE_ROOT}/hack/${t}.sh" 1> /dev/null; then
    			echo -e "${color_red:?}Running ${t} FAILED${color_norm}"
    			if ! ${ALL}; then
    				exit 1
    			fi
    		fi
    	else
    		if ! bash "${KUBE_ROOT}/hack/${t}.sh"; then
    			echo -e "${color_red}Running ${t} FAILED${color_norm}"
    			if ! ${ALL}; then
    				exit 1
    			fi
    		fi
    	fi
    done
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:06 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. hack/verify-openapi-docs-urls.sh

    SPECROOT="${KUBE_ROOT}/api/openapi-spec"
    SPECV3PATH="${SPECROOT}/v3"
    
    _tmpdir="$(kube::realpath "$(mktemp -d -t "$(basename "$0").XXXXXX")")"
    mkdir -p "${_tmpdir}"
    trap 'rm -rf ${_tmpdir}' EXIT SIGINT
    trap "echo Aborted; exit;" SIGINT SIGTERM
    
    TMP_URLS="${_tmpdir}/docs_urls.txt"
    touch "${TMP_URLS}"
    
    
    for full_repo_path in "${SPECV3PATH}"/*.json; do
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:44 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. hack/make-rules/test-e2e-node.sh

        exit 1
      fi
    
      # Get the compute project
      project=$(gcloud info --format='value(config.project)')
      if [[ ${project} == "" ]]; then
        echo "Could not find gcloud project when running: \`gcloud info --format='value(config.project)'\`"
        exit 1
      fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 09:46:28 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. docs/bucket/replication/setup_2site_existing_replication.sh

    siteb_out=$(cat /tmp/siteb_dirs.txt)
    
    if [ $sitea_count -ne 0 ]; then
    	echo "BUG: expected no 'directory objects' left after deletion: ${sitea_out}"
    	exit 1
    fi
    
    if [ $siteb_count -ne 0 ]; then
    	echo "BUG: expected no 'directory objects' left after deletion: ${siteb_out}"
    	exit 1
    fi
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/base/base.go

    	os.Exit(exitStatus)
    }
    
    func Fatalf(format string, args ...any) {
    	Errorf(format, args...)
    	Exit()
    }
    
    func Errorf(format string, args ...any) {
    	log.Printf(format, args...)
    	SetExitStatus(1)
    }
    
    func ExitIfErrors() {
    	if exitStatus != 0 {
    		Exit()
    	}
    }
    
    func Error(err error) {
    	// We use errors.Join to return multiple errors from various routines.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. src/cmd/covdata/covdata.go

    var matchpkg func(name string) bool
    
    var atExitFuncs []func()
    
    func atExit(f func()) {
    	atExitFuncs = append(atExitFuncs, f)
    }
    
    func Exit(code int) {
    	for i := len(atExitFuncs) - 1; i >= 0; i-- {
    		f := atExitFuncs[i]
    		atExitFuncs = atExitFuncs[:i]
    		f()
    	}
    	os.Exit(code)
    }
    
    func dbgtrace(vlevel int, s string, a ...interface{}) {
    	if *verbflag >= vlevel {
    		fmt.Printf(s, a...)
    		fmt.Printf("\n")
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. tests/integration/README.md

                            })
                        // Exits before T2a and T2b are run.
                    })
            })
    }
    ```
    
    In the example above, non-parallel parents T1 and T2 contain parallel children T1a, T1b, T2a, T2b.
    
    Since both T1 and T2 are non-parallel, they are run synchronously: T1 followed by T2. After T1 exits,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  10. src/make.rc

    	echo 'Set $GOROOT_BOOTSTRAP to a working Go tree >= Go '$bootgo'.' >[1=2]
    	exit bootstrap
    }
    if(~ $GOROOT_BOOTSTRAP $GOROOT){
    	echo 'ERROR: $GOROOT_BOOTSTRAP must not be set to $GOROOT' >[1=2]
    	echo 'Set $GOROOT_BOOTSTRAP to a working Go tree >= Go '$bootgo'.' >[1=2]
    	exit bootstrap
    }
    
    # Get the exact bootstrap toolchain version to help with debugging.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top