Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,736 for shared (0.08 sec)

  1. 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)
  2. 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)
  3. .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)
  4. src/internal/singleflight/singleflight.go

    // on a channel.
    type Result struct {
    	Val    any
    	Err    error
    	Shared bool
    }
    
    // Do executes and returns the results of the given function, making
    // sure that only one execution is in-flight for a given key at a
    // time. If a duplicate comes in, the duplicate caller waits for the
    // original to complete and receives the same results.
    // The return value shared indicates whether v was given to multiple callers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 20:49:56 UTC 2022
    - 3.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. subprojects/core/src/test/groovy/org/gradle/api/internal/project/antbuilder/AntBuilderMemoryLeakTest.groovy

    import org.gradle.internal.time.Time
    import spock.lang.Ignore
    import spock.lang.Shared
    import spock.lang.Specification
    
    import java.lang.reflect.Proxy
    import java.util.concurrent.TimeUnit
    
    class AntBuilderMemoryLeakTest extends Specification {
    
        @Shared
        private ModuleRegistry moduleRegistry = new DefaultModuleRegistry(CurrentGradleInstallation.get())
    
        @Shared
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 26 09:30:27 UTC 2018
    - 3.6K bytes
    - Viewed (0)
  7. 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)
  8. .teamcity/test-buckets.json

    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"launcher",
    					"time",
    					"logging-api",
    					"kotlin-dsl-plugins",
    					"serialization",
    					"toolchains-jvm-shared",
    					"docs-asciidoctor-extensions-base",
    					"internal-instrumentation-processor",
    					"security",
    					"input-tracking",
    					"base-ide-plugins"
    				]
    			},
    			{
    				"parallelizationMethod":{
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  9. src/go/types/testdata/local/shifts.go

    // The following shift tests are disabled in the shared
    // testdata/check/shifts.go file because they don't work
    // correctly with types2 at the moment. See go.dev/issue/52080.
    // Make sure we keep testing them with go/types.
    //
    // TODO(gri) Once go.dev/issue/52080 is fixed, this file can be
    //           deleted in favor of the re-enabled tests
    //           in the shared file.
    
    package p
    
    func _() {
    	var s uint
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 01 21:31:01 UTC 2023
    - 886 bytes
    - Viewed (0)
  10. 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)
Back to top