Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,736 for shared (0.15 sec)

  1. platforms/documentation/docs/src/snippets/java/multiproject/kotlin/settings.gradle.kts

    rootProject.name = "multiproject"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 102 bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftLibraryCppInteroperabilityIntegrationTest.groovy

            where:
            linkage << [SHARED, STATIC]
        }
    
        NativeBinaryFixture cppLibrary(String linkage, String path) {
            if (linkage == STATIC) {
                return staticCppLibrary(path)
            }
    
            if (linkage == SHARED) {
                return cppLibrary(path)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/multiproject/basic-dependencies/groovy/settings.gradle

    rootProject.name = 'basic-dependencies'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:29:44 UTC 2024
    - 91 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/multiproject/dependencies-java/groovy/api/build.gradle

    plugins {
        id 'myproject.java-conventions'
    }
    
    dependencies {
        implementation project(':shared')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 104 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/multiproject/basic-dependencies/groovy/api/build.gradle

    plugins {
        id 'java'
    }
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        testImplementation "junit:junit:4.13"
        implementation project(':shared')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:29:44 UTC 2024
    - 161 bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/action.go

    				}
    				// Assume that if pkg (runtime/cgo or math)
    				// is already accounted for in a different shared library,
    				// then that shared library also contains runtime,
    				// so that anything we do will depend on that library,
    				// so we don't need to include pkg in our shared library.
    				if force || p.Shlib == "" || filepath.Base(p.Shlib) == pkg {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationCppInteroperabilityIntegrationTest.groovy

            installation("app/build/install/main/debug").exec().out == app.expectedOutput
    
            where:
            linkage << [SHARED, STATIC]
        }
    
        @ToBeFixedForConfigurationCache
        def "can compile and link against a c++ library with both static and shared linkages"() {
            createDirs("app", "cppGreeter")
            settingsFile << "include 'app', 'cppGreeter'"
            def cppGreeter = new CppGreeterFunction()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/plugins/CppLibraryPluginTest.groovy

            project.library.linkage = [Linkage.SHARED, Linkage.STATIC]
            project.evaluate()
    
            then:
            def compileDebug = project.tasks.compileDebugSharedCpp
            compileDebug instanceof CppCompile
            compileDebug.source.files == [src] as Set
            compileDebug.objectFileDir.get().asFile == projectDir.file("build/obj/main/debug/shared")
            compileDebug.debuggable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  9. src/runtime/signal_windows_test.go

    	testenv.MustHaveCGO(t)
    	testenv.MustHaveExecPath(t, "gcc")
    	testprog.Lock()
    	defer testprog.Unlock()
    	dir := t.TempDir()
    
    	// build c program
    	dll := filepath.Join(dir, "veh.dll")
    	cmd := exec.Command("gcc", "-shared", "-o", dll, "testdata/testwinlibthrow/veh.c")
    	out, err := testenv.CleanCmdEnv(cmd).CombinedOutput()
    	if err != nil {
    		t.Fatalf("failed to build c exe: %s\n%s", err, out)
    	}
    
    	// build go exe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/multiproject/basic-dependencies/groovy/shared/src/main/java/org/gradle/sample/shared/Helper.java

    package org.gradle.sample.shared;
    
    public class Helper {
        public static String prettyPrint(String text) {
           return "*** " + text + " ***";
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:29:44 UTC 2024
    - 156 bytes
    - Viewed (0)
Back to top