Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 555 for Isbell (0.18 sec)

  1. Makefile

    %:
    	@$(MAKE_DOCKER) $@
    
    default:
    	@$(MAKE_DOCKER)
    
    shell:
    	@$(RUN) /bin/bash
    
    .PHONY: default shell
    
    else
    
    # If we are not in build container, we need a workaround to get environment properly set
    # Write to file, then include
    $(shell mkdir -p out)
    $(shell $(shell pwd)/common/scripts/setup_env.sh envfile > out/.env)
    include out/.env
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Nov 11 18:29:15 GMT 2021
    - 2.2K bytes
    - Viewed (0)
  2. .github/workflows/ci.yml

              distribution: 'zulu'
              cache: 'maven'
          - name: 'Install'
            shell: bash
            run: ./mvnw -B -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn install -U -DskipTests=true -f $ROOT_POM
          - name: 'Test'
            shell: bash
            run: ./mvnw -B -P!standard-with-extra-repos verify -U -Dmaven.javadoc.skip=true -f $ROOT_POM
    Others
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 24 19:33:50 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  3. Makefile.core.mk

      endif
    endif
    
    export ARTIFACTS ?= $(TARGET_OUT)
    export JUNIT_OUT ?= $(ARTIFACTS)/junit.xml
    export REPO_ROOT := $(shell git rev-parse --show-toplevel)
    
    # Make directories needed by the build system
    $(shell mkdir -p $(TARGET_OUT_LINUX))
    $(shell mkdir -p $(TARGET_OUT_LINUX)/logs)
    $(shell mkdir -p $(dir $(JUNIT_OUT)))
    
    # Need separate target for init:
    $(TARGET_OUT):
    	@mkdir -p $@
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Apr 19 19:41:41 GMT 2024
    - 22.5K bytes
    - Viewed (0)
  4. gradlew

    #
    #   Gradle start up script for POSIX generated by Gradle.
    #
    #   Important for running:
    #
    #   (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is
    #       noncompliant, but you have some other compliant shell such as ksh or
    #       bash, then to run this script, type that shell name before the whole
    #       command line, like:
    #
    #           ksh Gradle
    #
    Shell Script
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sun Dec 24 09:00:26 GMT 2023
    - 8.5K bytes
    - Viewed (0)
  5. .github/workflows/vulncheck.yml

              go-version: 1.21.9
              check-latest: true
          - name: Get official govulncheck
            run: go install golang.org/x/vuln/cmd/govulncheck@latest
            shell: bash
          - name: Run govulncheck
            run: govulncheck -show verbose ./...
    Others
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Apr 16 18:48:56 GMT 2024
    - 687 bytes
    - Viewed (0)
  6. ci/official/utilities/setup.sh

      # Load those stored pre-existing TFCI_ vars, if any
      if [[ -s "$FROM_ENV" ]]; then
        echo '==TFCI==: NOTE: Loading the following env parameters, which were'
        echo 'already set in the shell environment. If you want to disable this'
        echo 'behavior, create a new shell.'
        cat "$FROM_ENV"
        source "$FROM_ENV"
        rm "$FROM_ENV"
      fi
    fi
    
    # Mac builds have some specific setup needs. See setup_macos.sh for details
    Shell Script
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Jan 26 00:33:34 GMT 2024
    - 5.2K bytes
    - Viewed (1)
  7. .github/workflows/arm-ci-extended.yml

        runs-on: [self-hosted, linux, ARM64]
        strategy:
          fail-fast: false
          matrix:
            pyver: ['3.9', '3.10', '3.11', '3.12']
        steps:
          - name: Stop old running containers (if any)
            shell: bash
            run: |
              running_containers=$(docker ps -q) && \
              if [[ $running_containers == "" ]]; then
                echo "No running containers";
              else
    Others
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Mar 05 10:24:16 GMT 2024
    - 2.6K bytes
    - Viewed (0)
  8. .github/workflows/arm-ci.yml

          - name: Clean repository
            shell: bash
            run: find /home/ubuntu/actions-runner/_work/tensorflow/tensorflow/. -name . -o -prune -exec sudo rm -rf -- {} + || true
          - name: Checkout repository
            uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
          - name: Build binary and run python tests
            shell: bash
            run: |
    Others
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Feb 07 17:41:21 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  9. docs/bigdata/README.md

    #### **4.2.1 Upload the input file to HDFS:**
    
    ```
    hadoop fs -copyFromLocal /etc/hadoop/conf/log4j.properties
              s3a://testbucket/testdata
    ```
    
    #### **4.2.2  Run the Spark shell:**
    
    ```
    ./bin/spark-shell --master yarn-client --driver-memory 512m --executor-memory 512m
    ```
    
    The command should produce an output as shown below. (with additional status messages):
    
    ```
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Sep 29 04:28:45 GMT 2022
    - 14.7K bytes
    - Viewed (0)
  10. Makefile

    PWD := $(shell pwd)
    GOPATH := $(shell go env GOPATH)
    LDFLAGS := $(shell go run buildscripts/gen-ldflags.go)
    
    GOARCH := $(shell go env GOARCH)
    GOOS := $(shell go env GOOS)
    
    VERSION ?= $(shell git describe --tags)
    REPO ?= quay.io/minio
    TAG ?= $(REPO)/minio:$(VERSION)
    
    GOLANGCI_DIR = .bin/golangci/$(GOLANGCI_VERSION)
    GOLANGCI = $(GOLANGCI_DIR)/golangci-lint
    
    all: build
    
    checks: ## check dependencies
    	@echo "Checking dependencies"
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 21:55:41 GMT 2024
    - 10.3K bytes
    - Viewed (1)
Back to top