Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 994 for impl_2 (0.13 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskExecutionIntegrationTest.groovy

            configurationCacheRun("never", "always")
    
            then:
            result.assertTaskSkipped(":always")
            result.assertTasksNotSkipped(":never")
        }
    
        def "shouldRunAfter doesn't imply dependency"() {
            given:
            buildFile << '''
                task a
                task b { shouldRunAfter a }
            '''
    
            when:
            configurationCacheRun 'b'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/Predicate.java

       * <i>typically</i> means that {@code this.apply(t) == that.apply(t)} for all {@code t} of type
       * {@code T}). Note that a {@code false} result from this method does not imply that the
       * predicates are known <i>not</i> to be interchangeable.
       */
      @Override
      boolean equals(@CheckForNull Object object);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      TestCase* GetMutableTestCase(int i);
    
      // Accessors for the implementation object.
      internal::UnitTestImpl* impl() { return impl_; }
      const internal::UnitTestImpl* impl() const { return impl_; }
    
      // These classes and functions are friends as they need to access private
      // members of UnitTest.
      friend class Test;
      friend class internal::AssertHelper;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testcshared/cshared_test.go

    	if err != nil {
    		return fmt.Errorf("command failed: %v\n%v\n%s\n", args, err, out)
    	}
    	if GOOS == "windows" {
    		// We can't simply pass -Wl,--out-implib, because this relies on having imports from multiple packages,
    		// which results in the linkers output implib getting overwritten at each step. So instead build the
    		// import library the traditional way, using a def file.
    		err = os.WriteFile("libgo.def",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 21K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

            failure.assertHasCause("Could not download test-impl-1.3.jar (test:test:1.3)")
    
            and:
            outputContains("Transforming test-api-1.3.jar to test-api-1.3.jar.txt")
            outputContains("Transforming test-impl2-1.3.jar to test-impl2-1.3.jar.txt")
            outputContains("Transforming test-2-0.1.jar to test-2-0.1.jar.txt")
    
            when:
            m1.getArtifact(name: 'test-impl').expectGetBroken()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  6. test/typeparam/issue44688.go

    func test1[T any](arg T) {
    	// calling embedded methods
    	var b1 B1[T]
    	b1.A1 = &A1[T]{}
    	b1.A2 = &ImpA2[T]{}
    
    	b1.A1.m1(arg)
    	b1.m1(arg)
    
    	b1.A2.m2(arg)
    	b1.m2(arg)
    
    	var b2 B2[T]
    	b2 = &ImpA2[T]{}
    	b2.m2(arg)
    
    	// a deeper nesting
    	var d D[T]
    	d.C.B1.A1 = &A1[T]{}
    	d.C.B1.A2 = &ImpA2[T]{}
    	d.m1(arg)
    	d.m2(arg)
    
    	// calling method expressions
    	m1x := B1[T].m1
    	m1x(b1, arg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/ImplementationChangesTest.groovy

            expect:
            changesBetween(
                impl(SimpleTask), [impl(TestAction)],
                impl(SimpleTask), [impl(TestAction)]
            ).empty
        }
    
        def "not up-to-date when task name changed"() {
            expect:
            changesBetween(
                impl(PreviousTask), [impl(TestAction)],
                impl(SimpleTask), [impl(TestAction)]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

            createDirs("api", "impl", "util")
            settingsFile << "include 'api', 'impl', 'util'"
            buildFile << "allprojects { apply plugin: 'java-library' } "
    
            file("impl/build.gradle") << "dependencies { api project(':api') } "
            file("util/build.gradle") << "dependencies { implementation project(':impl') } "
            //util -> impl -> api
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  9. maven-core/src/main/resources/META-INF/maven/org.apache.maven.api.di.Inject

    org.apache.maven.internal.impl.DefaultSettingsXmlFactory
    org.apache.maven.internal.impl.DefaultSuperPomProvider
    org.apache.maven.internal.impl.DefaultToolchainsBuilder
    org.apache.maven.internal.impl.DefaultToolchainsXmlFactory
    org.apache.maven.internal.impl.DefaultTransportProvider
    org.apache.maven.internal.impl.DefaultUrlNormalizer
    org.apache.maven.internal.impl.DefaultVersionParser
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpEarProjectIntegrationTest.groovy

            MavenFileModule lib1Api = mavenRepo.module('org.example', 'lib1-api', '1.0').publish()
            mavenRepo.module('org.example', 'lib1-impl', '1.0').dependsOn(lib1Api).publish()
            MavenFileModule lib2Api = mavenRepo.module('org.example', 'lib2-api', '2.0').publish()
            mavenRepo.module('org.example', 'lib2-impl', '2.0').dependsOn(lib2Api).publish()
            localMaven = "maven { url '${mavenRepo.uri}' }"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top