Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 45 for LibraryName (0.39 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/resolve/NativeDependencyNotationParserTest.groovy

            dependency.libraryName == "libName"
            dependency.linkage == null
        }
    
        def "parses map notation for library in other project"() {
            when:
            def input = [project: 'other', library: 'libName']
            def dependency = parser.parseNotation(input)
    
    
            then:
            dependency.projectPath == "other"
            dependency.libraryName == "libName"
            dependency.linkage == null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/DefaultNativeLibrarySpecTest.groovy

            then:
            requirement.projectPath == 'project-path'
            requirement.libraryName == 'someLib'
            requirement.linkage == 'shared'
        }
    
        def "can use static variant as requirement"() {
            when:
            def requirement = library.static
    
            then:
            requirement.projectPath == 'project-path'
            requirement.libraryName == 'someLib'
            requirement.linkage == 'static'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/builder/KtLibraryModuleBuilder.kt

    import kotlin.contracts.contract
    
    @KtModuleBuilderDsl
    public class KtLibraryModuleBuilder(
        private val kotlinCoreProjectEnvironment: KotlinCoreProjectEnvironment
    ) : KtBinaryModuleBuilder() {
        public lateinit var libraryName: String
        public var librarySources: KtLibrarySourceModule? = null
    
        override fun build(): KtLibraryModule {
            val binaryRoots = getBinaryRoots()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Sep 06 07:36:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/language/java/DependencyScope.groovy

                '}}}'
            }
        };
    
        public abstract String getBegin();
    
        public abstract String getEnd();
    
        public String declarationFor(String libraryName, String project = null) {
            """
            $begin
                library '$libraryName' ${project != null ? "project '$project'" : ''}
            $end
            """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/main/java/org/gradle/api/internal/resolve/LibraryResolutionErrorMessageBuilder.java

    import org.gradle.platform.base.Binary;
    
    public interface LibraryResolutionErrorMessageBuilder {
        String multipleCompatibleVariantsErrorMessage(String libraryName, Iterable<? extends Binary> binaries);
    
        String noCompatibleVariantErrorMessage(String libraryName, Iterable<? extends Binary> allBinaries);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 972 bytes
    - Viewed (0)
  6. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/builder/KtLibrarySourceModuleBuilder.kt

    import kotlin.contracts.contract
    
    @KtModuleBuilderDsl
    public class KtLibrarySourceModuleBuilder(
        private val kotlinCoreProjectEnvironment: KotlinCoreProjectEnvironment
    ) : KtModuleBuilder() {
        public lateinit var libraryName: String
        public lateinit var binaryLibrary: KtLibraryModule
        public lateinit var contentScope: GlobalSearchScope
    
        override fun build(): KtLibrarySourceModule {
            return KtLibrarySourceModuleImpl(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Sep 06 07:36:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/resolve/NativeDependencyNotationParser.java

            protected NativeLibraryRequirement parseMap(
                @MapKey("library") String libraryName,
                @MapKey("project") @Nullable String projectPath,
                @MapKey("linkage") @Nullable String linkage
            ) {
                return new ProjectNativeLibraryRequirement(projectPath, libraryName, linkage);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/resolve/ProjectLibraryBinaryLocator.java

            if (components == null) {
                return null;
            }
            String libraryName = libraryIdentifier.getLibraryName();
            NativeLibrarySpec library = components.withType(NativeLibrarySpec.class).get(libraryName);
            if (library == null) {
                return null;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/impl/KtLibrarySourceModuleImpl.kt

        override val directFriendDependencies: List<KtModule>,
        override val contentScope: GlobalSearchScope,
        override val platform: TargetPlatform,
        override val project: Project,
        override val libraryName: String,
        override val binaryLibrary: KtLibraryModule,
    ) : KtLibrarySourceModule, KtModuleWithPlatform {
        override val transitiveDependsOnDependencies: List<KtModule> by lazy {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 15:47:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/prebuilt/PrebuiltLibraryBinaryLocator.java

        }
    
        private PrebuiltLibrary getPrebuiltLibrary(NamedDomainObjectSet<PrebuiltLibraries> repositories, String libraryName) {
            for (PrebuiltLibraries prebuiltLibraries : repositories) {
                PrebuiltLibrary prebuiltLibrary = prebuiltLibraries.resolveLibrary(libraryName);
                if (prebuiltLibrary != null) {
                    return prebuiltLibrary;
                }
            }
            return null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top