Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,725 for exit1 (0.04 sec)

  1. src/cmd/go/testdata/script/test_fuzz_minimize.txt

    	if err != nil {
    		fmt.Fprintln(os.Stderr, err)
    		os.Exit(1)
    	}
    
    	// Open the file in testdata (there should only be one)
    	dir := fmt.Sprintf("testdata/fuzz/%s", target)
    	files, err := ioutil.ReadDir(dir)
    	if err != nil {
    		fmt.Fprintln(os.Stderr, err)
    		os.Exit(1)
    	}
    	if len(files) != 1 {
    		fmt.Fprintf(os.Stderr, "expected one file, got %d", len(files))
    		os.Exit(1)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 22 16:15:36 UTC 2021
    - 5.8K bytes
    - Viewed (0)
  2. buildscripts/checkdeps.sh

    			echo "OSX version '${osx_host_version}' is not supported. Minimum supported version: ${OSX_VERSION}"
    			exit 1
    		fi
    		return
    		;;
    	*)
    		echo "OS '${KNAME}' is not supported. Supported OS: [Linux, FreeBSD, OpenBSD, NetBSD, Darwin, DragonFly]"
    		exit 1
    		;;
    	esac
    }
    
    assert_check_golang_env() {
    	if ! which go >/dev/null 2>&1; then
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testcshared/testdata/libgo2/libgo2.go

    	if e := syscall.Pipe(p[0:]); e != nil {
    		fmt.Fprintf(os.Stderr, "pipe: %v\n", e)
    		os.Exit(2)
    	}
    
    	if e := dup2(p[0], fd); e != nil {
    		fmt.Fprintf(os.Stderr, "dup2: %v\n", e)
    		os.Exit(2)
    	}
    
    	const str = "PASS"
    	if n, e := syscall.Write(p[1], []byte(str)); e != nil || n != len(str) {
    		fmt.Fprintf(os.Stderr, "write: %d %v\n", n, e)
    		os.Exit(2)
    	}
    
    	if e := syscall.Close(p[1]); e != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. buildscripts/verify-healing.sh

    		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
    		echo "server3 log:"
    		cat "${WORK_DIR}/dist-minio-server3.log"
    		echo "FAILED"
    		purge "$WORK_DIR"
    		exit 1
    	fi
    
    	if ! pkill minio; then
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. test/fixedbugs/bug076.go

    // license that can be found in the LICENSE file.
    
    package main
    
    func f() {
    exit:
    	;
    	goto exit
    }
    
    
    func main() {
    exit:
    	; // this should be legal (labels not properly scoped?)
    	goto exit
    }
    
    /*
    uetli:~/Source/go/test/bugs gri$ 6g bug076.go 
    bug076.go:11: label redeclared: exit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:30 UTC 2012
    - 400 bytes
    - Viewed (0)
  6. src/syscall/exec_pdeathsig_test.go

    		fmt.Fprintln(os.Stderr, err)
    		if testenv.SyscallIsNotSupported(err) {
    			fmt.Println("skip")
    			os.Exit(0)
    		}
    		os.Exit(1)
    	}
    	cmd.Wait()
    	os.Exit(0)
    }
    
    func deathSignalChild() {
    	c := make(chan os.Signal, 1)
    	signal.Notify(c, syscall.SIGUSR1)
    	go func() {
    		<-c
    		fmt.Println("ok")
    		os.Exit(0)
    	}()
    	fmt.Println("start")
    
    	buf := make([]byte, 32)
    	os.Stdin.Read(buf)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 21:23:17 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  7. docs/en/docs/img/deployment/https/https02.drawio

                    </mxCell>
                    <mxCell id="8" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;strokeWidth=3;exitX=0.092;exitY=1.01;exitDx=0;exitDy=0;dashed=1;exitPerimeter=0;" parent="1" edge="1">
                        <mxGeometry relative="1" as="geometry">
                            <Array as="points">
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testplugin/testdata/checkdwarf/main.go

    		fmt.Fprintf(os.Stderr, "could not open %s\n", exePath)
    		os.Exit(1)
    	}
    
    	data, err := exe.DWARF()
    	if err != nil {
    		fmt.Fprintf(os.Stderr, "%s: error opening DWARF: %v\n", exePath, err)
    		os.Exit(1)
    	}
    
    	rdr := data.Reader()
    	for {
    		e, err := rdr.Next()
    		if err != nil {
    			fmt.Fprintf(os.Stderr, "%s: error reading DWARF: %v\n", exePath, err)
    			os.Exit(1)
    		}
    		if e == nil {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. hack/grab-profiles.sh

            --alloc-objects,
            --cpu,
            --help"
          exit 0
          ;;
        --)
          shift
          break;
          ;;
      esac
    done
    
    if [[ -z "${server_addr}" ]]; then
      >&2 echo "Server flag is required"
      exit 1
    fi
    
    if [[ -z "${profile_components}" ]]; then
      >&2 echo "Choose at least one component to profile"
      exit 1
    fi
    
    if [[ -z "${requested_profiles}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 17 06:47:05 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  10. buildscripts/resolve-right-versions.sh

    		echo "FAILED"
    		purge "$WORK_DIR"
    		exit 1
    	fi
    
    	"${WORK_DIR}/mc" stat minio/bucket/testobj
    
    	pkill minio
    	sleep 3
    }
    
    function main() {
    	start_port=$(shuf -i 10000-65000 -n 1)
    
    	start_minio_5drive ${start_port}
    }
    
    function purge() {
    	rm -rf "$1"
    }
    
    (main "$@")
    rv=$?
    purge "$WORK_DIR"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Aug 16 14:51:33 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top