Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ProjectLibraryBinaryLocator (0.28 sec)

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

    import org.gradle.platform.base.ComponentSpecContainer;
    
    import javax.annotation.Nullable;
    
    public class ProjectLibraryBinaryLocator implements LibraryBinaryLocator {
        private final ProjectModelResolver projectModelResolver;
        private final DomainObjectCollectionFactory domainObjectCollectionFactory;
    
        public ProjectLibraryBinaryLocator(ProjectModelResolver projectModelResolver, DomainObjectCollectionFactory domainObjectCollectionFactory) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/resolve/NativeDependencyResolverServices.java

            List<LibraryBinaryLocator> locators = new ArrayList<LibraryBinaryLocator>();
            locators.add(new ProjectLibraryBinaryLocator(projectModelResolver, domainObjectCollectionFactory));
            locators.add(new PrebuiltLibraryBinaryLocator(projectModelResolver));
    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. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/resolve/ProjectLibraryBinaryLocatorTest.groovy

        def binaries = Mock(ModelMap)
        def nativeBinaries = Mock(ModelMap)
        def convertedBinaries = TestUtil.domainObjectCollectionFactory().newDomainObjectSet(NativeLibraryBinary)
        def locator = new ProjectLibraryBinaryLocator(projectLocator, TestUtil.domainObjectCollectionFactory())
    
        def setup() {
            convertedBinaries.add(binary)
            library.binaries >> binaries
            binaries.withType(NativeBinarySpec) >> nativeBinaries
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

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