Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 156 for gethostname (0.26 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/CrossBuildPerformanceTestRunner.groovy

                testId: testId,
                testProject: testProject,
                testGroup: testGroup,
                jvm: Jvm.current().toString(),
                host: InetAddress.getLocalHost().getHostName(),
                operatingSystem: OperatingSystem.current().toString(),
                versionUnderTest: GradleVersion.current().getVersion(),
                vcsBranch: Git.current().branchName,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-plugin-performance/src/testFixtures/groovy/org/gradle/performance/fixture/BuildScanPerformanceTestRunner.groovy

                testId: testId,
                testProject: testProject,
                testGroup: testGroup,
                jvm: Jvm.current().toString(),
                host: InetAddress.getLocalHost().getHostName(),
                operatingSystem: OperatingSystem.current().toString(),
                versionUnderTest: GradleVersion.current().getVersion(),
                vcsBranch: Git.current().branchName,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:38:06 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  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. 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)
  8. src/net/dnsconfig.go

    //   - github.com/metacubex/mihomo
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname defaultNS
    var defaultNS = []string{"127.0.0.1:53", "[::1]:53"}
    
    var getHostname = os.Hostname // variable for testing
    
    type dnsConfig struct {
    	servers       []string      // server addresses (in host:port form) to use
    	search        []string      // rooted suffixes to append to local name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

            assertNotNull(systemHelper.getHostname());
            try {
                envMap.put("COMPUTERNAME", "xxx");
                assertEquals("xxx", systemHelper.getHostname());
            } finally {
                envMap.remove("COMPUTERNAME");
            }
            try {
                envMap.put("HOSTNAME", "yyy");
                assertEquals("yyy", systemHelper.getHostname());
            } finally {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/ntlm/NTLMCredentialsTest.groovy

            credentials.username >> "username"
            credentials.password >> "password"
    
            when:
            def ntlmCredentials = new NTLMCredentials(credentials) {
                protected String getHostName() {
                    return "hostname.domain.org"
                }
            }
    
            then:
            ntlmCredentials.workstation == 'HOSTNAME'
        }
    
        def "null username passed"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top