Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 88 for sftp (0.05 sec)

  1. tools/istio-clean-iptables/pkg/cmd/testdata/outbound-owner-groups-exclude.golden

    ip6tables -t nat -D ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner 888 -j RETURN
    iptables -t nat -D ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner ftp -j RETURN
    ip6tables -t nat -D ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner ftp -j RETURN
    iptables -t raw -D ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 1337 -j CT --zone 1
    ip6tables -t raw -D ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 1337 -j CT --zone 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/proxier_test.go

    						Port:      uint16(3001),
    						Scheduler: "rr",
    					},
    					{
    						IP:       "100.101.102.104",
    						Port:     3001,
    						Protocol: "SCTP",
    					}: {
    						Address:   netutils.ParseIPSloppy("100.101.102.104"),
    						Protocol:  "SCTP",
    						Port:      uint16(3001),
    						Scheduler: "rr",
    					},
    					{
    						IP:       "100.101.102.105",
    						Port:     3001,
    						Protocol: "SCTP",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  3. src/crypto/rsa/pss_test.go

    	. "crypto/rsa"
    	"crypto/sha1"
    	"crypto/sha256"
    	"encoding/hex"
    	"math/big"
    	"os"
    	"strconv"
    	"strings"
    	"testing"
    )
    
    func TestEMSAPSS(t *testing.T) {
    	// Test vector in file pss-int.txt from: ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-1/pkcs-1v2-1-vec.zip
    	msg := []byte{
    		0x85, 0x9e, 0xef, 0x2f, 0xd7, 0x8a, 0xca, 0x00, 0x30, 0x8b,
    		0xdc, 0x47, 0x11, 0x93, 0xbf, 0x55, 0xbf, 0x9d, 0x78, 0xdb,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. pkg/controller/endpointslice/endpointslice_controller_test.go

    					Ports: []v1.ServicePort{
    						{Name: "tcp-example", TargetPort: intstr.FromInt32(80), Protocol: v1.ProtocolTCP},
    						{Name: "udp-example", TargetPort: intstr.FromInt32(161), Protocol: v1.ProtocolUDP},
    						{Name: "sctp-example", TargetPort: intstr.FromInt32(3456), Protocol: v1.ProtocolSCTP},
    					},
    					Selector:   map[string]string{"foo": "bar"},
    					IPFamilies: []v1.IPFamily{v1.IPv4Protocol},
    				},
    			},
    			pods: []*v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/util/ipvs_linux.go

    		return uint16(unix.IPPROTO_UDP)
    	case "sctp":
    		return uint16(unix.IPPROTO_SCTP)
    	}
    	return uint16(0)
    }
    
    // protocolTypeToString returns the name for the given protocol.
    func protocolToString(proto Protocol) string {
    	switch proto {
    	case unix.IPPROTO_TCP:
    		return "TCP"
    	case unix.IPPROTO_UDP:
    		return "UDP"
    	case unix.IPPROTO_SCTP:
    		return "SCTP"
    	}
    	return ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/capture/run_test.go

    			func(cfg *config.Config) {
    				cfg.OwnerGroupsInclude = "java,202"
    			},
    		},
    		{
    			"outbound-owner-groups-exclude",
    			func(cfg *config.Config) {
    				cfg.OwnerGroupsExclude = "888,ftp"
    			},
    		},
    		{
    			"ipv6-dns-outbound-owner-groups",
    			func(cfg *config.Config) {
    				cfg.EnableIPv6 = true
    				cfg.RedirectDNS = true
    				cfg.OwnerGroupsInclude = "java,202"
    			},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/helpers_test.go

    			protocol: "TCP",
    			expected: runtimeapi.Protocol_TCP,
    		},
    		{
    			name:     "UDP protocol",
    			protocol: "UDP",
    			expected: runtimeapi.Protocol_UDP,
    		},
    		{
    			name:     "SCTP protocol",
    			protocol: "SCTP",
    			expected: runtimeapi.Protocol_SCTP,
    		},
    		{
    			name:     "unknown protocol",
    			protocol: "unknown",
    			expected: runtimeapi.Protocol_TCP,
    		},
    	} {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. schema/naming.go

    	// https://github.com/golang/lint/blob/master/lint.go#L770
    	commonInitialisms         = []string{"API", "ASCII", "CPU", "CSS", "DNS", "EOF", "GUID", "HTML", "HTTP", "HTTPS", "ID", "IP", "JSON", "LHS", "QPS", "RAM", "RHS", "RPC", "SLA", "SMTP", "SSH", "TLS", "TTL", "UID", "UI", "UUID", "URI", "URL", "UTF8", "VM", "XML", "XSRF", "XSS"}
    	commonInitialismsReplacer *strings.Replacer
    )
    
    func init() {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/exentity/DataConfig.java

    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.fess.Constants;
    import org.codelibs.fess.crawler.client.CrawlerClientFactory;
    import org.codelibs.fess.crawler.client.ftp.FtpAuthentication;
    import org.codelibs.fess.crawler.client.ftp.FtpClient;
    import org.codelibs.fess.crawler.client.http.Authentication;
    import org.codelibs.fess.crawler.client.http.HcHttpClient;
    import org.codelibs.fess.crawler.client.http.form.FormScheme;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 09:48:04 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    		(MOVDstore ptr (MOVDconst [0]) mem))
    (Zero [16] ptr mem) =>
    	(STP [0] ptr (MOVDconst [0]) (MOVDconst [0]) mem)
    
    (Zero [32] ptr mem) =>
    	(STP [16] ptr (MOVDconst [0]) (MOVDconst [0])
    		(STP [0] ptr (MOVDconst [0]) (MOVDconst [0]) mem))
    
    (Zero [48] ptr mem) =>
    	(STP [32] ptr (MOVDconst [0]) (MOVDconst [0])
    		(STP [16] ptr (MOVDconst [0]) (MOVDconst [0])
    			(STP [0] ptr (MOVDconst [0]) (MOVDconst [0]) mem)))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
Back to top