Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 545 for shared (0.22 sec)

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

        /**
         * A separate cache instance for each Gradle version. This is the default.
         */
        CachePerVersion,
        /**
         * A single cache instance shared by all Gradle versions. It is the caller's responsibility to make sure that this is shared only with
         * those versions of Gradle that are compatible with the cache implementation and contents.
         */
        SharedCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/core-plugins/visual_studio_plugin.adoc

    +
    Generates the `.vcxproj` file for the shared linkage of the `main` component.
    
    `__projectName__DllVisualStudioFilters` — link:{groovyDslPath}/org.gradle.ide.visualstudio.tasks.GenerateFiltersFileTask.html[GenerateFiltersFileTask]::
    +
    Generates the `.vcxproj.filters` file for the shared linkage of the `main` component.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/CapabilityNotationParserFactoryTest.groovy

    import org.gradle.internal.typeconversion.NotationParser
    import spock.lang.Shared
    import spock.lang.Specification
    import spock.lang.Subject
    
    class CapabilityNotationParserFactoryTest extends Specification {
        @Subject
        @Shared
        private NotationParser<Object, Capability> strictParser = new CapabilityNotationParserFactory(true).create()
        @Subject
        @Shared
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. src/cmd/dist/supported_test.go

    	defer func(a, o string) {
    		goarch = a
    		goos = o
    	}(goarch, goos)
    
    	var modes = []string{
    		// we assume that "exe" and "archive" always work
    		"pie",
    		"c-archive",
    		"c-shared",
    		"shared",
    		"plugin",
    	}
    
    	for _, a := range okgoarch {
    		goarch = a
    		for _, o := range okgoos {
    			if _, ok := cgoEnabled[o+"/"+a]; !ok {
    				continue
    			}
    			goos = o
    			for _, mode := range modes {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeSoftwareModelParallelIntegrationTest.groovy

            when:
            succeeds("assemble", "parallelTask")
    
            then:
            assertTaskIsParallel("linkMainExecutable")
        }
    
        @ToBeFixedForConfigurationCache
        def "can execute link shared library tasks in parallel"() {
            given:
            withComponentsForAppAndSharedLib()
            createTaskThatRunsInParallelUsingCustomToolchainWith("linkMainLibSharedLibrary")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. src/sync/pool.go

    	if race.Enabled {
    		race.Disable()
    	}
    	l, pid := p.pin()
    	x := l.private
    	l.private = nil
    	if x == nil {
    		// Try to pop the head of the local shard. We prefer
    		// the head over the tail for temporal locality of
    		// reuse.
    		x, _ = l.shared.popHead()
    		if x == nil {
    			x = p.getSlow(pid)
    		}
    	}
    	runtime_procUnpin()
    	if race.Enabled {
    		race.Enable()
    		if x != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/language/swift/AbstractSwiftMixedLanguageIntegrationTest.groovy

    import static org.junit.Assume.assumeTrue
    
    @RequiresInstalledToolChain(ToolChainRequirement.SWIFTC)
    class AbstractSwiftMixedLanguageIntegrationTest extends AbstractIntegrationSpec {
        public static final String SHARED = "SHARED"
        public static final String STATIC = "STATIC"
        def swiftToolChain = AvailableToolChains.getToolChain(ToolChainRequirement.SWIFTC)
        def cppToolChain = AvailableToolChains.getToolChain(ToolChainRequirement.CLANG)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/internal/tasks/testing/testng/TestNGTestFrameworkTest.groovy

    import org.gradle.internal.time.Clock
    import org.gradle.testfixtures.ProjectBuilder
    import org.gradle.util.TestUtil
    import spock.lang.Shared
    import spock.lang.Specification
    
    public class TestNGTestFrameworkTest extends Specification {
    
        @Shared ObjectFactory objects = TestUtil.objectFactory()
    
        private project = ProjectBuilder.builder().build()
        Test testTask = TestUtil.createTask(Test, project)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. testing/internal-testing/src/test/groovy/org/gradle/test/precondition/PredicateFileTest.groovy

    package org.gradle.test.precondition
    
    import spock.lang.Specification
    
    class PredicateFileTest extends Specification {
    
        Set<Set<String>> values = [
            // Value NOT shared between single and multi cases
            ["value1"] as Set,
            // Value shared between single and multi cases
            ["value2"] as Set,
            ["value2", "value3"] as Set,
        ] as Set
    
        def "accept single values"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/c/CLanguageIntegrationTest.groovy

                    sources {
                        c {
                            exportedHeaders {
                                srcDirs "src/shared/headers"
                            }
                        }
                        c2(CSourceSet) {
                            exportedHeaders {
                                srcDirs "src/shared/headers"
                            }
                        }
                        c3(CSourceSet) {
                            source {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top