Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,379 for _shared (0.2 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/intro_multi_project_builds.adoc

    In <<declaring_dependencies_between_subprojects#javadependencies_2,this example>>, the `:services:person-service` project depends on both the `:api` and `:shared` projects.
    The `:api` project also depends on the `:shared` project.
    
    Assuming you are working on a single project, the `:api` project, you have been making changes but have not built the entire project since performing a `clean`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiBuildActionIntegrationTest.groovy

                plugins.apply(my.MyPlugin)
            """
            file("b/build.gradle") << """
                plugins.apply(my.MyPlugin)
            """
    
            when:
            executer.withArguments(ENABLE_CLI, "-Pshared-input=12", "-Da-input=14")
            def model = runBuildAction(new FetchCustomModelForEachProject())
    
            then:
            model.size() == 2
            model[0].message == "It works from project :a"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. 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)
  4. pkg/volume/util/hostutil/fake_hostutil.go

    	return getDeviceNameFromMount(mounter, mountPath, pluginMountDir)
    }
    
    // MakeRShared checks if path is shared and bind-mounts it as rshared if needed.
    // No-op for testing
    func (hu *FakeHostUtil) MakeRShared(path string) error {
    	return nil
    }
    
    // GetFileType checks for file/directory/socket/block/character devices.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 13:32:38 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. build-logic/packaging/src/main/kotlin/gradlebuild.shaded-jar.gradle.kts

        return tasks.register("${project.name.kebabToCamel()}ShadedJar", ShadedJar::class) {
            jarFile = layout.buildDirectory.file(provider { "shaded-jar/${moduleIdentity.baseName.get()}-shaded-${moduleIdentity.version.get().baseVersion.version}.jar" })
            classTreesConfiguration.from(configurationToShade.artifactViewForType(classTreesType))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. 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)
  7. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeMultiProjectBuildIntegrationTest.groovy

                '$PROJECT_DIR$/api/root-api.iml',
                '$PROJECT_DIR$/shared/shared.iml',
                '$PROJECT_DIR$/shared/api/shared-api.iml',
                '$PROJECT_DIR$/shared/model/model.iml')
    
            def apiDependencies = parseIml(file('api/root-api.iml')).dependencies
            apiDependencies.modules.size() == 2
            apiDependencies.assertHasModule('COMPILE', 'shared-api')
            apiDependencies.assertHasModule('TEST', 'model')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaCompositeBuildIntegrationTest.groovy

            ipr.modules.assertHasModules('$PROJECT_DIR$/root.iml',
                '$PROJECT_DIR$/api/root-api.iml',
                '$PROJECT_DIR$/shared/shared.iml',
                '$PROJECT_DIR$/shared/api/shared-api.iml',
                '$PROJECT_DIR$/shared/model/model.iml',
                '$PROJECT_DIR$/util/util.iml',
                '$PROJECT_DIR$/other/other.iml')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top