Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 185 for IsShared (0.67 sec)

  1. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultFileLockManager.java

             * 2b. If we use shared lock, and we succeed in step 1., then we just hold the lock. We don't write anything to the information region
             * since multiple processes can acquire shared lock (due to that we currently also don't support on demand shared locks).<br>
             * 2.c If we fail, we throw a timeout exception.
             * <br><br>
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:32 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  2. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

    Tom Tresansky <******@****.***> 1715641965 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiBuildActionIntegrationTest.groovy

                plugins.apply(my.MyPlugin)
            """
            file("b/build.gradle") << """
                plugins.apply(my.MyPlugin)
            """
    
            when:
            executer.withArguments(ENABLE_CLI, "-Pshared-input=12", "-Da-input=14")
            def model = runBuildAction(new FetchCustomModelForEachProject())
    
            then:
            model.size() == 2
            model[0].message == "It works from project :a"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/sharing_build_logic_between_subprojects.adoc

    │       ├── src
    │       │   └──...
    │       └── build.gradle    // <3>
    ├── shared
    │   ├── src
    │   │   └──...
    │   └── build.gradle
    └── settings.gradle
    ----
    <1> Create the `MyCustomTask` task.
    <2> A shared build script.
    <3> Uses the `MyCustomTask` task and shared build script.
    =====
    
    In the `buildSrc`, the build script `shared.gradle(.kts)` is created.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 12:58:46 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. apache-maven/pom.xml

                  <exclude>src/assembly/shared/init</exclude>
                  <exclude>src/assembly/shared/init.cmd</exclude>
                  <exclude>src/assembly/shared/mvnlauncher</exclude>
                  <exclude>src/assembly/shared/mvnlauncher.cmd</exclude>
                  <exclude>src/assembly/shared/mvnvalidate</exclude>
                  <exclude>src/assembly/shared/mvnvalidate.cmd</exclude>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ErrorHandlingModuleComponentRepositoryTest.groovy

        @Shared
        def socketError = new SocketException()
        @Shared
        def connectTimeout = new SocketTimeoutException()
        @Shared
        def cannotConnect = new HttpHostConnectException(null, null)
        @Shared
        def missing = status(404)
        @Shared
        def clientTimeout = status(408)
        @Shared
        def tooManyRequests = status(429)
        @Shared
        def forbidden = status(403)
        @Shared
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    - If the retention period is customized for Gradle versions greater than or equal to version 8.0 to use retention periods _longer_ than the previously fixed periods, the older versions of Gradle may clean the shared caches earlier than what is configured.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/CrossBuildScriptCachingIntegrationSpec.groovy

            server.expect(server.get("shared.gradle").send("""
                ${instrument('"shared"')}
                println 'Echo 1'
            """))
            run 'help'
    
            then:
            outputContains 'Echo 1'
            def scripts = scriptDetails()
            scriptHasChanged("shared", before, scripts)
            getCompileBuildFileOperationsCount() == 2 // classpath + body for shared build script
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/VariantFilesMetadataRulesTest.groovy

        @Shared attributes = AttributeTestUtil.attributesFactory().of(Attribute.of("someAttribute", String), "someValue")
        @Shared mavenMetadataFactory = DependencyManagementTestUtil.mavenMetadataFactory()
        @Shared ivyMetadataFactory = DependencyManagementTestUtil.ivyMetadataFactory()
        @Shared defaultVariant
    
        private ivyComponentMetadata(String[] deps) {
            def dependencies = deps.collect { name ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/gccgo.go

    		}
    
    		realOut = out
    		out = out + ".o"
    
    	case "c-shared":
    		ldflags = append(ldflags, "-shared", "-nostdlib")
    		if cfg.Goos != "windows" {
    			ldflags = append(ldflags, "-Wl,-z,nodelete")
    		}
    		ldflags = append(ldflags, goLibBegin...)
    		ldflags = append(ldflags, "-lgo", "-lgcc_s", "-lgcc", "-lc", "-lgcc")
    
    	case "shared":
    		if cfg.Goos != "aix" {
    			ldflags = append(ldflags, "-zdefs")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top