Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,788 for a$ (0.03 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. 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)
  4. 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)
  5. 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)
  6. docs/en/docs/index.md

    ---
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/flowcontrol/v1beta3/generated.proto

    }
    
    // NonResourcePolicyRule is a predicate that matches non-resource requests according to their verb and the
    // target non-resource URL. A NonResourcePolicyRule matches a request if and only if both (a) at least one member
    // of verbs matches the request and (b) at least one member of nonResourceURLs matches the request.
    message NonResourcePolicyRule {
      // `verbs` is a list of matching verbs and may not be empty.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/execution/taskgraph/DefaultTaskExecutionGraphSpec.groovy

            Task a = task("a")
            Task b = task("b", a)
            Task c = task("c", b, a)
            Task d = task("d", c)
    
            when:
            populateAndExecute([d])
    
            then:
            executedTasks == [a, b, c, d]
            failures.empty
        }
    
        def "executes dependencies in name order"() {
            Task a = task("a")
            Task b = task("b")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. src/reflect/abi.go

    	// register assignment fails.
    	aOld := *a
    	if !a.regAssign(t, 0) {
    		// Register assignment failed. Roll back any changes
    		// and stack-assign.
    		*a = aOld
    		a.stackAssign(t.Size(), uintptr(t.Align()))
    		return &a.steps[len(a.steps)-1]
    	}
    	return nil
    }
    
    // addRcvr extends the abiSeq with a new method call
    // receiver according to the interface calling convention.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java

      public void testOf_ordering() {
        SortedSet<String> set = of("e", "a", "f", "b", "d", "c");
        assertThat(set).containsExactly("a", "b", "c", "d", "e", "f").inOrder();
      }
    
      /*
       * Tests that we workaround GWT bug #3621 (or that it is already fixed).
       *
       * A call to of() with a parameter that is not a plain Object[] (here,
       * Interface[]) creates a RegularImmutableSortedSet backed by an array of that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 45.1K bytes
    - Viewed (0)
Back to top