Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 343 for dstname (0.19 sec)

  1. prow/lib.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    WD=$(dirname "$0")
    WD=$(cd "$WD" || exit; pwd)
    ROOT=$(dirname "$WD")
    
    # shellcheck source=common/scripts/tracing.sh
    source "${ROOT}/common/scripts/tracing.sh"
    
    function date_cmd() {
      case "$(uname)" in
        "Darwin")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/modular_filesystem.h

      Status DeleteRecursively(const std::string& dirname, TransactionToken* token,
                               int64_t* undeleted_files,
                               int64_t* undeleted_dirs) override;
      Status DeleteDir(const std::string& dirname,
                       TransactionToken* token) override;
      Status RecursivelyCreateDir(const std::string& dirname,
                                  TransactionToken* token) override;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperProjectIntegrationTest.groovy

                it.inDirectory(projectDir)
            }
            projectDir.file("build.gradle") << """
                task assertProjectDirHasMeta {
                    def dirName = provider { projectDir.name }
                    doLast {
                        assert  dirName.get() == 'foo\$bar-baz'
                    }
                }
            """
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. prow/benchtest.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    WD=$(dirname "$0")
    WD=$(cd "$WD"; pwd)
    ROOT=$(dirname "$WD")
    
    # shellcheck source=prow/lib.sh
    source "${ROOT}/prow/lib.sh"
    setup_and_export_git_sha
    
    set -eux
    
    GCS_BENCHMARK_DIR="${GCS_BENCHMARK_DIR:-istio-prow/benchmarks}"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 23:14:43 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. tools/build-base-images.sh

    # This script runs go tests in a package, but each test is run individually. This helps
    # isolate tests that are improperly depending on global state modification of other tests
    
    WD=$(dirname "$0")
    WD=$(cd "$WD"; pwd)
    ROOT=$(dirname "$WD")
    
    set -ex
    
    toJson () {
            python3 -c '
    import sys, yaml, json
    yml = list(y for y in yaml.safe_load_all(sys.stdin) if y)
    if len(yml) == 1: yml = yml[0]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 17:24:41 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. hack/verify-licenses.sh

            continue
        fi
    
        # The URL 404'ed.  Try parent-paths.
    
        #echo -e "DBG: err 404 ${LICENSE_URL}"
        dir="$(dirname "${LICENSE_URL}")"
        file="$(basename "${LICENSE_URL}")"
    
        while [[ "${dir}" != "." ]]; do
            dir="$(dirname "${dir}")"
            #echo "DBG:     try ${dir}/${file}"
            if [[ "$(http_code "${dir}/${file}")" != 404 ]]; then
                #echo "DBG:         it worked"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. src/debug/dwarf/line.go

    	}
    	if !(strings.HasSuffix(dirname, "/") || strings.HasSuffix(dirname, `\`)) && dirname != "" {
    		sep := `\`
    		if strings.HasPrefix(dirname, "/") {
    			sep = `/`
    		}
    		dirname += sep
    	}
    	return drive + dirname + filename
    }
    
    // splitDrive splits the DOS drive letter or UNC share point from
    // path, if any. path == drive + rest
    func splitDrive(path string) (drive, rest string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  8. buildscripts/checkdeps.sh

    ##
    ## readlink() {
    ##     return /bin/readlink -f "$1"
    ## }
    ##
    readlink() {
    	TARGET_FILE=$1
    
    	cd $(dirname $TARGET_FILE)
    	TARGET_FILE=$(basename $TARGET_FILE)
    
    	# Iterate down a (possible) chain of symlinks
    	while [ -L "$TARGET_FILE" ]; do
    		TARGET_FILE=$(env readlink $TARGET_FILE)
    		cd $(dirname $TARGET_FILE)
    		TARGET_FILE=$(basename $TARGET_FILE)
    	done
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. hack/update-codegen.sh

    # shellcheck disable=2046 # printf word-splitting is intentional
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    # This tool wants a different default than usual.
    KUBE_VERBOSE="${KUBE_VERBOSE:-1}"
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    source "${KUBE_ROOT}/hack/lib/protoc.sh"
    cd "${KUBE_ROOT}"
    
    kube::golang::setup_env
    
    DBG_CODEGEN="${DBG_CODEGEN:-0}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  10. prow/release-commit.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    WD=$(dirname "$0")
    WD=$(cd "$WD"; pwd)
    ROOT=$(dirname "$WD")
    
    set -eux
    
    # shellcheck source=prow/lib.sh
    source "${ROOT}/prow/lib.sh"
    
    setup_gcloud_credentials
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top