Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 64 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/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/NonNormalizedIdentityImmutableTransformExecution.java

            // We do this because external artifact transforms typically need to identify themselves redundantly many times during a build.
            // Once we migrate to all-scheduled transforms we should consider if we can avoid having this optimization and use only normalized inputs.
            //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:14:33 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. 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)
  7. build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts

            }
        }
    
        /**
         * For all modules providing a capability, always use the preferred module, even if there's no conflict.
         * In other words, will forcefully upgrade all modules providing a capability to a selected module.
         *
         * @param to the preferred module
         */
        private
        fun ConfigurationContainer.forceUpgrade(to: String, version: String) = all {
            resolutionStrategy.dependencySubstitution {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 20:15:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/projectresult/ResolvedLocalComponentsResultGraphVisitor.java

                    resolvedProjectConfigurations.add(new ResolvedProjectConfiguration(projectComponentId.getIdentityPath(), node.getMetadata().getName()));
                }
            }
        }
    
        /**
         * Mark all configurations corresponding to visited project variant nodes as observed.
         */
        public void complete(ConfigurationInternal.InternalState requestedState) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 5K 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-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)
Back to top