Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 6,766 for depend (0.22 sec)

  1. futures/listenablefuture9999/pom.xml

      <description>
        An empty artifact that Guava depends on to signal that it is providing
        ListenableFuture -- but is also available in a second "version" that
        contains com.google.common.util.concurrent.ListenableFuture class, without
        any other Guava classes. The idea is:
    
        - If users want only ListenableFuture, they depend on listenablefuture-1.0.
    
        - If users want all of Guava, they depend on guava, which, as of Guava
        27.0, depends on
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 12 21:42:09 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskBridgingIntegrationTest.groovy

            """
    
            then:
            fails "foo"
    
            and:
            failure.assertHasCause("Cannot add task 'foo' as a task with that name already exists.")
        }
    
        def "a non-rule-source task can depend on a rule-source task"() {
            given:
            buildFile << """
            ${ruleBasedTasks()}
    
            class Rules extends RuleSource {
                @Mutate
                void addTasks(ModelMap<Task> tasks) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildTaskDependencyIntegrationTest.groovy

                            }
                        }
                    }
    """
            }
            includedBuilds << buildB
        }
    
        def "can depend on task in root project of included build"() {
            when:
            buildA.buildFile << """
        task delegate {
            dependsOn gradle.includedBuild('buildB').task(':logProject')
        }
    """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  4. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/substitutorMarkers.kt

    /**
     * A [KaSubstitutor] which substitution logic can be represented as a [Map] from a [KaTypeParameterSymbol] to corresponding [KaType]
     * This is an implementation details and Analysis API clients should not depend on the fact if some [KaSubstitutor] is [KaMapBackedSubstitutor] or not.
     */
    @KaAnalysisApiInternals
    interface KaMapBackedSubstitutor : KaSubstitutor {
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/plan/OrdinalNodeAccess.java

        void addDestroyerNode(OrdinalGroup ordinal, LocalTaskNode destroyer, Consumer<Node> ordinalNodeConsumer) {
            // Create (or get) a destroyer ordinal node that depends on the output locations of this task node
            ordinal.getDestroyerLocationsNode().addDependenciesFrom(destroyer);
    
            // Depend on any previous producer ordinal nodes (i.e. any producer ordinal nodes with a lower ordinal)
            if (ordinal.getPrevious() != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 28 21:49:39 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/PluginDependenciesSpecScope.kt

            plugins.alias(notation)
    }
    
    
    /**
     * Specify the version of the plugin to depend on.
     *
     * Infix version of [PluginDependencySpec.version].
     */
    infix fun PluginDependencySpec.version(version: String?): PluginDependencySpec = version(version)
    
    
    /**
     * Specify the version of the plugin to depend on.
     *
     * Infix version of [PluginDependencySpec.version].
     *
     * @since 7.2
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/tutorial/compileTaskClasspath/groovy/build.gradle

        // (and not longer the output of compileJava)
        classpath = sourceSets.main.compileClasspath
    }
    tasks.named('compileJava') {
        // Java also depends on the result of Groovy compilation
        // (which automatically makes it depend of compileGroovy)
        classpath += files(sourceSets.main.groovy.classesDirectory)
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 547 bytes
    - Viewed (0)
  8. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/NativeProjectWithDepsGeneratorTask.groovy

         * <p>
         *     With a wide hierarchy, each group of libraries depend only on each other. There's a limited depth (~7) and
         *     several projects.  This tries to replicate a project with many subgroups of interconnected components.
         * <p>
         *     With a deep and wide hierarchy, each subproject is formed as above, except each group of libraries depend on
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 11.2K bytes
    - Viewed (0)
  9. futures/listenablefuture1/pom.xml

        "version" that omits the class to avoid conflicts with the copy in Guava
        itself. The idea is:
    
        - If users want only ListenableFuture, they depend on listenablefuture-1.0.
    
        - If users want all of Guava, they depend on guava, which, as of Guava
        27.0, depends on
        listenablefuture-9999.0-empty-to-avoid-conflict-with-guava. The 9999.0-...
        version number is enough for some build systems (notably, Gradle) to select
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 12 21:42:09 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  10. platforms/jvm/language-jvm/src/test/groovy/org/gradle/api/plugins/jvm/internal/JvmComponentDependenciesTest.groovy

            1 * dependencyFactory.create("com.example", "example", "2.0") >> example2
    
            dependencies.getImplementation().getDependencies().get() == [example, example2] as Set
        }
    
        def "can depend on a project"() {
            def currentProjectDependency = Mock(ProjectDependency)
    
            when:
            dependencies {
                implementation project()
            }
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 16 19:56:35 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top