Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 182 for gethostname (0.34 sec)

  1. src/main/java/org/codelibs/fess/job/PingSearchEngineJob.java

                            } else {
                                postcard.addTo(fessConfig.getMailFromAddress());
                                postcard.dryrun();
                            }
                            postcard.setHostname(systemHelper.getHostname());
                            postcard.setClustername(ping.getClusterName());
                            postcard.setClusterstatus(ping.getClusterStatus());
                        });
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. src/runtime/syscall2_solaris.go

    //go:cgo_import_dynamic libc_execve execve "libc.so"
    //go:cgo_import_dynamic libc_fcntl fcntl "libc.so"
    //go:cgo_import_dynamic libc_forkx forkx "libc.so"
    //go:cgo_import_dynamic libc_gethostname gethostname "libc.so"
    //go:cgo_import_dynamic libc_getpid getpid "libc.so"
    //go:cgo_import_dynamic libc_ioctl ioctl "libc.so"
    //go:cgo_import_dynamic libc_setgid setgid "libc.so"
    //go:cgo_import_dynamic libc_setgroups setgroups "libc.so"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/Address.java

         */
        <T extends Address> T unwrap ( Class<T> type );
    
    
        /**
         * 
         * @return the resolved host name, or the host address if it could not be resolved
         */
        String getHostName ();
    
    
        /**
         * Return the IP address as text such as "192.168.1.15".
         * 
         * @return the ip address
         */
        String getHostAddress ();
    
    
        /**
         * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 03 13:22:30 UTC 2018
    - 2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/exentity/WebAuthentication.java

                return new FormScheme(parameterMap);
            }
            return null;
        }
    
        private AuthScope getAuthScope() {
            if (StringUtil.isBlank(getHostname())) {
                return AuthScope.ANY;
            }
    
            int p;
            if (getPort() == null) {
                p = AuthScope.ANY_PORT;
            } else {
                p = getPort();
            }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top