Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 288 for copying (0.19 sec)

  1. licenses/github.com/BurntSushi/toml/cmd/toml-test-decoder/COPYING

    Martin Taillefer <******@****.***> 1572291239 -0700
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Oct 28 19:33:59 GMT 2019
    - 1.1K bytes
    - Viewed (0)
  2. licenses/github.com/alecthomas/participle/v2/COPYING

    John Howard <******@****.***> 1712595956 -0700
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 08 17:05:56 GMT 2024
    - 1K bytes
    - Viewed (0)
  3. licenses/github.com/alecthomas/participle/COPYING

    Rama Chavali <******@****.***> 1657816233 +0530
    Plain Text
    - Registered: Wed Apr 03 22:53:10 GMT 2024
    - Last Modified: Thu Jul 14 16:30:33 GMT 2022
    - 1K bytes
    - Viewed (0)
  4. licenses/github.com/BurntSushi/toml/cmd/tomlv/COPYING

    Martin Taillefer <******@****.***> 1572291239 -0700
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Oct 28 19:33:59 GMT 2019
    - 1.1K bytes
    - Viewed (0)
  5. licenses/github.com/BurntSushi/toml/COPYING

    John Howard <******@****.***> 1572058059 -0700
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 1.1K bytes
    - Viewed (0)
  6. licenses/github.com/google/shlex/COPYING

    John Howard <******@****.***> 1619132365 -0700
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 22 22:59:25 GMT 2021
    - 11.1K bytes
    - Viewed (0)
  7. licenses/github.com/BurntSushi/toml/cmd/toml-test-encoder/COPYING

    Martin Taillefer <******@****.***> 1572291239 -0700
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Oct 28 19:33:59 GMT 2019
    - 1.1K bytes
    - Viewed (0)
  8. licenses/github.com/BurntSushi/toml/internal/toml-test/COPYING

    John Howard <******@****.***> 1643929095 -0800
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Feb 03 22:58:15 GMT 2022
    - 1.1K bytes
    - Viewed (0)
  9. bin/build_ztunnel.sh

      chmod +x "$2"
    
      # Make a copy named just "ztunnel" in the same directory (overwrite if necessary).
      echo "Copying $2 to $(dirname "$2")/${3}"
      cp -f "$2" "$(dirname "$2")/${3}"
      popd
    
      # Also copy it to out/$os_arch/ztunnel as that's whats used in the build
      echo "Copying '${2}' to ${TARGET_OUT_LINUX}/ztunnel"
      cp -f "${2}" "${TARGET_OUT_LINUX}/ztunnel"
    }
    
    function maybe_build_ztunnel() {
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 02 21:46:06 GMT 2024
    - 5K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/filesystem/plugins/posix/copy_file_portable.cc

      std::unique_ptr<char[]> buffer(new char[kPosixCopyFileBufferSize]);
    
      off_t offset = 0;
      int bytes_transferred = 0;
      int rc = 1;
      // When `sendfile` returns 0 we stop copying and let callers handle this.
      while (offset < size && rc > 0) {
        size_t chunk = size - offset;
        if (chunk > kPosixCopyFileBufferSize) chunk = kPosixCopyFileBufferSize;
    
        rc = read(src_fd, buffer.get(), chunk);
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Nov 22 21:23:55 GMT 2019
    - 1.9K bytes
    - Viewed (0)
Back to top