Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 88 for ct (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/crypto/cipher/gcm_test.go

    			aesgcm, err = cipher.NewGCM(aes)
    			if err != nil {
    				t.Fatal(err)
    			}
    		}
    
    		ct := aesgcm.Seal(nil, nonce, plaintext, ad)
    		if ctHex := hex.EncodeToString(ct); ctHex != test.result {
    			t.Errorf("#%d: got %s, want %s", i, ctHex, test.result)
    			continue
    		}
    
    		plaintext2, err := aesgcm.Open(nil, nonce, ct, ad)
    		if err != nil {
    			t.Errorf("#%d: Open failed", i)
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 25 15:27:49 UTC 2023
    - 35K bytes
    - Viewed (0)
  8. src/mime/multipart/writer_test.go

    		} else if tt.ok {
    			got := w.Boundary()
    			if got != tt.b {
    				t.Errorf("boundary = %q; want %q", got, tt.b)
    			}
    
    			ct := w.FormDataContentType()
    			mt, params, err := mime.ParseMediaType(ct)
    			if err != nil {
    				t.Errorf("could not parse Content-Type %q: %v", ct, err)
    			} else if mt != "multipart/form-data" {
    				t.Errorf("unexpected media type %q; want %q", mt, "multipart/form-data")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 17:36:47 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  9. src/bytes/bytes_test.go

    func TestContainsRune(t *testing.T) {
    	for _, ct := range ContainsRuneTests {
    		if ContainsRune(ct.b, ct.r) != ct.expected {
    			t.Errorf("ContainsRune(%q, %q) = %v, want %v",
    				ct.b, ct.r, !ct.expected, ct.expected)
    		}
    	}
    }
    
    func TestContainsFunc(t *testing.T) {
    	for _, ct := range ContainsRuneTests {
    		if ContainsFunc(ct.b, 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
    - 56.5K bytes
    - Viewed (0)
  10. tests/migrate_test.go

    	err = DB.AutoMigrate(&ArrayTypeModel{})
    	AssertEqual(t, nil, err)
    
    	ct, err := findColumnType(&ArrayTypeModel{}, "number")
    	AssertEqual(t, nil, err)
    	AssertEqual(t, "varchar", ct.DatabaseTypeName())
    
    	ct, err = findColumnType(&ArrayTypeModel{}, "text_array")
    	AssertEqual(t, nil, err)
    	AssertEqual(t, "text[]", ct.DatabaseTypeName())
    
    	ct, err = findColumnType(&ArrayTypeModel{}, "nested_text_array")
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
Back to top