Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 8,743 for other2 (0.15 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/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/BroadcastDispatchTest.groovy

            empty.add(other1).add(listener).remove(listener).remove(other1).empty
            empty.add(other1).add(listener).removeAll([listener, listener]).remove(other1).empty
            empty.add(other1).add(other2).add(listener).remove(listener).removeAll([other1, other2]).empty
            empty.add(other1).add(other2).add(listener).removeAll([listener]).removeAll([other1, other2]).empty
    
            // Add duplicates
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  4. 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)
  5. subprojects/core/src/test/groovy/org/gradle/internal/build/PlannedNodeGraphTest.groovy

            def transformStep2 = new TestTransformStepNode("transformStep2")
            def other1 = new TestNode("other1")
            def other2 = new TestNode("other2")
    
            dependsOn(task1, [other1])
            dependsOn(other1, [transformStep1])
            dependsOn(transformStep1, [task2, other2])
            dependsOn(other2, [task3])
            dependsOn(task4, [transformStep2])
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 21 13:11:56 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/util/DefaultJavaForkOptionsTest.groovy

            def other2 = new DefaultJavaForkOptions(resolver, fileCollectionFactory, new DefaultJavaDebugOptions())
    
            when:
            other2.executable = "/foo/bar"
    
            then:
            options.isCompatibleWith(other1)
            !options.isCompatibleWith(other2)
        }
    
        def "cannot determine compatibility with jvmArgumentProviders"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/GradleBuildTaskIntegrationTest.groovy

            buildFile << """
                task otherBuild(type:GradleBuild) {
                    dir = 'other'
                    tasks = ['resolve']
                }
            """
            createDirs("other", "other/a", "other/b")
            file("other/settings.gradle") << """
                include 'a', 'b'
            """
            file("other/build.gradle") << """
                allprojects { configurations.create('default') }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top