Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 542 for shared (0.24 sec)

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

    import java.util.function.Supplier;
    
    import static org.gradle.cache.FileLockManager.LockMode.Exclusive;
    import static org.gradle.cache.FileLockManager.LockMode.Shared;
    
    /**
     * A {@link CrossProcessCacheAccess} implementation used when a cache is opened with a shared lock that is held until the cache is closed. The contract for {@link CrossProcessCacheAccess} requires an
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. build-logic-commons/settings.gradle.kts

        }
    }
    
    plugins {
        id("org.gradle.toolchains.foojay-resolver-convention") version("0.8.0")
    }
    
    includeBuild("../build-logic-settings")
    
    // Shared basics for all
    include("basics")
    
    // Platform: defines shared dependency versions
    include("build-platform")
    
    // Compute the identity/version we are building and related details (like current git commit)
    include("module-identity")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 11:54:19 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. 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)
  8. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/CacheBuilder.java

         * </p>
         * <ul>
         *     <li>Using {@link org.gradle.cache.FileLockManager.LockMode#Exclusive} will lock the cache on open() in the exclusive mode and keep it locked until {@link PersistentCache#close()} is called.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/action.go

    				}
    				// Assume that if pkg (runtime/cgo or math)
    				// is already accounted for in a different shared library,
    				// then that shared library also contains runtime,
    				// so that anything we do will depend on that library,
    				// so we don't need to include pkg in our shared library.
    				if force || p.Shlib == "" || filepath.Base(p.Shlib) == pkg {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  10. testing/integ-test/src/integTest/groovy/org/gradle/integtests/StdioIntegrationTest.groovy

    class StdioIntegrationTest extends AbstractIntegrationSpec {
        def setup() {
            executer.requireDaemon()
            // This isn't actually required - the test is fine with shared daemons
            // In fact, it would be much better to test this feature using shared daemons
            executer.requireIsolatedDaemons()
        }
    
        def "task can read stdin when stdin has bounded length"() {
            given:
            buildFile << '''
    task echo {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 30 05:02:18 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top