Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 158 for sethostname (0.27 sec)

  1. src/main/java/jcifs/smb/SmbTransportPoolImpl.java

                    .unwrap(SmbTransportInternal.class);
                  SmbSessionInternal smbSession = smbTransport.getSmbSession(tf, dc.getHostName(), null).unwrap(SmbSessionInternal.class);
                  SmbTreeInternal tree = smbSession.getSmbTree(tf.getConfig().getLogonShare(), null).unwrap(SmbTreeInternal.class) ) {
                tree.connectLogon(tf);
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Dec 20 14:09:34 UTC 2020
    - 12.5K bytes
    - Viewed (0)
  2. okhttp-tls/README.md

        .build();
    
    // Create a server certificate and a server that uses it.
    HeldCertificate serverCertificate = new HeldCertificate.Builder()
        .commonName("ingen")
        .addSubjectAlternativeName(server.getHostName())
        .signedBy(rootCertificate)
        .build();
    HandshakeCertificates serverCertificates = new HandshakeCertificates.Builder()
        .addTrustedCertificate(rootCertificate.certificate())
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 17 15:34:10 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpServerFixture.groovy

        }
    
        void setLogRequests(boolean logRequests) {
            this.logRequests = logRequests
        }
    
        /**
         * Use the hostname for the server's URL instead of the IP.
         */
        void useHostname() {
            this.useHostnameForUrl = true
        }
    
        AuthScheme getAuthenticationScheme() {
            return securityHandlerWrapper.authenticationScheme
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_getters.go

    	if result, podUID := pcm.IsPodCgroup(cgroupfs); result {
    		return kl.podManager.GetPodByUID(podUID)
    	}
    	return nil, false
    }
    
    // GetHostname Returns the hostname as the kubelet sees it.
    func (kl *Kubelet) GetHostname() string {
    	return kl.hostname
    }
    
    // getRuntime returns the current Runtime implementation in use by the kubelet.
    func (kl *Kubelet) getRuntime() kubecontainer.Runtime {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 00:48:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIvyPublishIntegrationTest.groovy

            with (server) {
                requireAuthentication(username, password)
                // or else insecure protocol enforcement is skipped
                useHostname()
                start()
            }
            def remoteRepo = new IvyHttpRepository(server, ivyRepo)
    
            settingsFile "rootProject.name = 'root'"
    
            def credentialsBlock
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

            final String[] toAddresses = form.notificationTo.split(",");
            final Map<String, Object> dataMap = new HashMap<>();
            dataMap.put("hostname", systemHelper.getHostname());
    
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final Postbox postbox = ComponentUtil.getComponent(Postbox.class);
            try {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. pkg/controller/volume/attachdetach/util/util_test.go

    	"k8s.io/client-go/kubernetes/fake"
    	utiltesting "k8s.io/client-go/util/testing"
    	"k8s.io/kubernetes/pkg/volume"
    	volumetest "k8s.io/kubernetes/pkg/volume/testing"
    )
    
    const (
    	testHostName      = "test-hostname"
    	socketPath        = "/var/run/kmsplugin"
    	migratedVolume    = "migrated-volume-name"
    	nonMigratedVolume = "non-migrated-volume-name"
    	testNodeName      = "test-node-name"
    )
    
    var (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 12 05:42:38 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  8. testing/internal-testing/src/main/groovy/org/gradle/test/preconditions/UnitTestPreconditions.groovy

            }
        }
    
        static final class NotEC2Agent implements TestPrecondition {
            @Override
            boolean isSatisfied() throws UnknownHostException {
                return !InetAddress.getLocalHost().getHostName().startsWith("ip-")
            }
        }
    
        static final class StableGroovy implements TestPrecondition {
            @Override
            boolean isSatisfied() {
                !GroovySystem.version.endsWith("-SNAPSHOT")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/CrossVersionPerformanceTestRunner.groovy

                args: args.collect { it.toString() },
                gradleOpts: resolveGradleOpts(),
                daemon: useDaemon,
                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 25 14:54:56 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/networkfilter_test.go

    				}
    			} else {
    				if tcpProxy.TunnelingConfig.GetHostname() != tt.expectedTunnelingConfig.hostname {
    					t.Fatalf("Expected to get tunneling_config.hostname: %s, but got: %s",
    						tt.expectedTunnelingConfig.hostname, tcpProxy.TunnelingConfig.GetHostname())
    				}
    				if tcpProxy.TunnelingConfig.GetUsePost() != tt.expectedTunnelingConfig.usePost {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top