Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 562 for shared (0.22 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/ComponentWithSharedLibrary.java

    import org.gradle.nativeplatform.tasks.LinkSharedLibrary;
    
    /**
     * Represents a native component that produces a shared library.
     *
     * @since 4.5
     */
    public interface ComponentWithSharedLibrary extends ComponentWithLinkFile, ComponentWithRuntimeFile {
        /**
         * Returns the link libraries to use to link the shared library. Includes the link libraries of the component's dependencies.
         */
        FileCollection getLinkLibraries();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. build-logic/settings.gradle.kts

            gradlePluginPortal()
        }
    }
    
    apply(from = "../gradle/shared-with-buildSrc/mirrors.settings.gradle.kts")
    
    // Utilities for updating the build itself which are not part of the usual build process
    include("build-update-utils")
    
    // Collection of plugins for the root build to configure lifecycle, reporting and IDE integration
    include("root-build")
    
    // Shared information about external modules
    include("dependency-modules")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:29:44 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppSharedLibraryLinkageIntegrationTest.groovy

            return new CppLib()
        }
    
        @ToBeFixedForConfigurationCache
        def "can create shared library binary when only shared linkage is specified"() {
            def library = new CppLib()
            buildFile << """
                apply plugin: 'cpp-library'
    
                library {
                    linkage = [Linkage.SHARED]
                }
            """
            settingsFile << """
                rootProject.name = 'foo'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/promotion/BasePromotionBuildType.kt

            }
    
            features {
                // https://www.jetbrains.com/help/teamcity/shared-resources.html#Viewing+Shared+Resources+Usage
                // https://blog.jetbrains.com/teamcity/2013/05/explaining-the-shared-resources-plugin/
                // we only allow 1 promotion job running at the same time to avoid website xml conflicts
                feature {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 03:34:53 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/resources/SharedResourceLeaseRegistryTest.groovy

        }
    
        def "multiple threads can coordinate locking of a shared resource"() {
            given:
            sharedResourceLeaseRegistry.registerSharedResource('resource', 1)
            def threadCount = 10
            def started = new CountDownLatch(threadCount)
    
            when:
            async {
                threadCount.times {
                    start {
                        started.countDown()
                        thread.blockUntil.releaseAll
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultPersistentDirectoryStoreTest.groovy

        def "open locks cache directory with requested mode"() {
            final store = new DefaultPersistentDirectoryStore(cacheDir, "<display>", mode(Shared), null, lockManager, Mock(ExecutorFactory), buildOperationRunner)
    
            when:
            store.open()
    
            then:
            1 * lockManager.lock(cacheDir, mode(Shared), "<display> ($cacheDir)") >> lock
    
            when:
            store.close()
    
            then:
            _ * lock.state
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:40:49 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/sourceset/SourceSetCompileDependenciesIntegrationTest.groovy

    model {
        components {
            lib1(NativeLibrarySpec)
            lib2(NativeLibrarySpec)
        }
    }
    """
        }
    
        @ToBeFixedForConfigurationCache
        def "dependencies of 2 language source sets are not shared when compiling"() {
            given:
            buildFile << """
    model {
        components {
            main(NativeExecutableSpec) {
                sources {
                    cpp {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/visual-studio/groovy/build.gradle

                    def sourceControlSection = """
        GlobalSection(SolutionNotes) = postSolution
            NumNotes = 2
            Name1 = FirstNote
            Issue1 = N
            Text1 = This is a shared note.
            Name2 = SecondNote
            Issue2 = N
            Text2 = The projects in this solution are ${projects*.name}.
        EndGlobalSection
    """
                    def insertPos = content.text.lastIndexOf("EndGlobal")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. testing/distributions-integ-tests/src/integTest/groovy/org/gradle/AllDistributionIntegrationSpec.groovy

    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.UnitTestPreconditions
    import spock.lang.Shared
    
    class AllDistributionIntegrationSpec extends DistributionIntegrationSpec {
    
        @Shared String version = buildContext.distZipVersion.version
    
        def setup() {
            executer.requireOwnGradleUserHomeDir().requireIsolatedDaemons()
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftSharedLibraryLinkageIntegrationTest.groovy

        protected String getComponentUnderTestDsl() {
            return "library"
        }
    
        def "can create shared library binary when explicitly request a shared linkage"() {
            def library = new SwiftLib()
            buildFile << """
                apply plugin: 'swift-library'
    
                library {
                    linkage = [Linkage.SHARED]
                }
            """
            settingsFile << """
                rootProject.name = 'foo'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top