Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 158 for sethostname (0.15 sec)

  1. pkg/volume/portworx/portworx_util.go

    		return nil, err
    	}
    
    	osgMgmtPort := lookupPXAPIPortFromService(svc)
    	util.portworxClient, err = createDriverClient(volumeHost.GetHostName(), osgMgmtPort)
    	if err != nil {
    		return nil, err
    	}
    
    	klog.Infof("Using portworx local service at: %v:%d as api endpoint",
    		volumeHost.GetHostName(), osgMgmtPort)
    	return volumeclient.VolumeDriver(util.portworxClient), nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 12.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/UniAddress.java

        }
    
        /**
         * Return the hostname of this address such as "MYCOMPUTER".
         */
    
        public String getHostName() {
            if( addr instanceof NbtAddress ) {
                return ((NbtAddress)addr).getHostName();
            }
            return ((InetAddress)addr).getHostName();
        }
    
        /**
         * Return the IP address as text such as "192.168.1.15".
         */
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 16.2K bytes
    - Viewed (0)
  3. platforms/software/resources-sftp/src/main/java/org/gradle/internal/resource/transport/sftp/SftpClientFactory.java

            private JSch jsch;
    
            public LockableSftpClient createNewClient(SftpHost sftpHost) {
                try {
                    Session session = createJsch().getSession(sftpHost.getUsername(), sftpHost.getHostname(), sftpHost.getPort());
                    session.setPassword(sftpHost.getPassword());
                    session.connect();
                    Channel channel = session.openChannel("sftp");
                    channel.connect();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. src/net/conf_test.go

    			nss:      nssStr(t, "hosts: dns mymachines files"),
    			hostTests: []nssHostTest{
    				{"x.com", "myhostname", hostLookupDNSFiles},
    			},
    		},
    	}
    
    	origGetHostname := getHostname
    	defer func() { getHostname = origGetHostname }()
    	defer setSystemNSS(getSystemNSS(), 0)
    	conf, err := newResolvConfTest()
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer conf.teardown()
    
    	for _, tt := range tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:46:36 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. pkg/proxy/nftables/proxier_test.go

    			NodeName:   ptr.To(testHostname),
    		}, {
    			Addresses:  []string{"10.0.1.2"},
    			Conditions: discovery.EndpointConditions{Ready: ptr.To(true)},
    			NodeName:   ptr.To(testHostname),
    		}, {
    			Addresses:  []string{"10.0.1.3"},
    			Conditions: discovery.EndpointConditions{Ready: ptr.To(true)},
    			NodeName:   ptr.To(testHostname),
    		}, { // not ready endpoints should be ignored
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  6. src/syscall/asm_solaris_amd64.s

    TEXT ·exit(SB),NOSPLIT,$0
    	JMP	runtime·syscall_exit(SB)
    
    TEXT ·fcntl1(SB),NOSPLIT,$0
    	JMP	runtime·syscall_fcntl(SB)
    
    TEXT ·forkx(SB),NOSPLIT,$0
    	JMP	runtime·syscall_forkx(SB)
    
    TEXT ·gethostname(SB),NOSPLIT,$0
    	JMP	runtime·syscall_gethostname(SB)
    
    TEXT ·getpid(SB),NOSPLIT,$0
    	JMP	runtime·syscall_getpid(SB)
    
    TEXT ·ioctl(SB),NOSPLIT,$0
    	JMP	runtime·syscall_ioctl(SB)
    
    TEXT ·RawSyscall(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 15 17:21:30 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. tests/integration/telemetry/api/wasmplugin_test.go

    			t.Fatalf("failed to install WasmPlugin: %v", err)
    		}
    		if c.testHostname != "" {
    			sendTrafficToHostname(t, check.ResponseHeader(injectedHeader, c.expectedVersion), c.testHostname)
    		} else {
    			sendTraffic(t, check.ResponseHeader(injectedHeader, c.expectedVersion))
    		}
    	})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/proxier_test.go

    		endpointsChanges:      proxy.NewEndpointsChangeTracker(testHostname, nil, ipFamily, nil, nil),
    		excludeCIDRs:          excludeCIDRs,
    		iptables:              ipt,
    		ipvs:                  ipvs,
    		ipset:                 ipset,
    		conntrack:             conntrack.NewFake(),
    		strictARP:             false,
    		localDetector:         proxyutil.NewNoOpLocalDetector(),
    		hostname:              testHostname,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/netbios/NbtAddress.java

                    if ( this.getNameType() == 0x1D ) {
                        for ( int i = 0; i < addrs.length; i++ ) {
                            if ( addrs[ i ].getNameType() == 0x20 ) {
                                return addrs[ i ].getHostName();
                            }
                        }
                        return null;
                    }
                    else if ( this.isDataFromNodeStatus ) {
                        /*
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 15.2K bytes
    - Viewed (0)
  10. platforms/software/resources-sftp/src/main/java/org/gradle/internal/resource/transport/sftp/SftpHost.java

            hostname = uri.getHost();
            port = uri.getPort();
            username = credentials.getUsername();
            password = credentials.getPassword();
        }
    
        public String getHostname() {
            return hostname;
        }
    
        public int getPort() {
            return port;
        }
    
        public String getUsername() {
            return username;
        }
    
        public String getPassword() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top