Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,547 for shared (0.17 sec)

  1. src/runtime/rt0_darwin_arm64.s

    exit:
    	MOVD	$0, R0
    	MOVD	$1, R16	// sys_exit
    	SVC	$0x80
    	B	exit
    
    // When linking with -buildmode=c-archive or -buildmode=c-shared,
    // this symbol is called from a global initialization function.
    //
    // Note that all currently shipping darwin/arm64 platforms require
    // cgo and do not support c-shared.
    TEXT _rt0_arm64_darwin_lib(SB),NOSPLIT,$152
    	// Preserve callee-save registers.
    	SAVE_R19_TO_R28(8)
    	SAVE_F8_TO_F15(88)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 01:28:43 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/DefaultSharedLibraryBinarySpecTest.groovy

            binary.headerDirs.toString() == "Headers for shared library 'main:sharedLibrary'"
    
            and:
            binary.linkFiles.files == [binary.sharedLibraryLinkFile] as Set
            binary.linkFiles.buildDependencies.getDependencies(Stub(Task)) == [lifecycleTask] as Set
            binary.linkFiles.toString() == "Link files for shared library 'main:sharedLibrary'"
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. 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)
  4. subprojects/core/src/test/groovy/org/gradle/internal/operations/logging/LoggingBuildOperationProgressBroadcasterTest.groovy

    import spock.lang.Shared
    import spock.lang.Specification
    
    class LoggingBuildOperationProgressBroadcasterTest extends Specification {
    
        def outputEventListenerManager = Mock(OutputEventListenerManager)
        def buildOperationProgressEventEmitter = Mock(BuildOperationProgressEventEmitter)
    
        @Shared
        def testOperationId = Mock(OperationIdentifier)
    
        @Shared
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top