Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for DefaultPersistentScopeIdLoader (0.51 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/scopeids/DefaultPersistentScopeIdLoader.java

    import org.gradle.internal.id.UniqueId;
    import org.gradle.internal.scopeids.id.UserScopeId;
    import org.gradle.internal.scopeids.id.WorkspaceScopeId;
    
    import java.io.File;
    
    class DefaultPersistentScopeIdLoader implements PersistentScopeIdLoader {
    
        // Both of these values are effectively part of a cross Gradle version contract.
        // Do not change them.
        // If they change, continuity of the IDs will be broken.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 10 18:14:29 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/scopeids/ScopeIdsServices.java

            BuildTreeScopedCacheBuilderFactory buildTreeScopedCacheBuilderFactory,
            PersistentScopeIdStoreFactory persistentScopeIdStoreFactory
        ) {
            return new DefaultPersistentScopeIdLoader(globalScopedCacheBuilderFactory, buildTreeScopedCacheBuilderFactory, persistentScopeIdStoreFactory, UniqueId.factory());
        }
    
        @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/internal/scopeids/PersistentScopeIdLoaderTest.groovy

        def storeFile = Mock(File)
        def storeFactory = Mock(PersistentScopeIdStoreFactory)
        def idFactory = Mock(Factory) as Factory<UniqueId>
        def store = Mock(ObjectHolder)
    
        def loader = new DefaultPersistentScopeIdLoader(globalScopedCacheBuilderFactory, buildTreeScopedCacheBuilderFactory, storeFactory, idFactory)
    
        def "generates user ID in expected location"() {
            given:
            def newId = UniqueId.generate()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 10 18:14:29 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.internal.scopeids.DefaultPersistentScopeIdLoader$1> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (DefaultPersistentScopeIdLoader.java:0)
    Class <org.gradle.internal.scopeids.DefaultPersistentScopeIdLoader$ScopeParams> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (DefaultPersistentScopeIdLoader.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top