Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 216 for Here (0.05 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/TaskOriginCrossVersionSpec.groovy

        }
    
        def "reports task origin for lazily realized tasks"() {
            given:
            buildFile << """
                tasks.register('lazyTask') {
                    doLast { println 'nothing to see here' }
                }
            """
    
            when:
            runBuild('lazyTask')
    
            then:
            task(':lazyTask').originPlugin.displayName == "build.gradle"
        }
    
        @TargetGradleVersion('>=3.0 <5.1')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/ClasspathElementTransformFactoryForLegacy.java

                            // TODO(mlopatkin) Manifest of the signed JAR contains signature information and must be the first entry in the JAR.
                            //  Looking into the manifest here should be more effective.
                            // This policy doesn't transform signed JARs so no further checks are necessary.
                            return new SkipClasspathElementTransform(source);
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:02:27 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/caching/CachingState.java

         * State when we calculated the cache key.
         *
         * We always calculate the cache key when we have a {@link BeforeExecutionState}.
         * In some places we need to know that both are present or absent, we encode this here.
         */
        public static class CacheKeyCalculatedState {
            private final BuildCacheKey key;
            private final BeforeExecutionState beforeExecutionState;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 13:41:13 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/WithPluginValidation.groovy

                    "validateExternalPlugins",
                    "--continue",
                    *extraParameters] as String[])
                validation.ignoreDeprecationWarnings("We are only checking type validation problems here")
    
                def result
                if (failsValidation) {
                    result = validation.buildAndFail()
                } else {
                    result = validation.build()
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:13:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/model/FunctionalTestBucketGenerator.kt

        subprojectName: String
    ): Boolean {
        return if (testCoverage.os == Os.MACOS && testCoverage.arch == Arch.AMD64) {
            subprojectName.contains("native") ||
                // Include precondition-tester here so we understand that tests do run on macOS intel as well
                subprojectName in listOf("file-watching", "snapshots", "workers", "logging", "precondition-tester")
        } else {
            true
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 17:04:41 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/DefaultPreviousExecutionStateSerializer.java

            HashCode cacheKey = hashCodeSerializer.read(decoder);
    
            ImplementationSnapshot taskImplementation = implementationSnapshotSerializer.read(decoder);
    
            // We can't use an immutable list here because some hashes can be null
            int taskActionsCount = decoder.readSmallInt();
            ImmutableList.Builder<ImplementationSnapshot> taskActionImplementationsBuilder = ImmutableList.builder();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 08:25:58 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/NormalizingCopyActionDecorator.java

            FileCopyDetailsInternal dir;
            if (detailsForPath.isEmpty()) {
                // TODO - this is pretty nasty, look at avoiding using a time bomb stub here
                dir = new StubbedFileCopyDetails(path, includeEmptyDirs, chmod);
            } else {
                dir = detailsForPath.get(0);
            }
            delegateAction.processFile(dir);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 10:41:40 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/configurations/Gradleception.kt

            dependsOn(RelativeId(SanityCheck.buildTypeId(model)))
        }
    
        /*
         To avoid unnecessary rerun, what we do here is a bit complicated:
    
         1. Build a Gradle distribution with a fixed timestamp and hash it, but never use this distribution.
         2. Build a Gradle distribution with this hash as a version + fixed timestamp -> dogfood-first
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 09:57:17 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. README.md

    * Join our [Slack Channel](https://gradle.com/slack-invite)
    
    
    ## Contributing
    
    If you're looking to contribute to Gradle or provide a patch/pull request, you can find more info [here](https://github.com/gradle/gradle/blob/master/CONTRIBUTING.md).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 20:49:08 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. build-logic-commons/build-platform/build.gradle.kts

    import org.gradle.util.internal.VersionNumber
    
    plugins {
        `java-platform`
    }
    
    group = "gradlebuild"
    
    description = "Provides a platform that constrains versions of external dependencies used by Gradle"
    
    // Here you should declare versions which should be shared by the different modules of buildSrc itself
    val javaParserVersion = "3.18.0"
    val groovyVersion = GroovySystem.getVersion()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top