Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 216 for Here (0.03 sec)

  1. platforms/documentation/docs/src/docs/userguide/overview/quick_start.adoc

        </a>
    </div>
    ++++
    
    == For Software Developers
    
    For software developers that need to build, test, and publish their app, or add dependencies to their build, get started here:
    
    === 1. Core Concepts
    
    [sidebar]
    _Description_: *Learn how to invoke tasks and add dependencies.* +
    _Training level_: **Beginner** +
    _Reading time_: **25 minutes** +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 18:58:37 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildEnvironment.kt

        else -> actualBranch
    }
    
    /**
     * The build environment.
     *
     * WARNING: Every val in here must not change for they same daemon. If it does, changes will go undetected,
     *          since this whole object is kept in the classloader between builds.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 16:58:31 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheClassLoaderScopeRegistryListener.kt

                val spec = scopeSpecs[scopeId]
                require(spec != null)
                // TODO - a scope can currently potentially have multiple export and local ClassLoaders but we're assuming one here
                //  Rather than fix the assumption here, it would be better to rework the scope implementation so that it produces no more than one export and one local ClassLoader
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/SingleFileTreeElementMatcher.java

            // A better solution for output files would be to record the type of the output file and then using this type here instead of looking at the disk.
            // Though that is more involved and as soon as the file has been produced, the right file type will be detected here as well.
            boolean elementIsFile = !element.isDirectory();
            RelativePath relativePath = RelativePath.parse(elementIsFile, relativePathString);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:25:10 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/android/AndroidPerformanceTestFixture.groovy

    import org.gradle.performance.fixture.AndroidTestProject
    
    @SelfType(AbstractCrossVersionPerformanceTest)
    trait AndroidPerformanceTestFixture {
    
        AndroidTestProject getAndroidTestProject() {
            // We assume here already, since the test may try to cast the returned test project to `IncrementalAndroidTestProject`,
            // which fails when the test project is non-incremental.
            runner.assumeShouldRun()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/AfterExecutionState.java

    import org.gradle.internal.hash.HashCode;
    
    /**
     * Captures the state of a {@link org.gradle.internal.execution.UnitOfWork} after it has been executed.
     *
     * Execution here might also mean being up-to-date or loaded from cache.
     */
    public interface AfterExecutionState extends ExecutionInputState, ExecutionOutputState {
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 11:36:42 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/AbstractResolutionFailureDescriber.java

            AssessedCandidate assessedCandidate,
            TreeFormatter formatter,
            AttributeDescriber describer
        ) {
            // None of the nullability warnings are relevant here because the attribute values are only retrieved from collections that will contain them
            @SuppressWarnings("DataFlowIssue") Map<Attribute<?>, ?> compatibleAttrs = assessedCandidate.getCompatibleAttributes().stream()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/buildcache/TaskOutputCachingJavaPerformanceTest.groovy

        }
    
        @RunFor([
            @Scenario(type = PER_COMMIT, operatingSystems = [LINUX], testProjects = ["largeJavaMultiProject"],
                comment = "We only test the multi-project here since for the monolithic project we would have no cache hits. This would mean we actually would test incremental compilation."
            )
        ])
        def "clean assemble for abi change with local cache"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 13:08:21 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. .github/PULL_REQUEST_TEMPLATE.md

    <!--- The issue this PR addresses -->
    <!-- Fixes #? -->
    
    ### Context
    <!--- Why do you believe many users will benefit from this change? -->
    <!--- Link to relevant issues or forum discussions here -->
    
    ### Contributor Checklist
    - [ ] [Review Contribution Guidelines](https://github.com/gradle/gradle/blob/master/CONTRIBUTING.md).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 13 22:36:19 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/ResolvingFromSingleCustomPluginRepositorySpec.groovy

              }
              plugins.withType(org.gradle.test.TestPlugin) {
                println "I'm here"
              }
            """
    
            and:
            useCustomRepository(PathType.ABSOLUTE)
    
            when:
            succeeds("pluginTask")
    
            then:
            output.contains("I'm here")
    
            where:
            repoType << [IVY, MAVEN]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:30:55 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top