David Kocher

Results 314 comments of David Kocher

Seems to be an issue with not reading the entire length of the file. ``` 2025-01-29 12:08:03,873 [n0dlqjJU-transfer-1] WARN ch.cyberduck.core.transfer.FailFastTransferErrorCallback - Cancel TransferItem{remote=Path{path='/mnt/NAS/homes/jmalek/vjunos-switch-23.1R1.8.qcow2', type=[file]}, local=Local{path='V:\Downloads\vjunos-switch-23.1R1.8.qcow2'}} with no pending file after...

We are depending on a [fork](https://github.com/iterate-ch/jargon) with a change related to session management [^1] which would need to have the changes from upstream merged. We are looking for contributions or...

> Oh! Didn't know about the local fork. > > We can look into that - there is hopefully no reason to have to maintain that on your end. That...

> @dkocher Can you explain Cyberduck's requirements for supporting additional protocols? Perhaps there's documentation explaining how things work in Cyberduck? > > Based on what I've read so far, it...

> [@dkocher](https://github.com/dkocher) We just released a new Java library for working with iRODS 4.3.2 and later. Can this be targeted to Java 8? Currently we are restricted to Java 8...

You can add additional or override properties in a connection profile [^1] or programmatically as in [^2]. [^1]: https://docs.cyberduck.io/tutorials/hidden_properties/#in-cyberduckprofile-connection-profiles [^2]: https://github.com/iterate-ch/cyberduck/blob/70167cc556125099c03a2711186d09adc46fd43a/ctera/src/main/java/ch/cyberduck/core/ctera/CteraProtocol.java#L106-L111

The precedence of properties read with `HostPreferencesFactory` is as follows 1. Property in bookmark `.duck` 2. Property in connection profile `.cyberduckprofile` 3. Property in default connection profile bundled with app...

It is common to support multipart threaded uploads in `Upload` feature implementations. You will find samples in - [ ] B2 https://github.com/iterate-ch/cyberduck/blob/master/backblaze/src/main/java/ch/cyberduck/core/b2/B2LargeUploadService.java - [ ] Box https://github.com/iterate-ch/cyberduck/blob/master/box/src/main/java/ch/cyberduck/core/box/BoxLargeUploadService.java - [ ]...