Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 103 for Rm (0.04 sec)

  1. buildscripts/rewrite-old-new.sh

    		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. tensorflow/compiler/jit/kernels/xla_ops.cc

      // in the ResourceMgr.
      ResourceMgr* rm = ctx->resource_manager();
      if (!rm) {
        return absl::InternalError("No resource manager.");
      }
    
      TF_ASSIGN_OR_RETURN(DeviceType compilation_device_type,
                          GetCompilationDeviceType(platform_info.device_type()));
    
      XlaDeviceCompiler* xla_device_compiler;
      TF_RETURN_IF_ERROR(rm->LookupOrCreate<XlaDeviceCompiler>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  3. prow/release-commit.sh

    export GO111MODULE=on
    
    DOCKER_HUB=${DOCKER_HUB:-gcr.io/istio-testing}
    GCS_BUCKET=${GCS_BUCKET:-istio-build/dev}
    
    # Enable emulation required for cross compiling a few images (VMs)
    docker run --rm --privileged "${DOCKER_HUB}/qemu-user-static" --reset -p yes
    export ISTIO_DOCKER_QEMU=true
    
    # Use a pinned version in case breaking changes are needed
    BUILDER_SHA=159efd4a18a7325192c4f7cb0acbe5648bfb8658
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. hack/local-up-cluster.sh

          # we run the script as root or not). Let's remove it, that is something we
          # can always do: either we have write permissions as a user in CERT_DIR or
          # we run the rm with sudo.
          ${CONTROLPLANE_SUDO} rm -f "${CERT_DIR}"/kubelet-rotated.kubeconfig
    
          # Create Certs
          generate_certs
        fi
    
        cloud_config_arg="--cloud-provider=${CLOUD_PROVIDER} --cloud-config=${CLOUD_CONFIG}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/configurations/GradleBuildConfigurationDefaults.kt

    import model.CIBuildModel
    import model.StageName
    
    fun checkCleanDirUnixLike(dir: String, exitOnFailure: Boolean = true) = """
        REPO=$dir
        if [ -e ${'$'}REPO ] ; then
            tree ${'$'}REPO
            rm -rf ${'$'}REPO
            echo "${'$'}REPO was polluted during the build"
            ${if (exitOnFailure) "exit 1" else ""}
        else
            echo "${'$'}REPO does not exist"
        fi
    
    """.trimIndent()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. release/downloadIstioCtl.sh

    fi
    
    printf "%s download complete!\n" "${filename}"
    
    # setup istioctl
    mkdir -p "$HOME/.istioctl/bin"
    mv "${tmp}/istioctl" "$HOME/.istioctl/bin/istioctl"
    chmod +x "$HOME/.istioctl/bin/istioctl"
    rm -r "${tmp}"
    
    # Print message
    printf "\n"
    printf "Add the istioctl to your path with:"
    printf "\n"
    printf "  export PATH=\$HOME/.istioctl/bin:\$PATH \n"
    printf "\n"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 14:11:30 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_tidy_diff.txt

    ! stdout 'diff current/go.mod tidy/go.mod'
    ! stdout 'diff current/go.sum tidy/go.sum'
    stderr 'go.mod file not found'
    
    # Existing go.mod and missing go.sum should display diff.
    go mod init example.com
    go mod tidy
    rm go.sum
    exists go.mod
    ! exists go.sum
    ! go mod tidy -diff
    ! exists go.sum
    ! stdout 'diff current/go.mod tidy/go.mod'
    stdout 'diff current/go.sum tidy/go.sum'
    
    # Everything is tidy, should return zero exit code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. buildscripts/minio-iam-ldap-upgrade-import-test.sh

    		chmod +x minio.${OLD_VERSION}
    	fi
    
    	if [ -z "$_MINIO_LDAP_TEST_SERVER" ]; then
    		export _MINIO_LDAP_TEST_SERVER=localhost:1389
    		echo "Using default LDAP endpoint: $_MINIO_LDAP_TEST_SERVER"
    	fi
    
    	rm -rf /tmp/data
    }
    
    create_iam_content_in_old_minio() {
    	echo "Creating IAM content in old minio instance."
    
    	MINIO_CI_CD=1 ./minio.${OLD_VERSION} server /tmp/data/{1...4} &
    	sleep 5
    
    	set -x
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_tidy_compat_irrelevant.txt

    cp go.mod.orig go.mod
    go mod tidy -compat=1.17
    cmp go.mod go.mod.orig
    
    # Make sure that -diff behaves the same as tidy.
    [exec:patch] cp go.mod.orig go.mod
    [exec:patch] rm go.sum
    [exec:patch] go mod tidy -compat=1.17 -diff
    [exec:patch] ! stdout .
    
    go list -deps -test -f $MODFMT all
    cmp stdout out-117.txt
    
    go mod edit -go=1.16
    ! go list -deps -test -f $MODFMT all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. docs/site-replication/run-sse-kms-object-replication.sh

    	echo "minio2 ============"
    	cat /tmp/minio2_1.log
    
    	exit 1
    }
    
    cleanup() {
    	echo -n "Cleaning up instances of MinIO ..."
    	pkill -9 minio || sudo pkill -9 minio
    	pkill -9 kes || sudo pkill -9 kes
    	rm -rf ${PWD}/keys
    	rm -rf /tmp/minio{1,2}
    	echo "done"
    }
    
    cleanup
    
    export MINIO_CI_CD=1
    export MINIO_BROWSER=off
    export MINIO_ROOT_USER="minio"
    export MINIO_ROOT_PASSWORD="minio123"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top