Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for sftp (0.04 sec)

  1. cmd/sftp-server.go

    func (s *sftpLogger) Info(tag xsftp.LogType, msg string) {
    	logger.Info(msg)
    }
    
    func (s *sftpLogger) Error(tag xsftp.LogType, err error) {
    	switch tag {
    	case xsftp.AcceptNetworkError:
    		sftpLogOnceIf(context.Background(), err, "accept-limit-sftp")
    	case xsftp.AcceptChannelError:
    		sftpLogOnceIf(context.Background(), err, "accept-channel-sftp")
    	case xsftp.SSHKeyExchangeError:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. cmd/sftp-server-driver.go

    	}
    }
    
    func (m *sftpMetrics) log(s *sftp.Request, user string) func(sz int64, err error) {
    	startTime := time.Now()
    	source := getSource(2)
    	return func(sz int64, err error) {
    		globalTrace.Publish(sftpTrace(s, startTime, source, user, err, sz))
    	}
    }
    
    // NewSFTPDriver initializes sftp.Handlers implementation of following interfaces
    //
    // - sftp.Fileread
    // - sftp.Filewrite
    // - sftp.Filelist
    // - sftp.Filecmd
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/sftp/SFTPServer.groovy

    import org.apache.sshd.server.command.Command
    import org.apache.sshd.scp.server.ScpCommandFactory
    import org.apache.sshd.server.session.ServerSession
    import org.apache.sshd.sftp.server.SftpSubsystem
    import org.apache.sshd.sftp.server.SftpSubsystemConfigurator
    import org.apache.sshd.sftp.server.SftpSubsystemFactory
    import org.gradle.test.fixtures.file.TestDirectoryProvider
    import org.gradle.test.fixtures.file.TestFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. cmd/server-main.go

    		ctxt.certsDirSet = true
    	}
    
    	if cf.Options.FTP.Address != "" {
    		ctxt.FTP = append(ctxt.FTP, fmt.Sprintf("address=%s", cf.Options.FTP.Address))
    	}
    	if cf.Options.FTP.PassivePortRange != "" {
    		ctxt.FTP = append(ctxt.FTP, fmt.Sprintf("passive-port-range=%s", cf.Options.FTP.PassivePortRange))
    	}
    
    	if cf.Options.SFTP.Address != "" {
    		ctxt.SFTP = append(ctxt.SFTP, fmt.Sprintf("address=%s", cf.Options.SFTP.Address))
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  5. .teamcity/subprojects.json

        "path": "platforms/software/resources-s3",
        "unitTests": true,
        "functionalTests": true,
        "crossVersionTests": false
      },
      {
        "name": "resources-sftp",
        "path": "platforms/software/resources-sftp",
        "unitTests": true,
        "functionalTests": true,
        "crossVersionTests": false
      },
      {
        "name": "samples",
        "path": "platforms/documentation/samples",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  6. settings.gradle.kts

        subproject("plugins-version-catalog")
        subproject("publish")
        subproject("resources")
        subproject("resources-http")
        subproject("resources-gcs")
        subproject("resources-s3")
        subproject("resources-sftp")
        subproject("reporting")
        subproject("security")
        subproject("signing")
        subproject("testing-base")
        subproject("testing-base-infrastructure")
        subproject("test-suites-base")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. cmd/common-main.go

    		}
    		ctxt.MemLimit = mlimit
    	} else {
    		ctxt.MemLimit = memAvailable
    	}
    
    	if memAvailable < ctxt.MemLimit {
    		ctxt.MemLimit = memAvailable
    	}
    
    	ctxt.FTP = ctx.StringSlice("ftp")
    	ctxt.SFTP = ctx.StringSlice("sftp")
    	ctxt.Interface = ctx.String("interface")
    	ctxt.UserTimeout = ctx.Duration("conn-user-timeout")
    	ctxt.SendBufSize = ctx.Int("send-buf-size")
    	ctxt.RecvBufSize = ctx.Int("recv-buf-size")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  8. cmd/globals.go

    	StrictS3Compat            bool
    	Addr, ConsoleAddr         string
    	ConfigDir, CertsDir       string
    	configDirSet, certsDirSet bool
    	Interface                 string
    
    	RootUser, RootPwd string
    
    	FTP  []string
    	SFTP []string
    
    	MemLimit uint64
    
    	UserTimeout         time.Duration
    	ShutdownTimeout     time.Duration
    	IdleTimeout         time.Duration
    	ReadHeaderTimeout   time.Duration
    	MaxIdleConnsPerHost int
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt

        val sshdCore = "org.apache.sshd:sshd-core"
        val sshdOsgi = "org.apache.sshd:sshd-osgi"
        val sshdScp = "org.apache.sshd:sshd-scp"
        val sshdSftp = "org.apache.sshd:sshd-sftp"
        val testcontainers = "org.testcontainers:testcontainers"
        val testcontainersSpock = "org.testcontainers:spock"
        val typesafeConfig = "com.typesafe:config"
        val xerces = "xerces:xercesImpl"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. go.mod

    	github.com/nats-io/stan.go v0.10.4
    	github.com/ncw/directio v1.0.5
    	github.com/nsqio/go-nsq v1.1.0
    	github.com/philhofer/fwd v1.1.2
    	github.com/pierrec/lz4 v2.6.1+incompatible
    	github.com/pkg/errors v0.9.1
    	github.com/pkg/sftp v1.13.6
    	github.com/pkg/xattr v0.4.9
    	github.com/prometheus/client_golang v1.19.1
    	github.com/prometheus/client_model v0.6.1
    	github.com/prometheus/common v0.54.0
    	github.com/prometheus/procfs v0.15.1
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top