Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ChainedLibraryBinaryLocator (0.4 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)
Back to top