Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of about 10,000 for a$ (0.04 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/FinalizerTaskIntegrationTest.groovy

                result.assertTasksExecutedInOrder ':a', ':b', ':c'
            }
            2.times {
                fails 'a', '-Pb.broken'
                result.assertTasksExecutedInOrder ':a', ':b', ':c'
            }
            2.times {
                fails 'a', '-Pc.broken'
                result.assertTasksExecutedInOrder ':a', ':b', ':c'
            }
        }
    
        void 'finalizers for finalizers can have a common dependency'() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  2. maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/DefaultArtifactCollectorTest.java

            ArtifactSpec a = createArtifactSpec("a", "1.0");
            ArtifactSpec b = a.addDependency("b", "1.0");
            ArtifactSpec c = a.addDependency("c", "3.0");
    
            b.addDependency("c", "2.0");
            ArtifactSpec d = b.addDependency("d", "4.0");
    
            ArtifactResolutionResult res = collect(a);
            assertEquals(
                    createSet(new Object[] {a.artifact, b.artifact, c.artifact, d.artifact}),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  3. 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)
  4. android/guava/src/com/google/common/base/Converter.java

       */
      @CheckForNull
      public final B convert(@CheckForNull A a) {
        return correctedDoForward(a);
      }
    
      @CheckForNull
      B correctedDoForward(@CheckForNull A a) {
        if (handleNullAutomatically) {
          // TODO(kevinb): we shouldn't be checking for a null result at runtime. Assert?
          return a == null ? null : checkNotNull(doForward(a));
        } else {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 23K bytes
    - Viewed (0)
  5. 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)
  6. src/path/filepath/path_test.go

    	{"a/b/c/d", "a/b/", "../.."},
    	{"a/b/c/d/", "a/b", "../.."},
    	{"a/b/c/d/", "a/b/", "../.."},
    	{"../../a/b", "../../a/b/c/d", "c/d"},
    	{"/a/b", "/a/b", "."},
    	{"/a/b/.", "/a/b", "."},
    	{"/a/b", "/a/b/.", "."},
    	{"/ab/cd", "/ab/cde", "../cde"},
    	{"/ab/cd", "/ab/c", "../c"},
    	{"/a/b", "/a/b/c/d", "c/d"},
    	{"/a/b", "/a/b/../c", "../c"},
    	{"/a/b/../c", "/a/b", "../b"},
    	{"/a/b/c", "/a/c/d", "../../c/d"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  7. 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)
  8. platforms/documentation/docs/src/docs/design/gradle-module-metadata-1.0-specification.md

    This document describes version 1.0 of the Gradle module metadata file. A module metadata file describes the contents of a _module_, which is the unit of publication for a particular repository format, such as a module in a Maven repository. This is often called a "package" in many repository formats.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 23:32:14 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. 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)
  10. tools/istio-iptables/pkg/capture/testdata/ipv6-inbound-ports.golden

    ip6tables -t nat -A ISTIO_IN_REDIRECT -p tcp -j REDIRECT --to-ports 15006
    ip6tables -t nat -A PREROUTING -p tcp -j ISTIO_INBOUND
    ip6tables -t nat -A ISTIO_INBOUND -p tcp --dport 4000 -j ISTIO_IN_REDIRECT
    ip6tables -t nat -A ISTIO_INBOUND -p tcp --dport 5000 -j ISTIO_IN_REDIRECT
    ip6tables -t nat -A OUTPUT -p tcp -j ISTIO_OUTPUT
    ip6tables -t nat -A ISTIO_OUTPUT -o lo -s ::6/128 -j RETURN
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top