Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 88 for sftp (0.05 sec)

  1. 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)
  2. 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)
  3. src/net/smtp/smtp.go

    //
    //	https://godoc.org/?q=smtp
    package smtp
    
    import (
    	"crypto/tls"
    	"encoding/base64"
    	"errors"
    	"fmt"
    	"io"
    	"net"
    	"net/textproto"
    	"strings"
    )
    
    // A Client represents a client connection to an SMTP server.
    type Client struct {
    	// Text is the textproto.Conn used by the Client. It is exported to allow for
    	// clients to add extensions.
    	Text *textproto.Conn
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. go.sum

    github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
    github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
    github.com/pkg/sftp v1.13.6 h1:JFZT4XbOU7l77xGSpOdW+pwIMqP044IyjXX6FGyEKFo=
    github.com/pkg/sftp v1.13.6/go.mod h1:tz1ryNURKu77RL+GuCzmoJYxQczL3wLNNpPWagdg4Qk=
    github.com/pkg/xattr v0.4.9 h1:5883YPCtkSd8LFbs13nXplj9g9tlrwoJRjgpgMu1/fE=
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 85.8K bytes
    - Viewed (0)
  5. cmd/ftp-server-driver.go

    	xioutil "github.com/minio/minio/internal/ioutil"
    	"github.com/minio/pkg/v3/mimedb"
    	ftp "goftp.io/server/v2"
    )
    
    var _ ftp.Driver = &ftpDriver{}
    
    // ftpDriver implements ftpDriver to store files in minio
    type ftpDriver struct {
    	endpoint string
    }
    
    // NewFTPDriver implements ftp.Driver interface
    func NewFTPDriver() ftp.Driver {
    	return &ftpDriver{endpoint: fmt.Sprintf("127.0.0.1:%s", globalMinioPort)}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:45:54 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.internal.resource.transport.sftp.SftpClientFactory$SftpClientCreator$1> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (SftpClientFactory.java:0)
    Class <org.gradle.internal.resource.transport.sftp.SftpClientFactory$SftpClientCreator$2> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (SftpClientFactory.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
  7. pkg/config/kube/conversion.go

    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/util/sets"
    )
    
    const (
    	SMTP    = 25
    	DNS     = 53
    	MySQL   = 3306
    	MongoDB = 27017
    )
    
    // Ports be skipped for protocol sniffing. Applications bound to these ports will be broken if
    // protocol sniffing is enabled.
    var wellKnownPorts = sets.New[int32](
    	SMTP,
    	DNS,
    	MySQL,
    	MongoDB,
    )
    
    var (
    	grpcWeb    = string(protocol.GRPCWeb)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. src/net/smtp/smtp_test.go

    		t.Fatalf("Second VRFY: expected verification, got %s", err)
    	}
    
    	// fake TLS so authentication won't complain
    	c.tls = true
    	c.serverName = "smtp.google.com"
    	if err := c.Auth(PlainAuth("", "user", "pass", "smtp.google.com")); err != nil {
    		t.Fatalf("AUTH failed: %s", err)
    	}
    
    	if err := c.Rcpt("******@****.***>\r\nDATA\r\nInjected message body\r\n.\r\nQUIT\r\n"); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  9. src/runtime/asm_arm64.s

    	// R0 and R1 already saved
    	STP	(R2, R3), 1*8(RSP)
    	STP	(R4, R5), 3*8(RSP)
    	STP	(R6, R7), 5*8(RSP)
    	STP	(R8, R9), 7*8(RSP)
    	STP	(R10, R11), 9*8(RSP)
    	STP	(R12, R13), 11*8(RSP)
    	STP	(R14, R15), 13*8(RSP)
    	// R16, R17 may be clobbered by linker trampoline
    	// R18 is unused.
    	STP	(R19, R20), 15*8(RSP)
    	STP	(R21, R22), 17*8(RSP)
    	STP	(R23, R24), 19*8(RSP)
    	STP	(R25, R26), 21*8(RSP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/capture/testdata/ipv6-dns-outbound-owner-groups-exclude.golden

    iptables -t nat -A ISTIO_OUTPUT -m owner --gid-owner 1337 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -m owner --gid-owner 888 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -m owner --gid-owner ftp -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -d 127.0.0.1/32 -j RETURN
    iptables -t nat -A OUTPUT -p udp -j ISTIO_OUTPUT
    iptables -t raw -A OUTPUT -p udp -j ISTIO_OUTPUT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top