Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for isCompatibleWithConfigurationCache (0.35 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/TaskInternal.java

         *
         * @see org.gradle.api.tasks.UntrackedTask
         */
        @Internal
        Optional<String> getReasonNotToTrackState();
    
        @Internal
        boolean isCompatibleWithConfigurationCache();
    
        @Internal
        Optional<String> getReasonTaskIsIncompatibleWithConfigurationCache();
    
        @Internal
        StandardOutputCapture getStandardOutputCapture();
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:29:30 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/ConfigurationCacheProblemsListener.kt

                PropertyTrace.Task(GeneratedSubclasses.unpackType(task), task.identityPath.path)
            }
    
        private
        fun problemsListenerFor(task: TaskInternal): ProblemsListener = when {
            task.isCompatibleWithConfigurationCache -> problems
            else -> problems.forIncompatibleTask(task.identityPath.path)
        }
    
        override fun onBuildScopeListenerRegistration(listener: Any, invocationDescription: String, invocationSource: Any) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/TaskNodeCodec.kt

    ) where T : IsolateContext, T : MutableIsolateContext {
        withIsolate(IsolateOwners.OwnerTask(task), codec) {
            withPropertyTrace(PropertyTrace.Task(taskType, task.identityPath.path)) {
                if (task.isCompatibleWithConfigurationCache) {
                    action()
                } else {
                    forIncompatibleType(task.identityPath.path, action)
                }
            }
        }
    }
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/AbstractTask.java

            taskMutator.mutate("Task.notCompatibleWithConfigurationCache(String)", () -> {
                reasonIncompatibleWithConfigurationCache = reason;
            });
        }
    
        @Override
        public boolean isCompatibleWithConfigurationCache() {
            return reasonIncompatibleWithConfigurationCache == null;
        }
    
        @Override
        public Optional<String> getReasonTaskIsIncompatibleWithConfigurationCache() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 34.7K bytes
    - Viewed (0)
Back to top