Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,725 for exit1 (0.7 sec)

  1. buildscripts/verify-healing-with-root-disks.sh

    		echo "A root disk is formatted unexpectedely"
    		cat "${WORK_DIR}/server4.log"
    		exit -1
    	fi
    }
    
    function cleanup() {
    	pkill minio
    	sudo umount ${WORK_DIR}/mnt/disk{1..3}/
    	sudo rm /dev/minio-loopdisk*
    	rm -rf "$WORK_DIR"
    }
    
    (prepare_block_devices)
    (main "$@")
    rv=$?
    
    cleanup
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 26 05:07:25 UTC 2023
    - 2.2K 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. tests/integration/security/fuzz/fuzzers/jwt_tool/run.sh

    # limitations under the License.
    
    ./jwt_tool.py "$@"
    
    # The jwt_tool.py always return non-zero exit code, overwrite to just return zero as the test code will check the report
    # separately to determine if it has really failed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 21 20:06:01 UTC 2021
    - 783 bytes
    - Viewed (0)
  4. src/cmd/internal/pkgpath/pkgpath_test.go

    	case "":
    		return
    	case "v1":
    		os.Stdout.WriteString(`.string	"go.l__ufer.Run"`)
    		os.Exit(0)
    	case "v2":
    		os.Stdout.WriteString(`.string	"go.l..u00e4ufer.Run"`)
    		os.Exit(0)
    	case "v3":
    		os.Stdout.WriteString(`.string	"go_0l_u00e4ufer.Run"`)
    		os.Exit(0)
    	case "error":
    		os.Stdout.WriteString(`unknown string`)
    		os.Exit(0)
    	}
    }
    
    func TestToSymbolFunc(t *testing.T) {
    	testenv.MustHaveExec(t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 18:26:59 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  5. cmd/genyaml/gen_kubectl_yaml.go

    		path = os.Args[1]
    	} else if len(os.Args) > 2 {
    		fmt.Fprintf(os.Stderr, "usage: %s [output directory]\n", os.Args[0])
    		os.Exit(1)
    	}
    
    	outDir, err := genutils.OutDir(path)
    	if err != nil {
    		fmt.Fprintf(os.Stderr, "failed to get output directory: %v\n", err)
    		os.Exit(1)
    	}
    
    	// Set environment variables used by kubectl so the output is consistent,
    	// regardless of where we run.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 14:05:23 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. 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)
  7. src/runtime/testdata/testprogcgo/callback.go

    )
    
    func init() {
    	register("CgoCallbackGC", CgoCallbackGC)
    }
    
    //export go_callback
    func go_callback() {
    	if e := extraMInUse.Load(); e == 0 {
    		fmt.Printf("in callback extraMInUse got %d want >0\n", e)
    		os.Exit(1)
    	}
    
    	runtime.GC()
    	grow()
    	runtime.GC()
    }
    
    var cnt int
    
    func grow() {
    	x := 10000
    	sum := 0
    	if grow1(&x, &sum) == 0 {
    		panic("bad")
    	}
    }
    
    func grow1(x, sum *int) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 14:05:01 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. test/fixedbugs/issue4667.go

    }
    
    func main() {
    	nf := testing.AllocsPerRun(100, F)
    	ng := testing.AllocsPerRun(100, G)
    	if int(nf) > 1 {
    		fmt.Printf("AllocsPerRun(100, F) = %v, want 1\n", nf)
    		os.Exit(1)
    	}
    	if int(ng) > 1 {
    		fmt.Printf("AllocsPerRun(100, G) = %v, want 1\n", ng)
    		os.Exit(1)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 558 bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/init.go

    		base.SetExitStatus(2)
    		base.Exit()
    	}
    	if cfg.BuildRace && cfg.BuildASan {
    		fmt.Fprintf(os.Stderr, "go: may not use -race and -asan simultaneously\n")
    		base.SetExitStatus(2)
    		base.Exit()
    	}
    	if cfg.BuildMSan && cfg.BuildASan {
    		fmt.Fprintf(os.Stderr, "go: may not use -msan and -asan simultaneously\n")
    		base.SetExitStatus(2)
    		base.Exit()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 19:13:34 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  10. 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)
Back to top