Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,736 for shared (0.12 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/tasks/LinkSharedLibraryTest.groovy

            then:
            !link.linkedFile.present
            !link.importLibrary.present
    
            when:
            link.linkedFile = tmpDir.file("shared/lib.dll")
    
            then:
            link.importLibrary.get().asFile == tmpDir.file("shared/lib.lib")
    
            when:
            link.importLibrary.set(tmpDir.file("import/lib_debug.lib"))
            link.linkedFile.set(tmpDir.file("ignore-me"))
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/process/internal/worker/WorkerProcessSettings.java

         * These packages affect both classes and resources.
         * Subpackages of the provided packages are also shared with the implementation classpath.
         *
         * @return The list of packages which are shared from the application to the implementation classpath.
         */
        Set<String> getSharedPackages();
    
        JavaExecHandleBuilder getJavaCommand();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 01 18:40:53 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/NativeComponentReportOutputNormalizer.groovy

                .replaceAll("platform '[\\w+\\-]+'","platform 'current'")
                .replaceAll("(build/libs/.+/shared/(\\w+))\\.so") { "${it[1]}.dylib" }
                .replaceAll("((build/libs/.+/shared/)(\\w+))\\.dll") { "${it[2]}lib${it[3]}.dylib" }
                .replaceAll("((build/libs/.+/static/)(\\w+))\\.lib") { "${it[2]}lib${it[3]}.a" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. 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)
  5. platforms/documentation/docs/src/docs/userguide/native/cpp_library_plugin.adoc

    - `release` - Generate debug symbols and optimize, but extract the debug symbols from the binary
    
    Linkages - default to _shared_::
    The linkage expresses whether a shared library or static library should be created. Libraries can produce a shared library, a static library or both.
    
    The linkage can be configured as follows:
    
    .Configure library linkages
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/runtime/rt0_android_arm64.s

    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    
    TEXT _rt0_arm64_android(SB),NOSPLIT|NOFRAME,$0
    	MOVD	$_rt0_arm64_linux(SB), R4
    	B	(R4)
    
    // When building with -buildmode=c-shared, this symbol is called when the shared
    // library is loaded.
    TEXT _rt0_arm64_android_lib(SB),NOSPLIT|NOFRAME,$0
    	MOVW	$1, R0                            // argc
    	MOVD	$_rt0_arm64_android_argv(SB), R1  // **argv
    	MOVD	$_rt0_arm64_linux_lib(SB), R4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 21:41:31 UTC 2018
    - 941 bytes
    - Viewed (0)
Back to top