Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 440 for p$ (0.03 sec)

  1. tools/istio-iptables/pkg/capture/testdata/ipv6-dns-outbound-owner-groups.golden

    iptables -t raw -N ISTIO_OUTPUT
    iptables -t nat -A ISTIO_INBOUND -p tcp --dport 15008 -j RETURN
    iptables -t nat -A ISTIO_REDIRECT -p tcp -j REDIRECT --to-ports 15001
    iptables -t nat -A ISTIO_IN_REDIRECT -p tcp -j REDIRECT --to-ports 15006
    iptables -t nat -A OUTPUT -p tcp -j ISTIO_OUTPUT
    iptables -t nat -A ISTIO_OUTPUT -o lo -s 127.0.0.6/32 -j RETURN
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. src/hash/maphash/maphash_purego.go

    			seed = mix(r8(p)^m2, r8(p[8:])^seed)
    			p = p[16:]
    		}
    	}
    	switch {
    	case i == 0:
    		return seed
    	case i < 4:
    		a = r3(p, i)
    	default:
    		n := (i >> 3) << 2
    		a = r4(p)<<32 | r4(p[n:])
    		b = r4(p[i-4:])<<32 | r4(p[i-4-n:])
    	}
    	return mix(m5^len, mix(a^m2, b^seed))
    }
    
    func r3(p []byte, k uint64) uint64 {
    	return (uint64(p[0]) << 16) | (uint64(p[k>>1]) << 8) | uint64(p[k-1])
    }
    
    func r4(p []byte) uint64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 12 05:36:29 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. src/internal/types/testdata/spec/typeAliases1.23b.go

    // on the RHS (if any)
    type _[P any, Q ~int] = RHS[P, Q]
    type _[P any, Q int] = RHS[P, Q]
    type _[P int | float64] = RHS[P, int]
    type _[P, Q any] = RHS[P, Q /* ERROR "Q does not satisfy ~int" */]
    
    // A generic type alias may be used like any other generic type.
    type A[P any] = RHS[P, int]
    
    func _(a A[string]) {
    	a.p = "foo"
    	a.q = 42
    }
    
    // A generic alias may refer to another generic alias.
    type B[P any] = A[P]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/looprotate.go

    				after[p.ID] = append(after[p.ID], nextb)
    			}
    			b = nextb
    		}
    		// Swap b and p so that we'll handle p before b when moving blocks.
    		f.Blocks[idToIdx[loop.header.ID]] = p
    		f.Blocks[idToIdx[p.ID]] = loop.header
    		idToIdx[loop.header.ID], idToIdx[p.ID] = idToIdx[p.ID], idToIdx[loop.header.ID]
    
    		// Place b after p.
    		for _, b := range after[p.ID] {
    			move[b.ID] = struct{}{}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. cni/pkg/plugin/testdata/dns.txt.golden

    -N ISTIO_IN_REDIRECT
    -N ISTIO_OUTPUT
    -A ISTIO_INBOUND -p tcp --dport 15008 -j RETURN
    -A ISTIO_REDIRECT -p tcp -j REDIRECT --to-ports 15001
    -A ISTIO_IN_REDIRECT -p tcp -j REDIRECT --to-ports 15006
    -A PREROUTING -p tcp -j ISTIO_INBOUND
    -A ISTIO_INBOUND -p tcp --dport 15020 -j RETURN
    -A ISTIO_INBOUND -p tcp --dport 15021 -j RETURN
    -A ISTIO_INBOUND -p tcp --dport 15090 -j RETURN
    -A ISTIO_INBOUND -p tcp -j ISTIO_IN_REDIRECT
    -A OUTPUT -p tcp -j ISTIO_OUTPUT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/capture/testdata/loopback-outbound-iprange.golden

    iptables -t nat -A ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 3 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 4 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner 1 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner 2 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -p udp --dport 53 -d 127.0.0.53/32 -j REDIRECT --to-port 15053
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. operator/pkg/util/progress/progress.go

    	if p == nil {
    		return
    	}
    	p.report()
    }
    
    func (p *ManifestLog) ReportError(err string) {
    	if p == nil {
    		return
    	}
    	p.mu.Lock()
    	p.err = err
    	p.mu.Unlock()
    	p.report()
    }
    
    func (p *ManifestLog) ReportFinished() {
    	if p == nil {
    		return
    	}
    	p.mu.Lock()
    	p.finished = true
    	p.mu.Unlock()
    	p.report()
    }
    
    func (p *ManifestLog) ReportWaiting(resources []string) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. cni/pkg/plugin/testdata/include-exclude-ip.txt.golden

    -N ISTIO_IN_REDIRECT
    -N ISTIO_OUTPUT
    -A ISTIO_INBOUND -p tcp --dport 15008 -j RETURN
    -A ISTIO_REDIRECT -p tcp -j REDIRECT --to-ports 15001
    -A ISTIO_IN_REDIRECT -p tcp -j REDIRECT --to-ports 15006
    -A PREROUTING -p tcp -j ISTIO_INBOUND
    -A ISTIO_INBOUND -p tcp --dport 15020 -j RETURN
    -A ISTIO_INBOUND -p tcp --dport 15021 -j RETURN
    -A ISTIO_INBOUND -p tcp --dport 15090 -j RETURN
    -A ISTIO_INBOUND -p tcp -j ISTIO_IN_REDIRECT
    -A OUTPUT -p tcp -j ISTIO_OUTPUT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. src/internal/types/testdata/fixedbugs/issue67547.go

    package p
    
    func _[P int]() {
    	type A = P
    	_ = A(0) // don't crash with this conversion
    }
    
    func _[P []int]() {
    	type A = P
    	_ = make(A, 10) // don't report an error for A
    }
    
    func _[P string]() {
    	var t []byte
    	type A = P
    	var s A
    	copy(t, s) // don't report an error for s
    }
    
    func _[P map[int]int]() {
    	type A = P
    	var m A
    	clear(m) // don't report an error for m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. tools/istio-clean-iptables/pkg/cmd/testdata/dns.golden

    ip6tables -t nat -X ISTIO_IN_REDIRECT
    iptables -t nat -D OUTPUT -p udp -j ISTIO_OUTPUT
    iptables -t raw -D OUTPUT -p udp -j ISTIO_OUTPUT
    ip6tables -t nat -D OUTPUT -p udp -j ISTIO_OUTPUT
    ip6tables -t raw -D OUTPUT -p udp -j ISTIO_OUTPUT
    iptables -t nat -D ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 1337 -j RETURN
    ip6tables -t nat -D ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 1337 -j RETURN
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top