Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 157 for sftp (0.07 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

         */
        boolean isMailSendMock();
    
        /**
         * Get the value for the key 'mail.smtp.server.main.host.and.port'. <br>
         * The value is, e.g. localhost:25 <br>
         * comment: SMTP server settings for main: host:port
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. 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)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpAuthenticationHolder.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.crawler.client.ftp;
    
    import java.util.ArrayList;
    import java.util.List;
    
    /**
     * @author shinsuke
     *
     */
    public class FtpAuthenticationHolder {
        List<FtpAuthentication> authList = new ArrayList<>();
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top