Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 217 for sftp (0.05 sec)

  1. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    		}
    	}
    
    	if needSuffix {
    		switch inst.Op {
    		case CMPXCHG8B, FLDCW, FNSTCW, FNSTSW, LDMXCSR, LLDT, LMSW, LTR, PCLMULQDQ,
    			SETA, SETAE, SETB, SETBE, SETE, SETG, SETGE, SETL, SETLE, SETNE, SETNO, SETNP, SETNS, SETO, SETP, SETS,
    			SLDT, SMSW, STMXCSR, STR, VERR, VERW:
    			// For various reasons, libopcodes emits no suffix for these instructions.
    
    		case CRC32:
    			op += byteSizeSuffix(argBytes(&inst, inst.Args[1]))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/asm/internal/asm/testdata/arm64.s

    	LDPSW	8(R1), (ZR, R2)     // 3f084169
    	STP	(R3, R4), (R5)      // a31000a9
    	STP	(R3, R4), 8(R5)     // a39000a9
    	STP.W	(R3, R4), 8(R5)     // a39080a9
    	STP.P	(R3, R4), 8(R5)     // a39080a8
    	STP	(R3, R4), -8(R5)    // a3903fa9
    	STP	(R3, R4), -4(R5)    // bb1000d1631300a9
    	STP	(R3, R4), 11(R0)    // 1b2c0091631300a9
    	STP	(R3, R4), 1024(R0)  // 1b001091631300a9
    	STP	(R3, R4), (RSP)     // e31300a9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 94.9K bytes
    - Viewed (0)
  4. tools/istio-iptables/pkg/capture/testdata/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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. test/codegen/memcombine.go

    	_, _ = w1[3], w2[3]
    	w1[0], w1[1], w1[2], w1[3] = 0, 0, 0, 0 // arm64:"STP",-"MOVB",-"MOVH"
    	w2[2], w2[3], w2[1], w2[0] = 0, 0, 0, 0 // arm64:"STP",-"MOVB",-"MOVH"
    }
    
    func zero_uint64_2(d1, d2 []uint64) {
    	_, _ = d1[1], d2[1]
    	d1[0], d1[1] = 0, 0 // arm64:"STP",-"MOVB",-"MOVH"
    	d2[1], d2[0] = 0, 0 // arm64:"STP",-"MOVB",-"MOVH"
    }
    
    func loadstore(p, q *[4]uint8) {
    	// amd64:"MOVL",-"MOVB"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 29.7K 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. src/main/java/org/codelibs/fess/es/config/exentity/FileConfig.java

    import org.codelibs.fess.Constants;
    import org.codelibs.fess.app.service.FileAuthenticationService;
    import org.codelibs.fess.crawler.client.CrawlerClientFactory;
    import org.codelibs.fess.crawler.client.ftp.FtpAuthentication;
    import org.codelibs.fess.crawler.client.smb.SmbAuthentication;
    import org.codelibs.fess.es.config.bsentity.BsFileConfig;
    import org.codelibs.fess.helper.SystemHelper;
    import org.codelibs.fess.util.ComponentUtil;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. src/crypto/x509/pkcs8.go

    package x509
    
    import (
    	"crypto/ecdh"
    	"crypto/ecdsa"
    	"crypto/ed25519"
    	"crypto/rsa"
    	"crypto/x509/pkix"
    	"encoding/asn1"
    	"errors"
    	"fmt"
    )
    
    // pkcs8 reflects an ASN.1, PKCS #8 PrivateKey. See
    // ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-8/pkcs-8v1_2.asn
    // and RFC 5208.
    type pkcs8 struct {
    	Version    int
    	Algo       pkix.AlgorithmIdentifier
    	PrivateKey []byte
    	// optional attributes omitted.
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  9. 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)
  10. tools/istio-clean-iptables/pkg/cmd/cleanup_test.go

    				cfg.RedirectDNS = true
    				cfg.OwnerGroupsInclude = "java,202"
    			},
    		},
    		{
    			"outbound-owner-groups-exclude",
    			func(cfg *config.Config) {
    				cfg.RedirectDNS = true
    				cfg.OwnerGroupsExclude = "888,ftp"
    			},
    		},
    		{
    			"inbound-interception-mode",
    			func(cfg *config.Config) {
    				cfg.InboundInterceptionMode = "TPROXY"
    				cfg.InboundTProxyMark = "1337"
    			},
    		},
    	}
    	for _, tt := range cases {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top