Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 814 for systemDns (0.16 sec)

  1. okhttp-dnsoverhttps/src/main/kotlin/okhttp3/dnsoverhttps/DnsOverHttps.kt

          }
    
        fun bootstrapDnsHosts(vararg bootstrapDnsHosts: InetAddress): Builder = bootstrapDnsHosts(bootstrapDnsHosts.toList())
    
        fun systemDns(systemDns: Dns) =
          apply {
            this.systemDns = systemDns
          }
      }
    
      companion object {
        val DNS_MESSAGE: MediaType = "application/dns-message".toMediaType()
        const val MAX_RESPONSE_SIZE = 64 * 1024
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Mar 22 07:09:21 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. okhttp-dnsoverhttps/api/okhttp-dnsoverhttps.api

    	public final fun resolvePrivateAddresses (Z)Lokhttp3/dnsoverhttps/DnsOverHttps$Builder;
    	public final fun resolvePublicAddresses (Z)Lokhttp3/dnsoverhttps/DnsOverHttps$Builder;
    	public final fun systemDns (Lokhttp3/Dns;)Lokhttp3/dnsoverhttps/DnsOverHttps$Builder;
    	public final fun url (Lokhttp3/HttpUrl;)Lokhttp3/dnsoverhttps/DnsOverHttps$Builder;
    }
    
    public final class okhttp3/dnsoverhttps/DnsOverHttps$Companion {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 27 15:23:43 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  3. src/os/types.go

    type FileInfo = fs.FileInfo
    
    // A FileMode represents a file's mode and permission bits.
    // The bits have the same definition on all systems, so that
    // information about files can be moved from one system
    // to another portably. Not all bits apply to all systems.
    // The only required bit is [ModeDir] for directories.
    type FileMode = fs.FileMode
    
    // The defined file mode bits are the most significant bits of the [FileMode].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/network_test.go

    	createOrUpdateNamespace(t, s, systemNS, "")
    
    	tracker.WaitOrdered(testNS, systemNS)
    
    	t.Run("change namespace network to nw1", func(t *testing.T) {
    		createOrUpdateNamespace(t, s, systemNS, "nw1")
    		tracker.WaitOrdered(systemNS)
    		expectNetwork(t, s, "nw1")
    	})
    
    	t.Run("change namespace network to nw2", func(t *testing.T) {
    		createOrUpdateNamespace(t, s, systemNS, "nw2")
    		tracker.WaitOrdered(systemNS)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. tests/integration/security/util/cert/cert.go

    			ObjectMeta: metav1.ObjectMeta{
    				Name:      name,
    				Namespace: systemNs.Name(),
    			},
    			Data: map[string][]byte{
    				ca.CACertFile:       caCert,
    				ca.CAPrivateKeyFile: caKey,
    				ca.CertChainFile:    certChain,
    				ca.RootCertFile:     rootCert,
    			},
    		}
    
    		if _, err := cluster.Kube().CoreV1().Secrets(systemNs.Name()).Create(context.TODO(), secret, metav1.CreateOptions{}); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 16:44:37 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. tests/integration/security/https_jwt/main_test.go

    	apps      deployment.SingleNamespaceView
    	jwtServer jwt.Server
    	echoNS    namespace.Instance
    	systemNs  namespace.Instance
    )
    
    func TestMain(m *testing.M) {
    	framework.
    		NewSuite(m).
    		Label(label.CustomSetup).
    		Setup(istio.Setup(&ist, setupConfig)).
    		Setup(func(ctx resource.Context) error {
    			var err error
    			systemNs, err = istio.ClaimSystemNamespace(ctx)
    			return err
    		}).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 17 09:55:58 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. pilot/pkg/controllers/untaint/nodeuntainter_test.go

    func newNodeUntainterTestServer(t *testing.T) *nodeTainterTestServer {
    	stop := make(chan struct{})
    	t.Cleanup(func() { close(stop) })
    	client := kubelib.NewFakeClient()
    
    	nodeUntainter := NewNodeUntainter(stop, client, systemNS, systemNS)
    	go nodeUntainter.Run(stop)
    	client.RunAndWait(stop)
    	kubelib.WaitForCacheSync("test", stop, nodeUntainter.HasSynced)
    
    	pc := clienttest.Wrap(t, nodeUntainter.podsClient)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 00:50:31 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. tests/integration/security/remote_jwks/main_test.go

    	echoNS    namespace.Instance
    	systemNs  namespace.Instance
    )
    
    // remote_jwks is to test fully delegating Envoy to fetch JWKs server (PILOT_JWT_ENABLE_REMOTE_JWKS: envoy).
    func TestMain(m *testing.M) {
    	framework.
    		NewSuite(m).
    		Label(label.CustomSetup).
    		Setup(istio.Setup(&ist, setupConfig)).
    		Setup(func(ctx resource.Context) error {
    			var err error
    			systemNs, err = istio.ClaimSystemNamespace(ctx)
    			return err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 01:47:52 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/config/builder.go

    func (b *Builder) BuildCompleteSources() *Builder {
    	b.t.Helper()
    	out := b.Copy()
    
    	systemNS := istio.ClaimSystemNamespaceOrFail(out.t, out.t)
    
    	// Build all the complete config that doesn't require well-known parameters.
    	for _, s := range out.complete {
    		out.addYAML(withParams(s, param.Params{
    			param.SystemNamespace.String(): systemNS,
    		}))
    	}
    
    	return out
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 23:42:29 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  10. tests/integration/security/reachability_test.go

    	cMinIstioVersion         = "1.15.0"
    	// cMinIstioVersionDS       = "1.16.0"
    )
    
    func TestReachability(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			systemNS := istio.ClaimSystemNamespaceOrFail(t, t)
    
    			integIstioVersion := cMinIstioVersion
    			var migrationApp echo.Instances
    			// if dual stack is enabled, a dual stack echo config should be added
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top