Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 164 for lmhosts (0.37 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/DefaultMavenArtifactRepository.java

                .setArtifactUrls(Sets.newHashSet(getArtifactUrls()))
                .create();
        }
    
        @Override
        protected Collection<URI> getRepositoryUrls() {
            // In a similar way to Ivy, Maven may use other hosts for additional artifacts, but not POMs
            ImmutableList.Builder<URI> builder = ImmutableList.builder();
            URI root = getUrl();
            if (root != null) {
                builder.add(root);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 18 21:30:55 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/server.go

    func getDNSNames(args *PilotArgs, host string) []string {
    	// Append custom hostname if there is any
    	customHost := features.IstiodServiceCustomHost
    	var cHosts []string
    
    	if customHost != "" {
    		cHosts = strings.Split(customHost, ",")
    	}
    	sans := sets.New(cHosts...)
    	sans.Insert(host)
    	// The first is the recommended one, also used by Apiserver for webhooks.
    	// add a few known hostnames
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/http/httpproxy/proxy.go

    	// HTTPS requests unless overridden by NoProxy.
    	HTTPSProxy string
    
    	// NoProxy represents the NO_PROXY or no_proxy environment
    	// variable. It specifies a string that contains comma-separated values
    	// specifying hosts that should be excluded from proxying. Each value is
    	// represented by an IP address prefix (1.2.3.4), an IP address prefix in
    	// CIDR notation (1.2.3.4/8), a domain name, or a special DNS label (*).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/extensions/v1beta1/generated.proto

    message IngressTLS {
      // Hosts are a list of hosts included in the TLS certificate. The values in
      // this list must match the name/s used in the tlsSecret. Defaults to the
      // wildcard host setting for the loadbalancer controller fulfilling this
      // Ingress, if left unspecified.
      // +optional
      // +listType=atomic
      repeated string hosts = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/HttpAuthenticationDependencyResolutionIntegrationTest.groovy

            then:
            succeeds('listJars')
            and:
            redirectServer.allHeaders.every { it.get("TestHttpHeaderName") == "TestHttpHeaderValue" }
            // These headers should not be propagated to other hosts
            server.allHeaders.every { it.get("TestHttpHeaderName") == null }
    
            cleanup:
            redirectServer.stop()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/dependency_management_terminology.adoc

    A publication has a name and consists of one or more artifacts plus information about those artifacts (the <<#sub:terminology_module_metadata,metadata>>).
    
    [[sub:terminology_repository]]
    == Repository
    
    A repository hosts a set of <<#sub:terminology_module,modules>>, each of which may provide one or many releases (components) indicated by a <<#sub:terminology_module_version,module version>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  7. cluster/images/etcd/Makefile

    # Images should be pushed to staging-k8s.gcr.io.
    PUSH_REGISTRY?=staging-k8s.gcr.io
    
    MANIFEST_IMAGE := $(PUSH_REGISTRY)/etcd
    
    # Install binaries matching base distro permissions
    BIN_INSTALL := install -m 0555
    
    # Hosts running SELinux need :z added to volume mounts
    SELINUX_ENABLED := $(shell cat /sys/fs/selinux/enforce 2> /dev/null || echo 0)
    
    ifeq ($(SELINUX_ENABLED),1)
      DOCKER_VOL_OPTS?=:z
    endif
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_builder.go

    type clusterWrapper struct {
    	cluster *cluster.Cluster
    	// httpProtocolOptions stores the HttpProtocolOptions which will be marshaled when build is called.
    	httpProtocolOptions *http.HttpProtocolOptions
    }
    
    // metadataCerts hosts client certificate related metadata specified in proxy metadata.
    type metadataCerts struct {
    	// tlsClientCertChain is the absolute path to client cert-chain file
    	tlsClientCertChain string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  9. pkg/volume/volume.go

    import (
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    )
    
    // Volume represents a directory used by pods or hosts on a node. All method
    // implementations of methods in the volume interface must be idempotent.
    type Volume interface {
    	// GetPath returns the path to which the volume should be mounted for the
    	// pod.
    	GetPath() string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/DefaultIvyArtifactRepository.java

        public URI getUrl() {
            return urlArtifactRepository.getUrl();
        }
    
    
        @Override
        protected Collection<URI> getRepositoryUrls() {
            // Ivy can resolve files from multiple hosts, so we need to look at all
            // of the possible URLs used by the Ivy resolver to identify all of the repositories
            ImmutableList.Builder<URI> builder = ImmutableList.builder();
            URI root = getUrl();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 21.6K bytes
    - Viewed (0)
Back to top