Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 104 for ct (0.02 sec)

  1. tools/istio-clean-iptables/pkg/cmd/testdata/outbound-owner-groups-exclude.golden

    ip6tables -t raw -D ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 1337 -j CT --zone 1
    iptables -t raw -D ISTIO_OUTPUT -p udp --sport 15053 -m owner --uid-owner 1337 -j CT --zone 2
    ip6tables -t raw -D ISTIO_OUTPUT -p udp --sport 15053 -m owner --uid-owner 1337 -j CT --zone 2
    iptables -t raw -D ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner 1337 -j CT --zone 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/capture/testdata/loopback-outbound-iprange.golden

    iptables -t raw -A ISTIO_OUTPUT -p udp --sport 15053 -m owner --uid-owner 3 -j CT --zone 2
    iptables -t raw -A ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 4 -j CT --zone 1
    iptables -t raw -A ISTIO_OUTPUT -p udp --sport 15053 -m owner --uid-owner 4 -j CT --zone 2
    iptables -t raw -A ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner 1 -j CT --zone 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. okhttp-dnsoverhttps/src/test/java/okhttp3/dnsoverhttps/DnsOverHttpsTest.kt

        val request2 = server.takeRequest()
        assertThat(request2.method).isEqualTo("GET")
        assertThat(listOf(request1.path, request2.path))
          .containsExactlyInAnyOrder(
            "/lookup?ct&dns=AAABAAABAAAAAAAABmdvb2dsZQNjb20AAAEAAQ",
            "/lookup?ct&dns=AAABAAABAAAAAAAABmdvb2dsZQNjb20AABwAAQ",
          )
      }
    
      @Test
      fun failure() {
        server.enqueue(
          dnsResponse(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. tools/istio-clean-iptables/pkg/cmd/testdata/dns.golden

    ip6tables -t raw -D ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 1337 -j CT --zone 1
    iptables -t raw -D ISTIO_OUTPUT -p udp --sport 15053 -m owner --uid-owner 1337 -j CT --zone 2
    ip6tables -t raw -D ISTIO_OUTPUT -p udp --sport 15053 -m owner --uid-owner 1337 -j CT --zone 2
    iptables -t raw -D ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner 1337 -j CT --zone 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/capture/testdata/tproxy.golden

    iptables -t raw -A ISTIO_OUTPUT -p udp --sport 15053 -m owner --uid-owner 1337 -j CT --zone 2
    iptables -t raw -A ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner 1337 -j CT --zone 1
    iptables -t raw -A ISTIO_OUTPUT -p udp --sport 15053 -m owner --gid-owner 1337 -j CT --zone 2
    iptables -t raw -A ISTIO_OUTPUT -p udp --dport 53 -d 127.0.0.53/32 -j CT --zone 2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/capture/testdata/ipv6-dns-outbound-owner-groups.golden

    iptables -t raw -A ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 1337 -j CT --zone 1
    iptables -t raw -A ISTIO_OUTPUT -p udp --sport 15053 -m owner --uid-owner 1337 -j CT --zone 2
    iptables -t raw -A ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner 1337 -j CT --zone 1
    iptables -t raw -A ISTIO_OUTPUT -p udp --sport 15053 -m owner --gid-owner 1337 -j CT --zone 2
    ip6tables -t nat -N ISTIO_INBOUND
    ip6tables -t nat -N ISTIO_REDIRECT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. src/log/syslog/syslog_test.go

    	}
    
    	// count all the messages arriving
    	count := make(chan int, 1)
    	go func() {
    		ct := 0
    		for range done {
    			ct++
    			// we are looking for 500 out of 1000 events
    			// here because lots of log messages are lost
    			// in buffers (kernel and/or bufio)
    			if ct > N*M/2 {
    				break
    			}
    		}
    		count <- ct
    	}()
    
    	var wg sync.WaitGroup
    	wg.Add(N)
    	for i := 0; i < N; i++ {
    		go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 12 16:09:24 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  8. src/net/http/sniff_test.go

    }
    
    func TestDetectContentType(t *testing.T) {
    	for _, tt := range sniffTests {
    		ct := DetectContentType(tt.data)
    		if ct != tt.contentType {
    			t.Errorf("%v: DetectContentType = %q, want %q", tt.desc, ct, tt.contentType)
    		}
    	}
    }
    
    func TestServerContentTypeSniff(t *testing.T) { run(t, testServerContentTypeSniff) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 07 16:53:14 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  9. test/bigalg.go

    	}
    
    	ma[1] = a
    	a1 := ma[1]
    	if !SameArray(a, a1) {
    		println("fail: map val array", a, a1)
    		panic("bigalg")
    	}
    }
    
    var ct = make(chan T)
    var ca = make(chan []int)
    
    func send() {
    	ct <- t
    	ca <- a
    }
    
    func chantest() {
    	go send()
    
    	t1 := <-ct
    	if t1.a != t.a || t1.b != t.b || t1.c != t.c || t1.d != t.d {
    		println("fail: map val struct", t1.a, t1.b, t1.c, t1.d)
    		panic("bigalg")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 12 18:17:49 UTC 2013
    - 2.1K bytes
    - Viewed (0)
  10. src/strings/strings_test.go

    func TestContainsRune(t *testing.T) {
    	for _, ct := range ContainsRuneTests {
    		if ContainsRune(ct.str, ct.r) != ct.expected {
    			t.Errorf("ContainsRune(%q, %q) = %v, want %v",
    				ct.str, ct.r, !ct.expected, ct.expected)
    		}
    	}
    }
    
    func TestContainsFunc(t *testing.T) {
    	for _, ct := range ContainsRuneTests {
    		if ContainsFunc(ct.str, func(r rune) bool {
    			return ct.r == r
    		}) != ct.expected {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
Back to top