Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 580 for hostnames (0.17 sec)

  1. cmd/kubeadm/app/phases/kubelet/flags.go

    	}
    
    	// Pass the "--hostname-override" flag to the kubelet only if it's different from the hostname
    	nodeName, hostname, err := GetNodeNameAndHostname(opts.nodeRegOpts)
    	if err != nil {
    		klog.Warning(err)
    	}
    	if nodeName != hostname {
    		klog.V(1).Infof("setting kubelet hostname-override to %q", nodeName)
    		kubeletFlags = append(kubeletFlags, kubeadmapi.Arg{Name: "hostname-override", Value: nodeName})
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 10:27:05 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/mock/discovery.go

    			},
    		},
    	}
    }
    
    // MakeExternalHTTPService creates memory external service
    func MakeExternalHTTPService(hostname host.Name, isMeshExternal bool, address string) *model.Service {
    	return &model.Service{
    		CreationTime:   time.Now(),
    		Hostname:       hostname,
    		DefaultAddress: address,
    		MeshExternal:   isMeshExternal,
    		Ports: []*model.Port{{
    			Name:     "http",
    			Port:     80,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 18:40:05 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/types/nodename.go

    // is not confused with similar concepts (the hostname, the cloud provider id,
    // the cloud provider name etc)
    //
    // To clarify the various types:
    //
    //   - Node.Name is the Name field of the Node in the API.  This should be stored in a NodeName.
    //     Unfortunately, because Name is part of ObjectMeta, we can't store it as a NodeName at the API level.
    //
    //   - Hostname is the hostname of the local machine (from uname -n).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/mail/TestmailPostcard.java

        /**
         * Set the value of hostname, used in parameter comment. <br>
         * Even if empty string, treated as empty plainly. So "IF pmb != null" is false if empty.
         * @param hostname The parameter value of hostname. (NotNull)
         */
        public void setHostname(String hostname) {
            registerVariable("hostname", hostname);
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/bsentity/BsWebAuthentication.java

            this.createdTime = value;
        }
    
        public String getHostname() {
            checkSpecifiedProperty("hostname");
            return convertEmptyToNull(hostname);
        }
    
        public void setHostname(String value) {
            registerModifiedProperty("hostname");
            this.hostname = value;
        }
    
        public String getParameters() {
            checkSpecifiedProperty("parameters");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. .github/workflows/mint/minio-compress-encrypt.yaml

    # it through port 9000.
    services:
      minio1:
        <<: *minio-common
        hostname: minio1
        volumes:
          - cdata1-1:/cdata1
          - cdata1-2:/cdata2
    
      minio2:
        <<: *minio-common
        hostname: minio2
        volumes:
          - cdata2-1:/cdata1
          - cdata2-2:/cdata2
    
      minio3:
        <<: *minio-common
        hostname: minio3
        volumes:
          - cdata3-1:/cdata1
          - cdata3-2:/cdata2
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Nov 03 21:18:18 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. .github/workflows/mint/minio-resiliency.yaml

    # it through port 9000.
    services:
      minio1:
        <<: *minio-common
        hostname: minio1
        volumes:
          - rdata1-1:/rdata1
          - rdata1-2:/rdata2
    
      minio2:
        <<: *minio-common
        hostname: minio2
        volumes:
          - rdata2-1:/rdata1
          - rdata2-2:/rdata2
    
      minio3:
        <<: *minio-common
        hostname: minio3
        volumes:
          - rdata3-1:/rdata1
          - rdata3-2:/rdata2
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. .github/workflows/multipart/docker-compose-site1.yaml

    services:
      site1-minio1:
        <<: *minio-common
        hostname: site1-minio1
        volumes:
          - site1-data1-1:/data1
          - site1-data1-2:/data2
    
      site1-minio2:
        <<: *minio-common
        hostname: site1-minio2
        volumes:
          - site1-data2-1:/data1
          - site1-data2-2:/data2
    
      site1-minio3:
        <<: *minio-common
        hostname: site1-minio3
        volumes:
          - site1-data3-1:/data1
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Sep 30 10:13:56 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. platforms/software/resources-sftp/src/main/java/org/gradle/internal/resource/transport/sftp/SftpHost.java

    import org.gradle.api.credentials.PasswordCredentials;
    
    import java.net.URI;
    
    public class SftpHost {
        private final String hostname;
        private final int port;
        private final String username;
        private final String password;
    
        public SftpHost(URI uri, PasswordCredentials credentials) {
            hostname = uri.getHost();
            port = uri.getPort();
            username = credentials.getUsername();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/mail/EsStatusPostcard.java

        /**
         * Set the value of hostname, used in parameter comment. <br>
         * Even if empty string, treated as empty plainly. So "IF pmb != null" is false if empty.
         * @param hostname The parameter value of hostname. (NotNull)
         */
        public void setHostname(String hostname) {
            registerVariable("hostname", hostname);
        }
    
        /**
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top