Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,725 for exit1 (0.07 sec)

  1. buildscripts/rewrite-old-new.sh

    		"${WORK_DIR}/mc" mirror inspects play/inspects
    
    		purge "$WORK_DIR"
    		exit 1
    	fi
    
    	kill ${pid}
    }
    
    function main() {
    	download_old_release
    
    	start_port=$(shuf -i 10000-65000 -n 1)
    
    	verify_rewrite ${start_port}
    }
    
    function purge() {
    	rm -rf "$1"
    }
    
    (main "$@")
    rv=$?
    purge "$WORK_DIR"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. hack/get-build.sh

    while getopts ":vh" opt; do
      case ${opt} in
        v)
          print_version="true"
          ;;
        h)
          usage
          exit 0
          ;;
        \?)
          echo "Invalid option: -$OPTARG" >&2
          usage
          exit 1
          ;;
      esac
    done
    shift $((OPTIND-1))
    
    if [[ $# -ne 1 ]]; then
        usage
        exit 1
    fi
    
    set_binary_version "${1}"
    
    if [[ "${print_version}" == "true" ]]; then
      echo "${KUBE_VERSION}"
    else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 13 10:57:41 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. test/env.go

    )
    
    func main() {
    	ga := os.Getenv("PATH")
    	if runtime.GOOS == "plan9" {
    		ga = os.Getenv("path")
    	}
    	if ga == "" {
    		print("PATH is empty\n")
    		os.Exit(1)
    	}
    	xxx := os.Getenv("DOES_NOT_EXIST")
    	if xxx != "" {
    		print("$DOES_NOT_EXIST=", xxx, "\n")
    		os.Exit(1)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:34:59 UTC 2023
    - 549 bytes
    - Viewed (0)
  4. src/os/executable_test.go

    		os.Exit(1)
    	}
    
    	err = os.Remove(before)
    	if err != nil {
    		fmt.Fprintf(os.Stderr, "failed to remove executable: %v\n", err)
    		os.Exit(1)
    	}
    
    	after, err := os.Executable()
    	if err != nil {
    		fmt.Fprintf(os.Stderr, "failed to read executable name after deletion: %v\n", err)
    		os.Exit(1)
    	}
    
    	if before != after {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:32 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. cluster/gce/windows/smoke-test.sh

             Write-Host \"curl $service_address got expected exception\"
             exit 0 \`
           } else { \`
             Write-Host \"curl $service_address got unexpected result/exception: \$result\"
             exit 1 \`
           }" > $output_file; then
        cleanup_deployments
        echo "Failing output: $(cat $output_file)"
        echo "FAILED: ${FUNCNAME[0]}"
        exit 1
      fi
    }
    
    function test_kube_dns_in_windows_pod {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/test_cleanup_failnow.txt

    # to increase the probability of such a failure.
    env GOMAXPROCS=1
    env GOGC=off
    
    # If the test exits with 'no tests to run', it means the testing package
    # implementation is incorrect and does not wait until a test panic.
    # If the test exits with '(?s)panic: die.*panic: die', it means
    # the testing package did an extra panic for a panicking test.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 14:49:13 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  7. helm/minio/templates/_helper_create_bucket.txt

    		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)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jan 12 18:18:57 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. src/crypto/internal/boring/build.sh

    		echo "	docker run --rm --privileged multiarch/qemu-user-static --reset -p yes"
    		echo "	docker run --rm -t arm64v8/ubuntu:focal uname -m"
    		exit 1
    	fi
    	platform="--platform linux/arm64/v8"
    	buildargs="--build-arg ubuntu=arm64v8/ubuntu"
    	;;
    *)
    	echo unknown GOARCH $GOARCH >&2
    	exit 2
    esac
    
    docker build $platform $buildargs --build-arg GOARCH=$GOARCH -t goboring:$GOARCH .
    id=$(docker create $platform goboring:$GOARCH)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. src/runtime/signal_plan9.go

    	{_SigThrow, "sys:"},
    
    	// Issued to all other procs when calling runtime·exit.
    	{_SigGoExit, "go: exit "},
    
    	// Kill is sent by external programs to cause an exit.
    	{_SigKill, "kill"},
    
    	// Interrupts can be handled if desired, otherwise they cause an exit.
    	{_SigNotify + _SigKill, "interrupt"},
    	{_SigNotify + _SigKill, "hangup"},
    
    	// Alarms can be handled if desired, otherwise they're ignored.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 07 16:25:17 UTC 2016
    - 1.9K bytes
    - Viewed (0)
  10. src/testing/run_example_wasm.go

    		out := buf.String()
    		f.Close()
    		os.Remove(f.Name())
    		if seekErr != nil {
    			fmt.Fprintf(os.Stderr, "testing: seek temp file: %v\n", seekErr)
    			os.Exit(1)
    		}
    		if readErr != nil {
    			fmt.Fprintf(os.Stderr, "testing: read temp file: %v\n", readErr)
    			os.Exit(1)
    		}
    
    		err := recover()
    		ok = eg.processRunResult(out, timeSpent, finished, err)
    	}()
    
    	// Run example.
    	eg.F()
    	finished = true
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:56:32 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top