Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 545 for Here (0.03 sec)

  1. 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)
  2. platforms/documentation/docs/src/snippets/native-binaries/cpp/tests/nativeComponentReport.out

            tool chain: Tool chain 'clang' (Clang)
            executable file: build/exe/main/main
    
    Note: currently not all plugins register their components, so some components may not be visible here.
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/util/SingleMessageLogger.java

    // https://github.com/nebula-plugins/nebula-project-plugin/commit/5f56397384328e24c506b0e2b395d1634dbf600f
    
    import org.gradle.internal.deprecation.DeprecationLogger;
    
    /**
     * This class is only here to maintain binary compatibility with existing plugins.
     *
     * @deprecated Will be removed in Gradle 9.0.
     */
    @Deprecated
    public class SingleMessageLogger extends org.gradle.internal.deprecation.DeprecationLogger {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/BuildProgressArea.java

     * limitations under the License.
     */
    
    package org.gradle.internal.logging.console;
    
    import java.util.List;
    
    public interface BuildProgressArea {
        // TODO(ew): Consider whether this belongs in Console or here
        StyledLabel getProgressBar();
        List<StyledLabel> getBuildProgressLabels();
        void resizeBuildProgressTo(int numberOfLabels);
        void setVisible(boolean isVisible);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 966 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/maven-publish/publish-artifact/kotlin/build.gradle.kts

    tasks.register("rpm") {
        // Reduce scope of property for compatibility with the configuration cache
        val rpmFile = rpmFile
        outputs.file(rpmFile)
        doLast {
            // produce real RPM here
            rpmFile.get().asFile.writeText("file contents")
        }
    }
    
    // tag::custom-artifact-publication[]
    publishing {
        publications {
            create<MavenPublication>("maven") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/build-organization/gradle-plugin/groovy/greeting-plugin/build.gradle

        id 'java-gradle-plugin'
    }
    
    repositories {
        // Use Maven Central for resolving dependencies.
        // You can declare any Maven/Ivy/file repository here.
        mavenCentral()
    }
    
    dependencies {
        // Use JUnit test framework for unit tests
        testImplementation 'junit:junit:4.13'
    }
    
    gradlePlugin {
        // Define the plugin
        plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K 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. subprojects/core/src/main/java/org/gradle/util/DistributionLocator.java

    package org.gradle.util;
    
    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.deprecation.DeprecationLogger;
    
    import java.net.URI;
    import java.net.URISyntaxException;
    
    /**
     * This class is only here to maintain binary compatibility with existing plugins.
     *
     * @deprecated Will be removed in Gradle 9.0.
     */
    @Deprecated
    public class DistributionLocator {
    
        private static void logDeprecation() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 07 08:48:39 UTC 2022
    - 2.4K bytes
    - Viewed (0)
Back to top