Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 957 for mdns (0.04 sec)

  1. tools/istio-iptables/pkg/capture/testdata/dns-uid-gid.golden

    Eoin Fennessy <******@****.***> 1715615475 +0100
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. src/net/dnsclient.go

    	return randInt() % n
    }
    
    // reverseaddr returns the in-addr.arpa. or ip6.arpa. hostname of the IP
    // address addr suitable for rDNS (PTR) record lookup or an error if it fails
    // to parse the IP address.
    func reverseaddr(addr string) (arpa string, err error) {
    	ip := ParseIP(addr)
    	if ip == nil {
    		return "", &DNSError{Err: "unrecognized address", Name: addr}
    	}
    	if ip.To4() != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. releasenotes/notes/auto-allocate-dns.yaml

    John Howard <******@****.***> 1607394502 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 08 02:28:22 UTC 2020
    - 325 bytes
    - Viewed (0)
  4. tools/istio-clean-iptables/pkg/cmd/testdata/dns-uid-gid.golden

    Eoin Fennessy <******@****.***> 1715615475 +0100
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. pkg/dns/client/dns_test.go

    		})
    	}
    	mux.HandleFunc("giant.", func(resp dns.ResponseWriter, msg *dns.Msg) {
    		answer := &dns.Msg{
    			Answer: giantResponse,
    		}
    		answer.SetReply(msg)
    		answer.Rcode = dns.RcodeSuccess
    		if err := resp.WriteMsg(answer); err != nil {
    			t.Fatalf("err: %s", err)
    		}
    	})
    	mux.HandleFunc("giant-tc.", func(resp dns.ResponseWriter, msg *dns.Msg) {
    		answer := &dns.Msg{
    			Answer: giantResponse,
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/capture/testdata/ipv6-dns-uid-gid.golden

    Eoin Fennessy <******@****.***> 1715615475 +0100
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. cluster/gce/windows/README-GCE-Windows-kube-up.md

        gcloud auth login
        ```
    
    *   Run a single test by setting the ginkgo focus to match your test name; for
        example, the "DNS should provide DNS for the cluster" test can be run using:
    
        ```bash
        ./run-e2e.sh --node-os-distro=windows \
          --ginkgo.focus="provide\sDNS\sfor\sthe\scluster"
        ```
    
        Make sure to always include `--node-os-distro=windows` for testing against
        Windows nodes.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 21:39:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  8. src/net/dnsclient_unix.go

    	hostLookupDNSFiles                 // dns first
    	hostLookupFiles                    // only files
    	hostLookupDNS                      // only DNS
    )
    
    var lookupOrderName = map[hostLookupOrder]string{
    	hostLookupCgo:      "cgo",
    	hostLookupFilesDNS: "files,dns",
    	hostLookupDNSFiles: "dns,files",
    	hostLookupFiles:    "files",
    	hostLookupDNS:      "dns",
    }
    
    func (o hostLookupOrder) String() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/health/DaemonHealthStatsTest.groovy

            gcMonitor.getNonHeapStats() >> new GarbageCollectionStats(0, 1024, 2048, 5)
            runningStats.getPrettyUpTime() >> "3 mins"
            runningStats.getAllBuildsTime() >> 1000
    
            then:
            healthStats.healthInfo == "[uptime: 3 mins, performance: 98%, GC rate: 1.00/s, heap usage: 10% of 1 KiB, non-heap usage: 50% of 2 KiB]"
        }
    
        def "handles no garbage collection data"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/internal/connection/RouteSelectorTest.kt

        var routeSelector = newRouteSelector(address)
        dns[PROXY_A_HOST] = dns.allocate(1)
        dns[PROXY_B_HOST] = dns.allocate(1)
    
        // Mark the ProxyA route as failed.
        val selection = routeSelector.next()
        dns.assertRequests(PROXY_A_HOST)
        val route = selection.next()
        assertRoute(route, address, proxyA, dns.lookup(PROXY_A_HOST, 0), PROXY_A_PORT)
        routeDatabase.failed(route)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Mar 06 17:33:38 UTC 2024
    - 20.8K bytes
    - Viewed (0)
Back to top