Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 6,766 for depend (0.33 sec)

  1. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/ResolvingSnapshotFromPluginRepositorySpec.groovy

                    }
                }
            """)
    
            when:
            succeeds "pluginTask"
    
            then:
            output.contains("I'm here")
        }
        def "can use dynamic versions and status to depend on snapshot version"() {
            given:
            publishTestPlugin("1.1-SNAPSHOT", "from 1.1")
            publishTestPlugin("1.2", "from 1.2")
            useCustomRepository()
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:20:28 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/type.go

    package syntax
    
    import "go/constant"
    
    // A Type represents a type of Go.
    // All types implement the Type interface.
    // (This type originally lived in types2. We moved it here
    // so we could depend on it from other packages without
    // introducing an import cycle.)
    type Type interface {
    	// Underlying returns the underlying type of a type.
    	// Underlying types are never Named, TypeParam, or Alias types.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. src/cmd/internal/bootstrap_test/reboot_test.go

    		t.Skipf("skipping because the toolchain does not have to bootstrap on GOOS=%s", runtime.GOOS)
    	}
    
    	realGoroot := testenv.GOROOT(t)
    
    	// To ensure that bootstrapping doesn't unexpectedly depend
    	// on the Go repo's git metadata, add a fake (unreadable) git
    	// directory above the simulated GOROOT.
    	// This mimics the configuration one much have when
    	// building from distro-packaged source code
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

     4. Updating task dependencies.
    +
    `compileJava` must depend on `prepare`, `package` must depend on `compileJava` rather than `ant_build`, and `assemble` must depend on `package` rather than the standard Gradle `jar` task.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiParallelConfigurationIntegrationTest.groovy

        }
    
        /**
         * Test two projects (:a and :b) depending on plugins from the same two included builds (:plugin-1 and :plugin-2)
         * which in turn depend on a plugin from another included build (:plugin-0).
         *
         * In addition, projects :a and :b also depend on the :plugins build for the model building plugin.
         **/
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftDependenciesCppInteroperabilityIntegrationTest.groovy

    class SwiftDependenciesCppInteroperabilityIntegrationTest extends AbstractSwiftMixedLanguageIntegrationTest {
        def app = new SwiftAppWithCppLibrary()
    
        @ToBeFixedForConfigurationCache
        def "can depend on both swift and cpp libraries from VCS"() {
            given:
            createDirs("app")
            settingsFile << """
                include 'app'
    
                sourceControl {
                    vcsMappings {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. test/recover1.go

    // Here be dragons.
    
    package main
    
    import "runtime"
    
    func main() {
    	test1()
    	test2()
    	test3()
    	test4()
    	test5()
    	test6()
    	test7()
    }
    
    func die() {
    	runtime.Breakpoint()	// can't depend on panic
    }
    
    func mustRecover(x interface{}) {
    	mustNotRecover()	// because it's not a defer call
    	v := recover()
    	if v == nil {
    		println("missing recover")
    		die()	// panic is useless here
    	}
    	if v != x {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 2.5K bytes
    - Viewed (0)
  8. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinDeclarationProviderFactory.kt

     * contextual module to provide declarations differently, such as providing alternative declarations for an outsider module. Some
     * functionality such as package set computation may also depend on the contextual module, as the declaration provider may require
     * additional information not available in the [scope].
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftDependenciesIntegrationTest.groovy

            when:
            succeeds ":app:installRelease"
            then:
            assertTasksExecutedFor("Release")
            assertAppHasOutputFor("release")
        }
    
        @ToBeFixedForConfigurationCache
        def "can depend on swift libraries from VCS"() {
            given:
            createDirs("app")
            settingsFile << """
                include 'app'
    
                sourceControl {
                    vcsMappings {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/DefaultLocalComponentRegistry.java

     * purpose of this class is to track dependencies between projects as they are resolved. By knowing which
     * project is making the request, we can determine which projects depend on which other projects.
     */
    public class DefaultLocalComponentRegistry implements LocalComponentRegistry {
        private final Path currentProjectPath;
        private final Path currentBuildPath;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 17:59:41 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top