Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 494 for dstname (0.16 sec)

  1. tensorflow/compiler/mlir/tfr/examples/mnist/ops_defs.py

      else:
        assert FLAGS.output.endswith('.mlir')
        generated_code = tfr_gen_from_module(sys.modules[__name__], '_composite_',)
    
      dirname = os.path.dirname(FLAGS.output)
      if not os.path.exists(dirname):
        os.makedirs(dirname)
      with open(FLAGS.output, 'w') as f:
        f.write(generated_code)
    
    
    if __name__ == '__main__':
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 31 20:23:51 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultAntBuilderTest.groovy

        @Issue('GRADLE-3511')
        def 'Filename #filename is properly masked when adding it as #antType to an ant task'(String filename, antType) {
            given:
            def dirname = 'somedir$$with'
            def dirAndFile = "${dirname}/${filename}"
            project.file(dirname).mkdir()
            File fileWithDollars = project.file(dirAndFile)
            fileWithDollars << "Some Text"
            FileCollection files = project.getLayout().files(dirAndFile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 11 16:17:40 UTC 2022
    - 7.7K bytes
    - Viewed (0)
  8. configure

    #!/usr/bin/env bash
    
    set -e
    set -o pipefail
    
    if [ -z "$PYTHON_BIN_PATH" ]; then
      PYTHON_BIN_PATH=$(which python3 || which python || true)
    fi
    
    # Set all env variables
    CONFIGURE_DIR=$(dirname "$0")
    "$PYTHON_BIN_PATH" "${CONFIGURE_DIR}/configure.py" "$@"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 12 14:04:24 UTC 2020
    - 285 bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top