Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for bNew (0.04 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/installation.adoc

    Gradle is deployed and maintained by SDKMAN!:
    
    ----
    ❯ sdk install gradle
    ----
    
    Using link:http://brew.sh[Homebrew]:
    
    ----
    ❯ brew install gradle
    ----
    
    Using link:https://www.macports.org[MacPorts]:
    
    ----
    ❯ sudo port install gradle
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. README.md

    ```sh
    brew install minio/stable/minio
    minio server /data
    ```
    
    > NOTE: If you previously installed minio using `brew install minio` then it is recommended that you reinstall minio from `minio/stable/minio` official repo instead.
    
    ```sh
    brew uninstall minio
    brew install minio/stable/minio
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  3. hack/lib/util.sh

        echo "ERROR: This script requires a minimum bash version of 4.2, but got version of ${BASH_VERSINFO[0]}.${BASH_VERSINFO[1]}"
        if [ "$(uname)" = 'Darwin' ]; then
          echo "On macOS with homebrew 'brew install bash' is sufficient."
        fi
        exit 1
      fi
    }
    
    # kube::util::ensure-gnu-sed
    # Determines which sed binary is gnu-sed on linux/darwin
    #
    # Sets:
    #  SED: The name of the gnu-sed binary
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  4. cmd/testdata/xl-meta-merge.zip

    to install the latest stable MinIO package using [Homebrew](https://brew.sh/). Replace ``/data`` with the path to the drive or directory in which you want MinIO to store data. ```sh brew install minio/stable/minio minio server /data ``` > NOTE: If you previously installed minio using `brew install minio` then it is recommended that you reinstall minio from `minio/stable/minio` official repo instead. ```sh brew uninstall minio brew install minio/stable/minio ``` The MinIO deployment starts using default...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  5. src/text/template/parse/lex_test.go

    	}},
    	{"extra right paren", "{{3)}}", []item{
    		tLeft,
    		mkItem(itemNumber, "3"),
    		mkItem(itemError, "unexpected right paren"),
    	}},
    
    	// Fixed bugs
    	// Many elements in an action blew the lookahead until
    	// we made lexInsideAction not loop.
    	{"long pipeline deadlock", "{{|||||}}", []item{
    		tLeft,
    		tPipe,
    		tPipe,
    		tPipe,
    		tPipe,
    		tPipe,
    		tRight,
    		tEOF,
    	}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 15:03:43 UTC 2022
    - 13.9K bytes
    - Viewed (0)
  6. build/common.sh

          if which gnutar &>/dev/null; then
    	  TAR=gnutar
          fi
      fi
      if ! "${TAR}" --version | grep -q GNU; then
        echo "  !!! Cannot find GNU tar. Build on Linux or install GNU tar"
        echo "      on Mac OS X (brew install gnu-tar)."
        return 1
      fi
    }
    
    function kube::build::has_docker() {
      which docker &> /dev/null
    }
    
    function kube::build::has_ip() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  7. src/cmd/link/link_test.go

    grandmothers; a long procession of Chancellors has come in and gone out; the legion of bills in the suit have been transformed into mere bills of mortality; there are not three Jarndyces left upon the earth perhaps, since old Tom Jarndyce in despair blew his brains out at a coffee-house in Chancery Lane; but Jarndyce and Jarndyce still drags its dreary length before the Court, perennially hopeless."`
    
    	principle int `text:"The one great principle of the English law is, to make business for...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
Back to top