Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ChainedLibraryBinaryLocator (0.41 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/resolve/ChainedLibraryBinaryLocator.java

    import javax.annotation.Nullable;
    import java.util.ArrayList;
    import java.util.List;
    
    public class ChainedLibraryBinaryLocator implements LibraryBinaryLocator {
        private final List<LibraryBinaryLocator> locators = new ArrayList<LibraryBinaryLocator>();
    
        public ChainedLibraryBinaryLocator(List<? extends LibraryBinaryLocator> locators) {
            this.locators.addAll(locators);
        }
    
        @Nullable
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/resolve/NativeDependencyResolverServices.java

            locators.add(new PrebuiltLibraryBinaryLocator(projectModelResolver));
            return new CachingLibraryBinaryLocator(new ChainedLibraryBinaryLocator(locators), domainObjectCollectionFactory);
        }
    
        @Provides
        public NativeDependencyResolver createResolver(LibraryBinaryLocator locator, FileCollectionFactory fileCollectionFactory) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.nativeplatform.internal.resolve.ChainedLibraryBinaryLocator> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (ChainedLibraryBinaryLocator.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