Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for tld (0.03 sec)

  1. pilot/docker/Dockerfile.ztunnel

    # BASE_DISTRIBUTION is used to switch between the old base distribution and distroless base images
    ARG BASE_DISTRIBUTION=debug
    
    # Version is the base image version from the TLD Makefile
    ARG BASE_VERSION=latest
    ARG ISTIO_BASE_REGISTRY=gcr.io/istio-release
    
    # The following section is used as base image if BASE_DISTRIBUTION=debug
    FROM ${ISTIO_BASE_REGISTRY}/base:${BASE_VERSION} as debug
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 944 bytes
    - Viewed (0)
  2. cni/deployments/kubernetes/Dockerfile.install-cni

    # BASE_DISTRIBUTION is used to switch between the old base distribution and distroless base images
    ARG BASE_DISTRIBUTION=debug
    
    # Version is the base image version from the TLD Makefile
    ARG BASE_VERSION=latest
    ARG ISTIO_BASE_REGISTRY=gcr.io/istio-release
    
    # The following section is used as base image if BASE_DISTRIBUTION=debug
    FROM ${ISTIO_BASE_REGISTRY}/base:${BASE_VERSION} as debug
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 1002 bytes
    - Viewed (0)
  3. pilot/docker/Dockerfile.proxyv2

    # BASE_DISTRIBUTION is used to switch between the old base distribution and distroless base images
    ARG BASE_DISTRIBUTION=debug
    
    # Version is the base image version from the TLD Makefile
    ARG BASE_VERSION=latest
    ARG ISTIO_BASE_REGISTRY=gcr.io/istio-release
    
    # The following section is used as base image if BASE_DISTRIBUTION=debug
    FROM ${ISTIO_BASE_REGISTRY}/base:${BASE_VERSION} as debug
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. src/net/http/transport_internal_test.go

    		t.Fatal(err)
    	}
    	return ln
    }
    
    func dummyRequest(method string) *Request {
    	req, err := NewRequest(method, "http://fake.tld/", nil)
    	if err != nil {
    		panic(err)
    	}
    	return req
    }
    func dummyRequestWithBody(method string) *Request {
    	req, err := NewRequest(method, "http://fake.tld/", strings.NewReader("foo"))
    	if err != nil {
    		panic(err)
    	}
    	return req
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:57:17 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. src/net/resolverdialfunc_test.go

    				w.AddSRV(1, 2, 80, "foo.bar.")
    				w.AddSRV(2, 3, 81, "bar.baz.")
    				return nil
    			},
    		}),
    	}
    	ctx := context.Background()
    	const fakeDomain = "something-that-is-a-not-a-real-domain.fake-tld."
    
    	t.Run("LookupIP", func(t *testing.T) {
    		ips, err := r.LookupIP(ctx, "ip", fakeDomain)
    		if err != nil {
    			t.Fatal(err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top