Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 22 of 22 for getMutableModel (0.12 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransformInvocationFactory.java

            if (componentIdentifier instanceof ProjectComponentIdentifier) {
                return projectStateRegistry.stateFor((ProjectComponentIdentifier) componentIdentifier).getMutableModel();
            } else {
                return null;
            }
        }
    
        private boolean isCachingDisabledByProperty(Transform transform) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:14:33 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/project/ProjectState.java

        /**
         * Returns the mutable model for this project. This should not be used directly. This property is here to help with migration away from direct usage.
         */
        ProjectInternal getMutableModel();
    
        /**
         * Returns the lock that will be acquired when accessing the mutable state of this project via {@link #applyToMutableState(Consumer)} and {@link #fromMutableState(Function)}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 20 08:25:03 UTC 2022
    - 5.3K bytes
    - Viewed (0)
Back to top