Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for ImplB2 (0.12 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractCrossTaskIncrementalCompilationIntegrationTest.groovy

            source impl: ["class SomeImpl {}", "class ImplB extends B {}", "class ImplB2 extends ImplB {}"]
            impl.snapshot { run language.compileTaskName }
    
            when:
            source api: ["class B { /* remove extends */ }"]
            run "impl:${language.compileTaskName}"
    
            then:
            impl.recompiledClasses("ImplB", "ImplB2")
    
            when:
            impl.snapshot()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  2. src/text/template/testdata/tmpl2.tmpl

    Russ Cox <******@****.***> 1410149331 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 50 bytes
    - Viewed (0)
  3. src/html/template/testdata/tmpl2.tmpl

    Russ Cox <******@****.***> 1594052821 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 14 16:54:25 UTC 2020
    - 50 bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/loader/CachingToolingImplementationLoaderTest.groovy

            when:
            def impl = loader.create(distribution, loggerFactory, progressListener, params, cancellationToken)
            def impl2 = loader.create(distribution, loggerFactory, progressListener, params, cancellationToken)
    
            then:
            impl == connection
            impl2 == connection
            1 * target.create(distribution, loggerFactory, progressListener, params, cancellationToken) >> connection
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 09:39:07 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/ServiceLocatorTest.groovy

            def impl2 = stream("org.gradle.Impl2")
    
            when:
            def result = serviceLocator.getAll(CharSequence)
    
            then:
            result.size() == 2
            result[0] instanceof String
            result[1] instanceof StringBuilder
            1 * classLoader.getResources("META-INF/services/java.lang.CharSequence") >> Collections.enumeration([impl1, impl2])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/ManagedCollectionProxyClassGeneratorTest.groovy

            target.value >> 12
    
            expect:
            def impl1 = generate(SomeTypeImpl, SpecializedType)
            def impl2 = generate(SomeTypeImpl, SpecializedType2)
            impl1 != impl2
            SpecializedType.isAssignableFrom(impl1)
            SpecializedType2.isAssignableFrom(impl2)
        }
    
        SomeType newInstance(Class<? extends SomeType> implType, Class<? extends SomeType> publicType, SomeType target) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. src/html/template/testdata/fs.zip

    tmpl1.tmpl template1 {{define "x"}}x{{end}} {{template "y"}} tmpl2.tmpl template2 {{define "y"}}y{{end}} {{template "x"}}...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:14 UTC 2020
    - 406 bytes
    - Viewed (0)
  8. src/html/template/multi_test.go

    var templateFileExecTests = []execTest{
    	{"test", `{{template "tmpl1.tmpl"}}{{template "tmpl2.tmpl"}}`, "template1\n\ny\ntemplate2\n\nx\n", 0, true},
    }
    
    func TestParseFilesWithData(t *testing.T) {
    	template, err := New("root").ParseFiles("testdata/tmpl1.tmpl", "testdata/tmpl2.tmpl")
    	if err != nil {
    		t.Fatalf("error parsing files: %v", err)
    	}
    	testExecute(templateFileExecTests, template, t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 8K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGeneratorTest.groovy

            def sameStateDifferentType = generate(SomeTypeWithReadOnly).newInstance(state1, typeConverter)
            def impl2 = proxyClass.newInstance(state2, typeConverter)
    
            then:
            Matchers.strictlyEquals(impl1, sameState)
            Matchers.strictlyEquals(impl1, sameStateDifferentType)
            !impl1.equals(impl2)
        }
    
        def "Two views are equal when their state objects are equal"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  10. src/text/template/multi_test.go

    var templateFileExecTests = []execTest{
    	{"test", `{{template "tmpl1.tmpl"}}{{template "tmpl2.tmpl"}}`, "template1\n\ny\ntemplate2\n\nx\n", 0, true},
    }
    
    func TestParseFilesWithData(t *testing.T) {
    	template, err := New("root").ParseFiles("testdata/tmpl1.tmpl", "testdata/tmpl2.tmpl")
    	if err != nil {
    		t.Fatalf("error parsing files: %v", err)
    	}
    	testExecute(templateFileExecTests, template, t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 08 10:48:29 UTC 2022
    - 11.7K bytes
    - Viewed (0)
Back to top