Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 132 for uris (0.04 sec)

  1. cmd/kubeadm/app/constants/constants.go

    	KubeControllerManagerPort = 10257
    
    	// EtcdAdvertiseClientUrlsAnnotationKey is the annotation key on every etcd pod, describing the
    	// advertise client URLs
    	EtcdAdvertiseClientUrlsAnnotationKey = "kubeadm.kubernetes.io/etcd.advertise-client-urls"
    	// KubeAPIServerAdvertiseAddressEndpointAnnotationKey is the annotation key on every apiserver pod,
    	// describing the API endpoint (advertise address and bind port of the api server)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/networking/v1/types.go

    // Ingress is a collection of rules that allow inbound connections to reach the
    // endpoints defined by a backend. An Ingress can be configured to give services
    // externally-reachable urls, load balance traffic, terminate SSL, offer name
    // based virtual hosting etc.
    type Ingress struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// Standard object's metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  3. docs/en/data/external_links.yml

    ece title: Deploy Machine Learning Models with Keras, FastAPI, Redis and Docker - author: Mandy Gu author_link: https://towardsdatascience.com/@mandygu link: https://towardsdatascience.com/deploying-iris-classifications-with-fastapi-and-docker-7c9b83fdec3a title: 'Towards Data Science: Deploying Iris Classifications with FastAPI and Docker' - author: Michael Herman author_link: https://testdriven.io/authors/herman link: https://testdriven.io/blog/fastapi-crud/ title: 'TestDriven.io: Developing and...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 00:47:57 UTC 2024
    - 22K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure.sh

      | grep -E "auth/devstorage|auth/cloud-platform"
    }
    
    # Retry a download until we get it. Takes a hash and a set of URLs.
    #
    # $1 is the sha512/sha1 hash of the URL. Can be "" if the sha512/sha1 hash is unknown.
    # $2+ are the URLs to download.
    function download-or-bust {
      local -r hash="$1"
      shift 1
    
      while true; do
        for url in "$@"; do
          local file="${url##*/}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/istio_ca.go

    	"istio.io/istio/security/pkg/server/ca/authenticate"
    	"istio.io/istio/security/pkg/util"
    )
    
    type caOptions struct {
    	ExternalCAType   ra.CaExternalType
    	ExternalCASigner string
    	// domain to use in SPIFFE identity URLs
    	TrustDomain      string
    	Namespace        string
    	Authenticators   []security.Authenticator
    	CertSignerDomain string
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/build.gradle

                project.getDependencies().create(project.files("src/main/resources"))
            )
        }
    }
    
    gradleDocumentation {
        javadocs {
            javaApi = project.uri("https://docs.oracle.com/javase/8/docs/api")
            groovyApi = project.uri("https://docs.groovy-lang.org/docs/groovy-${libs.groovyVersion}/html/gapi")
        }
        kotlinDslReference {
            dokkaVersionOverride = "1.9.10"
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/asm9.go

    }
    
    // The prefixable optab entry contains the pseudo-opcodes which generate relocations, or may generate
    // a more efficient sequence of instructions if a prefixed version exists (ex. paddi instead of oris/ori/add).
    //
    // This table is meant to transform all sequences which might be TOC-relative into an equivalent PC-relative
    // sequence. It also encompasses several transformations which do not involve relocations, those could be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  8. docs/en/docs/advanced/settings.md

    In many cases your application could need some external settings or configurations, for example secret keys, database credentials, credentials for email services, etc.
    
    Most of these settings are variable (can change), like database URLs. And many could be sensitive, like secrets.
    
    For this reason it's common to provide them in environment variables that are read by the application.
    
    ## Environment Variables
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. pilot/cmd/pilot-agent/status/server.go

    		return fmt.Errorf("invalid prober config for %v, the port must be int type", path)
    	}
    	return nil
    }
    
    // FormatProberURL returns a set of HTTP URLs that pilot agent will serve to take over Kubernetes
    // app probers.
    func FormatProberURL(container string) (string, string, string) {
    	return fmt.Sprintf("/app-health/%v/readyz", container),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (1)
  10. src/net/http/client_test.go

    func (f eofReaderFunc) Read(p []byte) (n int, err error) {
    	f()
    	return 0, io.EOF
    }
    
    func TestReferer(t *testing.T) {
    	tests := []struct {
    		lastReq, newReq, explicitRef string // from -> to URLs, explicitly set Referer value
    		want                         string
    	}{
    		// don't send user:
    		{lastReq: "http://******@****.***", newReq: "http://link.com", want: "http://test.com"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
Back to top