Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 42 for Sall (0.04 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/EdgeState.java

                    targetConfiguration.removeIncomingEdge(this);
                }
                targetNodes.clear();
            }
            targetNodeSelectionFailure = null;
        }
    
        /**
         * Call this method to attach a failure late in the process. This is typically
         * done when a failure is caused by graph validation. In that case we want to
         * perform as much resolution as possible, still have a valid graph, but in the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/serialize/Codecs.kt

            bind(PropertyCodec(propertyFactory, nestedCodec))
            bind(ProviderCodec(nestedCodec))
        }
    
        /**
         * Returns a Codec for Provider implementations suitable for all Provider implementations.
         */
        private
        fun nestedProviderCodec(
            valueSourceProviderFactory: ValueSourceProviderFactory,
            buildStateRegistry: BuildStateRegistry,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultConfigurationCache.kt

            }
        }
    
        private
        fun checkFingerprint(entryDetails: EntryDetails, layout: ConfigurationCacheRepository.Layout): CheckedFingerprint {
            // Register all included build root directories as watchable hierarchies,
            // so we can load the fingerprint for build scripts and other files from included builds
            // without violating file system invariants.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionFeaturesIntegrationTest.groovy

                }
            """
        }
    
        private cleanUpAll(List<RepoFixture> fixtures) {
            fixtures.forEach {
                it.cleanup?.call()
            }
        }
    
        def "does not invalidate configuration cache entry when changing artifact information has not expired"() {
            given:
            server.start()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 33K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileProblemsIntegrationTest.groovy

    class JavaCompileProblemsIntegrationTest extends AbstractIntegrationSpec implements JavaToolchainFixture {
    
        /**
         * A map of all possible file locations, and the number of occurrences we expect to find in the problems.
         */
        private final Map<String, Integer> possibleFileLocations = [:]
    
        /**
         * A map of all visited file locations, and the number of occurrences we have found in the problems.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:15:29 UTC 2024
    - 24K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

        protected TestFile getDefaultTmpDir() {
            // File.createTempFile sets the location of the temp directory to a static variable on the first call.  This prevents future
            // changes to java.io.tmpdir from having any effect in the same process.  We set this to use a common tmp directory for all
            // tests running in the same process so that we don't have a situation where one process initializes with a tmp directory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/KotlinScriptEvaluator.kt

            override fun runCompileBuildOperation(scriptPath: String, stage: String, action: () -> String): String =
    
                buildOperationRunner.call(object : CallableBuildOperation<String> {
    
                    override fun call(context: BuildOperationContext): String =
                        action().also {
                            context.setResult(object : Result {})
                        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 10:23:24 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/WorkerProcessClassPathProvider.java

                // If a real Gradle installation is used, the following modules will be force-loaded anyway by gradle-core through the getClassPath("GRADLE_EXTENSIONS") call in the DefaultClassLoaderRegistry constructor
                // See also: DynamicModulesClassPathProvider.GRADLE_EXTENSION_MODULES
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/AbstractTransformExecution.java

        }
    
        private WorkOutput executeWithinTransformerListener(ExecutionRequest executionRequest) {
            TransformExecutionResult result = buildOperationRunner.call(new CallableBuildOperation<TransformExecutionResult>() {
                @Override
                public TransformExecutionResult call(BuildOperationContext context) {
                    try {
                        File workspace = executionRequest.getWorkspace();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/FileCollectionCodec.kt

                // When this is not the case, we should run the transform now and write the result.
                // However, currently it is not easy to determine whether this is the case so assume that all transforms
                // have changing inputs
                FileCollectionStructureVisitor.VisitType.NoContents
            } else {
                FileCollectionStructureVisitor.VisitType.Visit
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top