Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 49 for Sall (0.04 sec)

  1. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependencies/HtmlDependencyReportTask.java

     * a report for multiple projects, by setting the value of the
     * <code>projects</code> property. Here's how to generate an HTML
     * dependency report for all the projects of a multi-project build, for example:
     * <pre>
     * htmlDependencyReport {
     *     projects = project.allprojects
     * }
     * </pre>
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheBuild.kt

        fun registerProject(projectPath: Path, dir: File, buildDir: File)
    
        fun getProject(path: String): ProjectInternal
    
        // Creates all registered projects for this build
        fun createProjects()
    
        fun addIncludedBuild(buildDefinition: BuildDefinition, settingsFile: File?, buildPath: Path): ConfigurationCacheBuild
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. subprojects/diagnostics/build.gradle.kts

            because("ProjectBuilder tests load services from a Gradle distribution.")
        }
        integTestDistributionRuntimeOnly(project(":distributions-full"))  {
            because("There are integration tests that assert that all the tasks of a full distribution are reported (these should probably move to ':integTests').")
        }
    }
    
    packageCycles {
        excludePatterns.add("org/gradle/api/reporting/model/internal/*")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTransformNodeIdBuildOperationIntegrationTest.groovy

                [(color): Iterables.getOnlyElement(nodeIds)]
            }
        }
    
        private Map<String, List<Map<String, ?>>> getTransformStepIdentities() {
            def ops = buildOperations.all(CalculateTaskGraphBuildOperationType)
            def identities = ops.collect { op ->
                def plannedNodes = op.result.executionPlan as List<Map<String, ?>>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/instrumentation-agent-services/src/main/java/org/gradle/internal/instrumentation/agent/AgentControl.java

            try {
                return ClassLoader.getSystemClassLoader().loadClass(agentClassName);
            } catch (ClassNotFoundException e) {
                // This typically means that the agent is not loaded at all.
                // For now, this happens when running in a no-daemon mode, or when the Gradle distribution is not available.
                LoggerFactory.getLogger(AgentControl.class).debug("Agent {} is not loaded", agentClassName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/instrumentation-agent-services/src/integTest/groovy/org/gradle/internal/instrumentation/agent/AgentApplicationTest.groovy

    // This test doesn't live in :instrumentation-agent to avoid the latter being implicitly added to
    // the test runtime classpath as part of the main source set's output.
    // It is important to have the agent appended to the classpath of all integration tests.
    class AgentApplicationTest extends AbstractIntegrationSpec {
        def "agent is enabled by default"() {
            given:
            withDumpAgentStatusTask()
    
            when:
            succeeds()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiGradleProjectIntegrationTest.groovy

            then:
            fixture.assertNoConfigurationCache()
    
            originalUpdatedModel.children.path == [":a", ":b"]
            originalUpdatedModel.children.all[0].tasks.name.contains("something")
    
    
            when:
            executer.withArguments(ENABLE_CLI)
            def updatedModel = fetchModel(GradleProject)
    
            then:
            fixture.assertStateUpdated {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/serialization/codecs/CallableCodecTest.kt

        @Test
        fun `defers evaluation of Callable objects`() {
            assertDeferredEvaluationOf(callable()) {
                call()
            }
        }
    
        @Test
        fun `defers evaluation of dynamic Callable fields`() {
            assertDeferredEvaluationOf(BeanOf(callable())) {
                value.call()
            }
        }
    
        @Test
        fun `defers evaluation of static Callable fields`() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/SystemPropertyPropagationCrossVersionTest.groovy

            then:
            hasSystemProperty('mySystemProperty', 'defined in the client JVM')
        }
    
        def "Passing an empty map to withSystemProperties() hides all client system properties"() {
            setup:
            toolingApi.requireDaemons() // no separate daemon JVM -> all client JVM system properties are expected to be visible
    
            when:
            runTask { withSystemProperties([:]) }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/KotlinPluginImplementation.groovy

                    override fun apply(project: Project) {
                        var value = ${read.kotlinExpression}
                        println("apply = " + value)
    
                        // Call from a function body
                        val f = { p: String ->
                            println("\$p FUNCTION = " + System.getProperty("FUNCTION"))
                        }
                        f("apply")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top