Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 646 for SHARED (0.16 sec)

  1. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/internal/SourceFoldersCreatorTest.groovy

        }
    
        def "ignores excludes patterns when specified for one of shared resources/sources folders"() {
            given:
            def patterns = ["**/*.java"]
            javaTree = dirTree("shared", [], [])
            resourcesTree = dirTree("shared", patterns, [])
            when:
            def folders = regularSourceFolders()
            then:
            folders.find { it.dir.path.endsWith("shared") }.excludes == []
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. pkg/volume/util/hostutil/hostutil_linux_test.go

    			false,
    		},
    		{
    			// 'directory' is a directory on mount
    			// /var/lib/docker/devicemapper/test/shared that is shared, but one
    			// of its parent is private.
    			"nested-shared",
    			"/var/lib/docker/devicemapper/test/shared/my/test/directory",
    			true,
    		},
    		{
    			// /var/lib/foo is a mount point and it's shared
    			"shared-mount",
    			"/var/lib/foo",
    			true,
    		},
    		{
    			// /var/lib/bar is a mount point and it's private
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 8K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftBothLibraryLinkageIntegrationTest.groovy

                apply plugin: 'swift-library'
                library.linkage = [Linkage.SHARED, Linkage.STATIC]
            """
        }
    
        @Override
        String getDevelopmentBinaryCompileTask() {
            return ":compileDebugSharedSwift"
        }
    
        @Override
        void assertComponentUnderTestWasBuilt() {
            file("build/modules/main/debug/shared/${componentUnderTest.moduleName}.swiftmodule").assertIsFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/sysvshm_unix.go

    package unix
    
    import "unsafe"
    
    // SysvShmAttach attaches the Sysv shared memory segment associated with the
    // shared memory identifier id.
    func SysvShmAttach(id int, addr uintptr, flag int) ([]byte, error) {
    	addr, errno := shmat(id, addr, flag)
    	if errno != nil {
    		return nil, errno
    	}
    
    	// Retrieve the size of the shared memory to enable slice creation
    	var info SysvShmDesc
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/NativeComponentReportOutputNormalizerTest.groovy

        C++ source 'hello:cpp'
            srcDir: src/hello/cpp
    
    Binaries
        Shared library 'hello:sharedLibrary'
            build using task: :helloSharedLibrary
            build type: build type 'debug'
            flavor: flavor 'default'
            target platform: platform 'current'
            tool chain: Tool chain 'clang' (Clang)
            shared library file: build/libs/hello/shared/libhello.dylib
        Static library 'hello:staticLibrary'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/SharedLibraryBinarySpec.java

            Task getLink();
        }
    
        /**
         * The shared library file.
         */
        File getSharedLibraryFile();
    
        /**
         * The shared library link file.
         */
        File getSharedLibraryLinkFile();
    
        /**
         * The shared library file.
         */
        void setSharedLibraryFile(File sharedLibraryFile);
    
        /**
         * The shared library link file.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesConflictResolutionIssuesIntegrationTest.groovy

                        project(":shared", "test:shared:") {
                            artifact(classifier: 'one-preferred')
                        }
                        project(":shared", "test:shared:") {
                            artifact(classifier: 'two-preferred')
                        }
                    }
                    project(":shared", "test:shared:") {
                        variant('onePrefRuntimeElements', [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/PlatformNativeComponentReportIntegrationTest.groovy

            srcDir: src/someLib/cpp
    
    Binaries
        Shared library 'someLib:sharedLibrary'
            build using task: :someLibSharedLibrary
            build type: build type 'debug'
            flavor: flavor 'default'
            target platform: platform '$currentNative'
            tool chain: Tool chain 'clang' (Clang)
            shared library file: build/libs/someLib/shared/libsomeLib.dylib
        Static library 'someLib:staticLibrary'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/groovy/scripts/GroovyCompileScriptBuildOperationIntegrationTest.groovy

            )
        }
    
        def "captures shared scripts with same classpath"() {
            given:
            file("shared.gradle") << "println 'shared.gradle'"
    
            buildFile << """
                apply from: 'shared.gradle'
                println 'build.gradle'
            """
    
            succeeds "help"
    
            when: // already compiled shared script
            file('otherBuild/settings.gradle').touch()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppBothLibraryLinkageIntegrationTest.groovy

            then:
            result.assertTasksExecuted(':compileDebugSharedCpp', ':linkDebugShared', ':assemble')
            sharedLibrary('build/lib/main/debug/shared/foo').assertExists()
        }
    
        @ToBeFixedForConfigurationCache
        def "can assemble static library followed by shared library"() {
            def library = new CppLib()
            makeSingleProject()
            settingsFile << """
                rootProject.name = 'foo'
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top