Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for resolveLibraryBinary (0.15 sec)

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

                DefaultLibraryResolver libraryResolver = new DefaultLibraryResolver(libraryBinaryLocator, requirementResolution.getRequirement(), resolution.getTarget());
                NativeLibraryBinary libraryBinary = libraryResolver.resolveLibraryBinary();
                requirementResolution.setLibraryBinary(libraryBinary);
                requirementResolution.setNativeDependencySet(new DefaultNativeDependencySet(libraryBinary));
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/resolve/DefaultLibraryResolver.java

            this.requirement = requirement;
            this.context = context;
            this.libraryBinaryLocator = libraryBinaryLocator;
        }
    
        public NativeLibraryBinary resolveLibraryBinary() {
            DomainObjectSet<NativeLibraryBinary> binaries = libraryBinaryLocator.getBinaries(new LibraryIdentifier(requirement.getProjectPath(), requirement.getLibraryName()));
            if (binaries == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top