Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 440 for p$ (0.02 sec)

  1. tools/istio-clean-iptables/pkg/cmd/testdata/outbound-owner-groups.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.8K bytes
    - Viewed (0)
  2. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinCompositeProviderFactory.kt

     */
    public class KotlinCompositeProviderFactory<P : KotlinComposableProvider>(
        private val emptyProvider: P,
        private val composeProviders: (List<P>) -> P,
    ) {
        public fun create(providers: List<P>): P = when (providers.size) {
            0 -> emptyProvider
            1 -> providers.single()
            else -> composeProviders(providers)
        }
    
        public fun createFlattened(providers: List<P>): P =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/capture/testdata/ipv6-ipnets.golden

    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 PREROUTING -p tcp -j ISTIO_INBOUND
    iptables -t nat -A ISTIO_INBOUND -p tcp --dport 4000 -j ISTIO_IN_REDIRECT
    iptables -t nat -A ISTIO_INBOUND -p tcp --dport 5000 -j ISTIO_IN_REDIRECT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/CollectionPropertyInternal.java

         *
         * <p>The given provider will be queried when the value of this property is queried.
         *
         * <p>
         * When invoked on a property with no value, this method first sets the value
         * of the property to its current convention value, if set, or an empty collection.
         * </p>
         * <p>Even if the given provider has no value, after this method is invoked,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 18:32:13 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/capture/testdata/ipv6-dns-outbound-owner-groups-exclude.golden

    iptables -t nat -A OUTPUT -p udp -j ISTIO_OUTPUT
    iptables -t raw -A OUTPUT -p udp -j ISTIO_OUTPUT
    iptables -t nat -A ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 1337 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner 1337 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner 888 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner ftp -j RETURN
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. cmd/erasure-decode.go

    	if len(dst) != len(p.readers) {
    		newBuf = make([][]byte, len(p.readers))
    	} else {
    		for i := range newBuf {
    			newBuf[i] = newBuf[i][:0]
    		}
    	}
    	var newBufLK sync.RWMutex
    
    	if p.offset+p.shardSize > p.shardFileSize {
    		p.shardSize = p.shardFileSize - p.offset
    	}
    	if p.shardSize == 0 {
    		return newBuf, nil
    	}
    
    	readTriggerCh := make(chan bool, len(p.readers))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 21 14:36:21 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/capture/testdata/ip-range.golden

    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
    iptables -t raw -A ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 3 -j CT --zone 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. src/math/rand/v2/chacha8.go

    	}
    	for len(p) >= 8 {
    		byteorder.LePutUint64(p, c.Uint64())
    		p = p[8:]
    		n += 8
    	}
    	if len(p) > 0 {
    		byteorder.LePutUint64(c.readBuf[:], c.Uint64())
    		n += copy(p, c.readBuf[:])
    		c.readLen = 8 - len(p)
    	}
    	return
    }
    
    // UnmarshalBinary implements the encoding.BinaryUnmarshaler interface.
    func (c *ChaCha8) UnmarshalBinary(data []byte) error {
    	data, ok := cutPrefix(data, []byte("readbuf:"))
    	if ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/ProjectConfigurationIntegrationTest.groovy

            buildFile << '''
                allprojects { p ->
                    println "[1] Adding afterEvaluate for $p.name"
                    p.afterEvaluate {
                        println "[1] afterEvaluate $p.name"
                    }
                }
    
                project(':a') {
                    println "[2] Adding evaluationDependsOn"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. src/fmt/errors.go

    func Errorf(format string, a ...any) error {
    	p := newPrinter()
    	p.wrapErrs = true
    	p.doPrintf(format, a)
    	s := string(p.buf)
    	var err error
    	switch len(p.wrappedErrs) {
    	case 0:
    		err = errors.New(s)
    	case 1:
    		w := &wrapError{msg: s}
    		w.err, _ = a[p.wrappedErrs[0]].(error)
    		err = w
    	default:
    		if p.reordered {
    			slices.Sort(p.wrappedErrs)
    		}
    		var errs []error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top