Replace sync with lib/sync for deadlock detection with deadlock build tag

This commit is contained in:
Nick Craig-Wood 2021-10-28 14:21:16 +01:00
parent 386deb3633
commit 8c8a38711b
124 changed files with 130 additions and 123 deletions

View File

@ -19,7 +19,7 @@ import (
"path"
"strconv"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/Azure/azure-pipeline-go/pipeline"

View File

@ -17,7 +17,7 @@ import (
"path"
"strconv"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/rclone/rclone/backend/b2/api"

View File

@ -13,7 +13,7 @@ import (
gohash "hash"
"io"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"github.com/rclone/rclone/backend/b2/api"
"github.com/rclone/rclone/fs"

View File

@ -23,7 +23,7 @@ import (
"path"
"strconv"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"sync/atomic"
"time"

View File

@ -13,7 +13,7 @@ import (
"io"
"net/http"
"strconv"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/rclone/rclone/backend/box/api"

View File

@ -16,7 +16,7 @@ import (
"sort"
"strconv"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"syscall"
"time"

View File

@ -11,7 +11,7 @@ import (
"path"
"runtime"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/rclone/rclone/fs"

View File

@ -8,7 +8,7 @@ import (
"fmt"
"io"
"path"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/rclone/rclone/fs"

View File

@ -12,7 +12,7 @@ import (
"net/http"
"net/url"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
cache "github.com/patrickmn/go-cache"

View File

@ -14,7 +14,7 @@ import (
"path"
"strconv"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/rclone/rclone/fs"

View File

@ -19,7 +19,7 @@ import (
"sort"
"strconv"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/rclone/rclone/fs"

View File

@ -13,7 +13,7 @@ import (
"io"
"strconv"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"unicode/utf8"

View File

@ -21,7 +21,7 @@ import (
"sort"
"strconv"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"sync/atomic"
"text/template"
"time"

View File

@ -10,7 +10,7 @@ import (
"context"
"errors"
"fmt"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/dropbox/dropbox-sdk-go-unofficial/v6/dropbox/async"

View File

@ -25,7 +25,7 @@ import (
"net/url"
"path"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"sync/atomic"
"time"

View File

@ -12,7 +12,7 @@ import (
"path"
"runtime"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/jlaffaye/ftp"

View File

@ -5,7 +5,7 @@ package googlephotos
import (
"path"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"github.com/rclone/rclone/backend/googlephotos/api"
)

View File

@ -15,7 +15,7 @@ import (
"regexp"
"strconv"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/rclone/rclone/backend/googlephotos/api"

View File

@ -9,7 +9,7 @@ import (
"io"
"path"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/rclone/rclone/fs"

View File

@ -15,7 +15,7 @@ import (
"path"
"strconv"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/rclone/rclone/fs"

View File

@ -13,7 +13,7 @@ import (
"path/filepath"
"runtime"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"unicode/utf8"

View File

@ -3,7 +3,7 @@ package local
import (
"io/ioutil"
"os"
"sync"
"github.com/rclone/rclone/lib/sync"
"testing"
"time"

View File

@ -12,7 +12,7 @@ import (
"sort"
"strconv"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"encoding/hex"

View File

@ -22,7 +22,7 @@ import (
"io"
"path"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/rclone/rclone/fs"

View File

@ -11,7 +11,7 @@ import (
"io/ioutil"
"path"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/rclone/rclone/fs"

View File

@ -16,7 +16,7 @@ import (
"regexp"
"strconv"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/rclone/rclone/backend/onedrive/api"

View File

@ -13,7 +13,7 @@ import (
"hash"
"io"
"sort"
"sync"
"github.com/rclone/rclone/lib/sync"
"github.com/rclone/rclone/fs"
"github.com/rclone/rclone/lib/atexit"

View File

@ -19,7 +19,7 @@ import (
"sort"
"strconv"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/aws/aws-sdk-go/aws"

View File

@ -4,7 +4,7 @@ import (
"context"
"fmt"
"net/url"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/rclone/rclone/fs"

View File

@ -10,7 +10,7 @@ import (
"path"
"strconv"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/coreos/go-semver/semver"

View File

@ -17,7 +17,7 @@ import (
"regexp"
"strconv"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"sync/atomic"
"time"

View File

@ -3,7 +3,7 @@
package sftp
import "sync"
import "github.com/rclone/rclone/lib/sync"
// stringLock locks for string IDs passed in
type stringLock struct {

View File

@ -5,7 +5,7 @@ package sftp
import (
"fmt"
"sync"
"github.com/rclone/rclone/lib/sync"
"testing"
"time"

View File

@ -13,7 +13,7 @@ import (
"fmt"
"io"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"github.com/rclone/rclone/backend/sharefile/api"
"github.com/rclone/rclone/fs"

View File

@ -23,7 +23,7 @@ import (
"regexp"
"strconv"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/rclone/rclone/backend/sugarsync/api"

View File

@ -4,7 +4,7 @@ import (
"context"
"fmt"
"io"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/rclone/rclone/backend/union/upstream"

View File

@ -3,7 +3,7 @@ package policy
import (
"context"
"path"
"sync"
"github.com/rclone/rclone/lib/sync"
"github.com/rclone/rclone/backend/union/upstream"
"github.com/rclone/rclone/fs"

View File

@ -3,7 +3,7 @@ package policy
import (
"context"
"path"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/rclone/rclone/backend/union/upstream"

View File

@ -9,7 +9,7 @@ import (
"path"
"path/filepath"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/rclone/rclone/backend/union/policy"

View File

@ -9,7 +9,7 @@ import (
"path"
"path/filepath"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"sync/atomic"
"time"

View File

@ -6,7 +6,7 @@ import (
"regexp"
"strconv"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/rclone/rclone/fs"

View File

@ -21,7 +21,7 @@ import (
"path"
"strconv"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/rclone/rclone/backend/webdav/api"

View File

@ -19,7 +19,7 @@ import (
"runtime"
"sort"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"text/template"
"time"

View File

@ -19,7 +19,7 @@ import (
"runtime/pprof"
"strconv"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/rclone/rclone/fs"

View File

@ -9,7 +9,7 @@ import (
"io"
"os"
"path"
"sync"
"github.com/rclone/rclone/lib/sync"
"sync/atomic"
"time"

View File

@ -12,7 +12,7 @@ import (
"os"
"path/filepath"
"sort"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
)

View File

@ -7,7 +7,7 @@ import (
"os"
"runtime"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/rclone/rclone/cmd"

View File

@ -5,7 +5,7 @@ import (
"errors"
"log"
"sort"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/rclone/rclone/fs"

View File

@ -5,7 +5,7 @@ import (
"context"
"fmt"
"path"
"sync"
"github.com/rclone/rclone/lib/sync"
"github.com/rclone/rclone/fs"
"github.com/rclone/rclone/fs/walk"

View File

@ -6,7 +6,7 @@ import (
"bytes"
"fmt"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/rclone/rclone/fs"

View File

@ -3,7 +3,7 @@ package rcd
import (
"context"
"log"
"sync"
"github.com/rclone/rclone/lib/sync"
sysdnotify "github.com/iguanesolutions/go-systemd/v5/notify"
"github.com/rclone/rclone/cmd"

View File

@ -10,7 +10,7 @@ import (
"path/filepath"
"reflect"
"sort"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
sysdnotify "github.com/iguanesolutions/go-systemd/v5/notify"

View File

@ -14,7 +14,7 @@ import (
"os"
"os/user"
"strconv"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/rclone/rclone/cmd"

View File

@ -5,7 +5,7 @@ package restic
import (
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"github.com/rclone/rclone/fs"
)

View File

@ -16,7 +16,7 @@ import (
"sort"
"strconv"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/rclone/rclone/cmd"

View File

@ -3,7 +3,7 @@ package memory
import (
"context"
"runtime"
"sync"
"github.com/rclone/rclone/lib/sync"
"github.com/rclone/rclone/cmd"
"github.com/rclone/rclone/cmd/test"

View File

@ -6,7 +6,7 @@ import (
"errors"
"fmt"
"io"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"unicode/utf8"

View File

@ -2,7 +2,7 @@ package accounting
import (
"context"
"sync"
"github.com/rclone/rclone/lib/sync"
"github.com/rclone/rclone/fs"
)

View File

@ -6,7 +6,7 @@ import (
"fmt"
"sort"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/rclone/rclone/fs"

View File

@ -2,7 +2,7 @@ package accounting
import (
"context"
"sync"
"github.com/rclone/rclone/lib/sync"
"github.com/rclone/rclone/fs/rc"

View File

@ -4,11 +4,11 @@ import (
"context"
"errors"
"fmt"
"sync"
"time"
"github.com/rclone/rclone/fs"
"github.com/rclone/rclone/fs/rc"
"github.com/rclone/rclone/lib/sync"
"golang.org/x/time/rate"
)

View File

@ -4,7 +4,7 @@ import (
"context"
"encoding/json"
"io"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/rclone/rclone/fs"

View File

@ -5,7 +5,7 @@ import (
"fmt"
"sort"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"github.com/rclone/rclone/fs"
"github.com/rclone/rclone/fs/rc"

View File

@ -6,7 +6,7 @@ import (
"context"
"errors"
"io"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/rclone/rclone/fs"

View File

@ -9,7 +9,7 @@ import (
"io/ioutil"
"math/rand"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"testing"
"testing/iotest"
"time"

2
fs/cache/cache.go vendored
View File

@ -4,7 +4,7 @@ package cache
import (
"context"
"runtime"
"sync"
"github.com/rclone/rclone/lib/sync"
"github.com/rclone/rclone/fs"
"github.com/rclone/rclone/fs/filter"

View File

@ -4,7 +4,7 @@ import (
"context"
"errors"
"io"
"sync"
"github.com/rclone/rclone/lib/sync"
"github.com/rclone/rclone/fs"
"github.com/rclone/rclone/fs/hash"

View File

@ -8,7 +8,7 @@ import (
"os"
"path/filepath"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"github.com/Unknwon/goconfig"
"github.com/rclone/rclone/fs"

View File

@ -2,7 +2,7 @@ package config
import (
"encoding/json"
"sync"
"github.com/rclone/rclone/lib/sync"
)
// defaultStorage implements config.Storage, providing in-memory config.

View File

@ -6,7 +6,7 @@ import (
"io/ioutil"
"os"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"testing"
"time"

View File

@ -7,7 +7,7 @@ import (
"fmt"
"os"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"testing"
"time"

View File

@ -5,7 +5,7 @@ import (
"net"
"runtime"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/rclone/rclone/fs"

View File

@ -12,7 +12,7 @@ import (
"net/http"
"net/http/cookiejar"
"net/http/httputil"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/rclone/rclone/fs"

View File

@ -7,7 +7,7 @@ import (
"path"
"sort"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"github.com/rclone/rclone/fs"
"github.com/rclone/rclone/fs/dirtree"

View File

@ -7,7 +7,7 @@ import (
"errors"
"fmt"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"testing"
_ "github.com/rclone/rclone/backend/local"

View File

@ -10,7 +10,7 @@ import (
"os"
"regexp"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"sync/atomic"
"github.com/rclone/rclone/fs"

View File

@ -18,7 +18,7 @@ import (
"sort"
"strconv"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"sync/atomic"
"time"

View File

@ -4,7 +4,7 @@ import (
"context"
"errors"
"io"
"sync"
"github.com/rclone/rclone/lib/sync"
"github.com/rclone/rclone/fs"
"github.com/rclone/rclone/fs/fserrors"

View File

@ -7,7 +7,7 @@ import (
"errors"
"fmt"
"runtime/debug"
"sync"
"github.com/rclone/rclone/lib/sync"
"sync/atomic"
"time"

View File

@ -15,7 +15,7 @@ import (
"regexp"
"sort"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/prometheus/client_golang/prometheus"

View File

@ -6,7 +6,7 @@ import (
"context"
"sort"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
)
// Func defines a type for a remote control function

View File

@ -12,7 +12,7 @@ import (
"path/filepath"
"regexp"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"github.com/rclone/rclone/fs"
"github.com/rclone/rclone/fs/config"

View File

@ -6,7 +6,7 @@ import (
"math/bits"
"strconv"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"github.com/aalpar/deheap"
"github.com/rclone/rclone/fs"

View File

@ -3,7 +3,7 @@ package sync
import (
"container/heap"
"context"
"sync"
"github.com/rclone/rclone/lib/sync"
"sync/atomic"
"testing"

View File

@ -8,7 +8,7 @@ import (
"path"
"sort"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/rclone/rclone/fs"

View File

@ -8,7 +8,7 @@ import (
"path"
"sort"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/rclone/rclone/fs"

View File

@ -6,7 +6,7 @@ import (
"fmt"
"io"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"testing"
"github.com/rclone/rclone/fs"

View File

@ -17,7 +17,7 @@ import (
"sort"
"strconv"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/rclone/rclone/fs"

View File

@ -11,7 +11,7 @@ import (
"path/filepath"
"regexp"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/rclone/rclone/fs"

4
go.mod
View File

@ -10,7 +10,7 @@ require (
github.com/Azure/azure-storage-blob-go v0.14.0
github.com/Azure/go-autorest/autorest/adal v0.9.17
github.com/Azure/go-ntlmssp v0.0.0-20200615164410-66371956d46c
github.com/Max-Sum/base32768 v0.0.0-20191205131208-7937843c71d5 // indirect
github.com/Max-Sum/base32768 v0.0.0-20191205131208-7937843c71d5
github.com/Unknwon/goconfig v0.0.0-20200908083735-df7de6a44db8
github.com/a8m/tree v0.0.0-20210414114729-ce3525c5c2ef
github.com/aalpar/deheap v0.0.0-20210914013432-0cc84d79dec3
@ -49,6 +49,7 @@ require (
github.com/prometheus/client_golang v1.11.0
github.com/putdotio/go-putio/putio v0.0.0-20200123120452-16d982cac2b8
github.com/rfjakob/eme v1.1.2
github.com/sasha-s/go-deadlock v0.3.1
github.com/shirou/gopsutil/v3 v3.21.10
github.com/sirupsen/logrus v1.8.1
github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966
@ -108,6 +109,7 @@ require (
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
github.com/pengsrc/go-shared v0.2.1-0.20190131101655-1999055a4a14 // indirect
github.com/petermattis/goid v0.0.0-20180202154549-b0b1615b78e5 // indirect
github.com/prometheus/client_model v0.2.0 // indirect
github.com/prometheus/common v0.32.1 // indirect
github.com/prometheus/procfs v0.7.3 // indirect

4
go.sum
View File

@ -502,6 +502,8 @@ github.com/pborman/getopt v0.0.0-20180729010549-6fdd0a2c7117/go.mod h1:85jBQOZwp
github.com/pelletier/go-toml v1.9.3/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c=
github.com/pengsrc/go-shared v0.2.1-0.20190131101655-1999055a4a14 h1:XeOYlK9W1uCmhjJSsY78Mcuh7MVkNjTzmHx1yBzizSU=
github.com/pengsrc/go-shared v0.2.1-0.20190131101655-1999055a4a14/go.mod h1:jVblp62SafmidSkvWrXyxAme3gaTfEtWwRPGz5cpvHg=
github.com/petermattis/goid v0.0.0-20180202154549-b0b1615b78e5 h1:q2e307iGHPdTGp0hoxKjt1H5pDo6utceo3dQVK3I5XQ=
github.com/petermattis/goid v0.0.0-20180202154549-b0b1615b78e5/go.mod h1:jvVRKCrJTQWu0XVbaOlby/2lO20uSCHEMzzplHXte1o=
github.com/philhofer/fwd v1.0.0/go.mod h1:gk3iGcWd9+svBvR0sR+KPcfE+RNWozjowpeBVG3ZVNU=
github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
@ -555,6 +557,8 @@ github.com/russross/blackfriday/v2 v2.1.0 h1:JIOH55/0cWyOuilr9/qlrm0BSXldqnqwMsf
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
github.com/ryanuber/columnize v0.0.0-20160712163229-9b3edd62028f/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts=
github.com/ryszard/goskiplist v0.0.0-20150312221310-2dfbae5fcf46/go.mod h1:uAQ5PCi+MFsC7HjREoAz1BU+Mq60+05gifQSsHSDG/8=
github.com/sasha-s/go-deadlock v0.3.1 h1:sqv7fDNShgjcaxkO0JNcOAlr8B9+cV5Ey/OB71efZx0=
github.com/sasha-s/go-deadlock v0.3.1/go.mod h1:F73l+cr82YSh10GxyRI6qZiCgK64VaZjwesgfQ1/iLM=
github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg65j358z/aeFdxmN0P9QXhEzd20vsDc=
github.com/sergi/go-diff v1.0.0/go.mod h1:0CfEIISq7TuYL3j771MWULgwwjU+GofnZX9QAmXWZgo=
github.com/shirou/gopsutil/v3 v3.21.10 h1:flTg1DrnV/UVrBqjLgVgDJzx6lf+91rC64/dBHmO2IA=

View File

@ -7,7 +7,7 @@ package atexit
import (
"os"
"os/signal"
"sync"
"github.com/rclone/rclone/lib/sync"
"sync/atomic"
"github.com/rclone/rclone/fs"

View File

@ -4,7 +4,7 @@ package bucket
import (
"errors"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
)
var (

2
lib/cache/cache.go vendored
View File

@ -4,7 +4,7 @@ package cache
import (
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
)

View File

@ -11,7 +11,7 @@ import (
"fmt"
"path"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"github.com/rclone/rclone/fs"
)

View File

@ -5,7 +5,7 @@ import (
"encoding/base64"
"encoding/binary"
"errors"
"sync"
"github.com/rclone/rclone/lib/sync"
"github.com/dop251/scsu"
"github.com/klauspost/compress/huff0"

View File

@ -2,7 +2,7 @@ package filename
import (
"encoding/base64"
"sync"
"github.com/rclone/rclone/lib/sync"
"github.com/klauspost/compress/huff0"
)

View File

@ -5,7 +5,7 @@ package file
import (
"os"
"sync"
"github.com/rclone/rclone/lib/sync"
"sync/atomic"
"syscall"

View File

@ -6,7 +6,7 @@ package file
import (
"fmt"
"os"
"sync"
"github.com/rclone/rclone/lib/sync"
"syscall"
"unsafe"

View File

@ -12,7 +12,7 @@ import (
"net"
"net/http"
"strings"
"sync"
"github.com/rclone/rclone/lib/sync"
"time"
"github.com/go-chi/chi/v5"

Some files were not shown because too many files have changed in this diff Show More