Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,031 for other2 (0.45 sec)

  1. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/ZincScalaCompilerIntegrationTest.groovy

            file("src/main/scala/Other.scala") << """class Other"""
            file("src/main/scala/Other2.scala") << """class Other2"""
    
            def person = scalaClassFile("Person.class")
            def house = scalaClassFile("House.class")
            def other = scalaClassFile("Other.class")
            // We need an additional file since if >50% of files is changed everything gets recompiled
            def other2 = scalaClassFile("Other2.class")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/work_replace.txt

    import "example.com/other"
    
    func F() {
    	dep.G()
    	other.H()
    }
    -- dep/go.mod --
    module example.com/dep
    -- dep/dep.go --
    package dep
    
    func G() {
    }
    -- other/go.mod --
    module example.com/other
    -- other/dep.go --
    package other
    
    func G() {
    }
    -- other2/go.mod --
    module example.com/other
    -- other2/dep.go --
    package other
    
    func G() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 16 17:32:23 UTC 2021
    - 948 bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/api/plugins/JavaLibraryDistributionIntegrationTest.groovy

            }
            createDir('src/dist') {
                file 'dist1.txt'
                dir2 {
                    file 'dist2.txt'
                }
            }
            createDir('others/dist') {
                file 'other1.txt'
                dir2 {
                    file 'other2.txt'
                }
            }
    
            and:
            settingsFile << "rootProject.name='canCreateADistributionWithSrcDistRuntime'"
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 13:02:41 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/ExternalScriptExecutionIntegrationTest.groovy

        @Test
        void canExecuteExternalScriptFromExternalScript() {
            testFile('build.gradle') << ''' apply { from 'other1.gradle' } '''
            testFile('other1.gradle') << ''' apply { from 'other2.gradle' } '''
            testFile('other2.gradle') << ''' task doStuff '''
    
            inTestDirectory().withTasks('doStuff').run()
        }
    
        @Test
        void canFetchScriptViaHttp() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/FilePropertyTest.groovy

        }
    
        @Override
        RegularFile someOtherValue() {
            return baseDirectory.file("other1").get()
        }
    
        @Override
        RegularFile someOtherValue2() {
            return baseDirectory.file("other2").get()
        }
    
        @Override
        RegularFile someOtherValue3() {
            return baseDirectory.file("other3").get()
        }
    
        @Override
        PropertyInternal<RegularFile> propertyWithNoValue() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/DirectoryPropertyTest.groovy

        }
    
        @Override
        Directory someOtherValue() {
            return baseDirectory.dir("other1").get()
        }
    
        @Override
        Directory someOtherValue2() {
            return baseDirectory.dir("other2").get()
        }
    
        @Override
        Directory someOtherValue3() {
            return baseDirectory.dir("other3").get()
        }
    
        @Override
        PropertyInternal<Directory> propertyWithNoValue() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/DefaultProviderTest.groovy

        String someValue() {
            return "s1"
        }
    
        @Override
        String someOtherValue() {
            return "other1"
        }
    
        @Override
        String someOtherValue2() {
            return "other2"
        }
    
        @Override
        String someOtherValue3() {
            return "other3"
        }
    
        @Override
        ManagedFactory managedFactory() {
            return new ManagedFactories.ProviderManagedFactory()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 20:21:32 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MappingProviderTest.groovy

        @Override
        String someValue() {
            "{s1}"
        }
    
        @Override
        String someOtherValue() {
            "{other1}"
        }
    
        @Override
        String someOtherValue2() {
            "{other2}"
        }
    
        @Override
        String someOtherValue3() {
            "{other3}"
        }
    
        @Override
        ManagedFactory managedFactory() {
            return new ManagedFactories.ProviderManagedFactory()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 20:21:32 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/AbstractMinimalProviderTest.groovy

        }
    
        @Override
        String someValue() {
            "s2"
        }
    
        @Override
        String someOtherValue() {
            "other1"
        }
    
        @Override
        String someOtherValue2() {
            "other2"
        }
    
        @Override
        String someOtherValue3() {
            "other3"
        }
    
        @Override
        ManagedFactory managedFactory() {
            return new ManagedFactories.ProviderManagedFactory()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. platforms/jvm/scala/src/test/groovy/org/gradle/api/tasks/ScalaRuntimeTest.groovy

            project.repositories {
                mavenCentral()
            }
    
            when:
            def scalaClasspath = project.scalaRuntime.inferScalaClasspath([new File("other.jar"), new File("other2.jar")])
            scalaClasspath.files
    
            then:
            GradleException e = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top