Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,736 for shared (0.1 sec)

  1. 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)
  2. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/LibraryDependenciesIntegrationTest.groovy

    apply plugin: "cpp"
    model {
        components {
            main(NativeExecutableSpec) {
                sources {
                    cpp.lib library: "hello", linkage: "shared"
                    cpp.lib library: "greetings", linkage: "shared"
                }
            }
            hello(NativeLibrarySpec) {
                sources {
                    cpp.lib library: "greetings", linkage: "static"
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.3K 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. src/runtime/rt0_linux_arm.s

    #include "textflag.h"
    
    TEXT _rt0_arm_linux(SB),NOSPLIT|NOFRAME,$0
    	MOVW	(R13), R0	// argc
    	MOVW	$4(R13), R1		// argv
    	MOVW	$_rt0_arm_linux1(SB), R4
    	B		(R4)
    
    // When building with -buildmode=c-shared, this symbol is called when the shared
    // library is loaded.
    TEXT _rt0_arm_linux_lib(SB),NOSPLIT,$0
    	B	_rt0_arm_lib(SB)
    
    TEXT _rt0_arm_linux1(SB),NOSPLIT|NOFRAME,$0
    	// We first need to detect the kernel ABI, and warn the user
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 21:41:30 UTC 2018
    - 1007 bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. src/runtime/rt0_linux_arm64.s

    #include "textflag.h"
    #include "cgo/abi_arm64.h"
    
    TEXT _rt0_arm64_linux(SB),NOSPLIT|NOFRAME,$0
    	MOVD	0(RSP), R0	// argc
    	ADD	$8, RSP, R1	// argv
    	BL	main(SB)
    
    // When building with -buildmode=c-shared, this symbol is called when the shared
    // library is loaded.
    TEXT _rt0_arm64_linux_lib(SB),NOSPLIT,$184
    	// Preserve callee-save registers.
    	SAVE_R19_TO_R28(24)
    	SAVE_F8_TO_F15(104)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 01:28:43 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  10. 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)
Back to top