Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of about 10,000 for a$ (0.03 sec)

  1. testing/integ-test/src/integTest/groovy/org/gradle/integtests/MultiProjectDependencyIntegrationTest.groovy

            when:
            run ':c:build'
    
            then:
            jarsBuilt 'a', 'b', 'c'
            depsCopied 'c', ['a', 'b']
            depsCopied 'b', ['a']
            depsCopied 'a', []
        }
    
        def "project dependency a->[b,c] and b->c"() {
    
            projectDependency from: 'a', to: ['b', 'c']
            projectDependency from: 'b', to: ['c']
    
            when:
            run ':a:build'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/capture/testdata/inbound-ports-wildcard.golden

    iptables -t nat -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 PREROUTING -p tcp -j ISTIO_INBOUND
    iptables -t nat -A ISTIO_INBOUND -p tcp -j ISTIO_IN_REDIRECT
    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 Mar 11 17:46:23 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. cni/pkg/plugin/testdata/dns.txt.golden

    -A ISTIO_OUTPUT -o lo -p tcp ! --dport 53 -m owner ! --gid-owner 1337 -j RETURN
    -A ISTIO_OUTPUT -m owner --gid-owner 1337 -j RETURN
    -A ISTIO_OUTPUT -p tcp --dport 53 -j REDIRECT --to-ports 15053
    -A ISTIO_OUTPUT -d 127.0.0.1/32 -j RETURN
    -A ISTIO_OUTPUT -j ISTIO_REDIRECT
    -A OUTPUT -p udp -j ISTIO_OUTPUT
    -A ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 1337 -j RETURN
    -A ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner 1337 -j RETURN
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. tools/istio-iptables/pkg/capture/testdata/ipv6-dns-outbound-owner-groups-exclude.golden

    iptables -t nat -A ISTIO_OUTPUT -m owner --gid-owner 888 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -m owner --gid-owner ftp -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -d 127.0.0.1/32 -j RETURN
    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
    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. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.html

        <span id="action-title"></span>
        <hr>
        <a title="{{.Help.list}}" id="action-source" href="./source">Show source code</a>
        <a title="{{.Help.list}}" id="action-source-tab" href="./source" target="_blank">Show source in new tab</a>
        <hr>
        <a title="{{.Help.focus}}" id="action-focus" href="?">Focus</a>
        <a title="{{.Help.ignore}}" id="action-ignore" href="?">Ignore</a>
        <a title="{{.Help.hide}}" id="action-hide" href="?">Hide</a>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 1K bytes
    - Viewed (1)
  6. tools/istio-iptables/pkg/capture/testdata/logging.golden

    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
    iptables -t nat -A ISTIO_OUTPUT -o lo ! -d 127.0.0.1/32 -p tcp ! --dport 15008 -m owner --uid-owner 1337 -j ISTIO_IN_REDIRECT
    iptables -t nat -A ISTIO_OUTPUT -o lo -m owner ! --uid-owner 1337 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -m owner --uid-owner 1337 -j RETURN
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. test/typeparam/typelist.go

    // Cannot embed stand-alone type parameters. Disabled for now.
    /*
    func f0[A any, B interface{type C}, C interface{type D}, D interface{type A}](A, B, C, D)
    func f0x() {
            f := f0[string]
            f("a", "b", "c", "d")
            f0("a", "b", "c", "d")
    }
    
    func f1[A any, B interface{type A}](A, B)
    func f1x() {
            f := f1[int]
            f(int(0), int(0))
            f1(int(0), int(0))
            f(0, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 09:04:48 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. src/internal/runtime/atomic/atomic_test.go

    		go func() {
    			for n := 0; n < N; n++ {
    				for i := range a {
    					atomic.Or8(&a[i], m)
    					if atomic.Load8(&a[i])&m != m {
    						t.Errorf("a[%v] bit %#x not set", i, m)
    					}
    					atomic.And8(&a[i], ^m)
    					if atomic.Load8(&a[i])&m != 0 {
    						t.Errorf("a[%v] bit %#x not clear", i, m)
    					}
    				}
    			}
    			done <- true
    		}()
    	}
    	for i := 0; i < 8; i++ {
    		<-done
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. tools/istio-iptables/pkg/capture/testdata/ipv6-dns-outbound-owner-groups.golden

    iptables -t nat -A ISTIO_OUTPUT -m owner ! --gid-owner java -m owner ! --gid-owner 202 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -d 127.0.0.1/32 -j RETURN
    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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. docs/pt/docs/advanced/events.md

    ```
    
    Aqui nós estamos simulando a *inicialização* custosa do carregamento do modelo colocando a (falsa) função de modelo no dicionário com modelos de _machine learning_ antes do `yield`. Este código será executado **antes** da aplicação **começar a receber requisições**, durante a *inicialização*.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top