Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 247 for linkage (0.15 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryWithStaticLinkagePublishingIntegrationTest.groovy

                apply plugin: 'maven-publish'
    
                group = 'some.group'
                version = '1.2'
                library {
                    baseName = 'test'
                    linkage = [Linkage.STATIC]
                }
                publishing {
                    repositories { maven { url 'repo' } }
                }
    """
            lib.writeToProject(testDirectory)
    
            when:
            run('publish')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/LibraryBinariesIntegrationTest.groovy

            helloStatic(NativeLibrarySpec)
            helloShared(NativeLibrarySpec)
            main(NativeExecutableSpec) {
                sources {
                    cpp.lib library: 'helloStatic', linkage: 'static'
                    cpp.lib library: 'helloShared', linkage: 'shared'
                }
            }
        }
    }
    """
    
            and:
            file("src/helloStatic/cpp/hellostatic.cpp") << """
                #include <iostream>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestComponentWithStaticLibraryLinkageIntegrationTest.groovy

        @Override
        protected void makeSingleProject() {
            buildFile << """
                apply plugin: 'xctest'
                apply plugin: 'swift-library'
                library.linkage = [Linkage.STATIC]
            """
        }
    
        @Override
        List<String> getTasksToAssembleDevelopmentBinaryOfComponentUnderTest() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. src/context/context_test.go

    		t.Errorf("bad linkage: pc.children = %v, want %v, %v, and an afterFunc",
    			pc.children, cc, tc)
    	}
    	pc.mu.Unlock()
    
    	if p, ok := parentCancelCtx(cc.Context); !ok || p != pc {
    		t.Errorf("bad linkage: parentCancelCtx(cancelChild.Context) = %v, %v want %v, true", p, ok, pc)
    	}
    	if p, ok := parentCancelCtx(tc.Context); !ok || p != pc {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 19 19:13:01 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/img/visual-studio-task-graph.dot

      }
    
      subgraph cluster_cppLibrary {
        label = "C++ Library Plugin"
        cppLibrary_mainVisualStudio[label="mainVisualStudio"]
    
        subgraph cluster_cppLibrarySharedLinkage {
          label = "Shared Linkage"
          style = dashed
    
          nameDllVisualStudioProject[label=<<i>projectName</i>DllVisualStudioProject>]
          nameDllVisualStudioFilters[label=<<i>projectName</i>DllVisualStudioFilters>]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/swiftpm/SwiftPackageManagerSwiftBuildExportIntegrationTest.groovy

        def "produces manifest for Swift library with shared and static linkage"() {
            given:
            buildFile << """
                plugins {
                    id 'swiftpm-export'
                    id 'swift-library'
                }
                library {
                    linkage = [Linkage.SHARED, Linkage.STATIC]
                }
    """
            def lib = new SwiftLib()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/ConfigurableComponentWithRuntimeUsage.java

    import org.gradle.nativeplatform.Linkage;
    
    import javax.annotation.Nullable;
    
    /**
     * A configurable view of a component that has a runtime usage. This should become public in some form.
     */
    public interface ConfigurableComponentWithRuntimeUsage extends ComponentWithRuntimeUsage, ComponentWithNames {
        Configuration getImplementationDependencies();
    
        @Nullable
        Linkage getLinkage();
    
        @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)
  8. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cpp/CppUnitTestComponentWithStaticLibraryLinkageIntegrationTest.groovy

        @Override
        protected void makeSingleProject() {
            buildFile << """
                apply plugin: 'cpp-library'
                apply plugin: 'cpp-unit-test'
                library.linkage = [Linkage.STATIC]
            """
        }
    
        @Override
        protected SourceElement getComponentUnderTest() {
            return new CppLibWithSimpleUnitTest()
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/language/nativeplatform/DependentSourceSet.java

         *
         * <ul>
         *     <li>project: the path to the project containing the library (optional, defaults to current project)</li>
         *     <li>library: the name of the library (required)</li>
         *     <li>linkage: the library linkage required ['shared'/'static'] (optional, defaults to 'shared')</li>
         * </ul>
         */
        void lib(Object library);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioCppStaticLibraryLinkageProjectIntegrationTest.groovy

        }
    
        @Override
        void makeSingleProject() {
            buildFile << """
                apply plugin: "cpp-library"
                library.linkage = [Linkage.STATIC]
            """
        }
    
        @Override
        String getVisualStudioProjectName() {
            return "${rootProjectName}Lib"
        }
    
        @Override
        String getComponentUnderTestDsl() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top