Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 736 for shared (0.15 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/BeforeResolveIntegrationTest.groovy

                .publish()
    
            and: "a build where conf a and b extend shared, which deps module3, and where if module3 is going to be resolved for conf b, then module 1 is excluded via a beforeResolve hook"
            buildFile << """
    configurations {
       shared
       a.extendsFrom shared
       b.extendsFrom shared
    }
    
    repositories {
        maven { url '${mavenRepo.uri}' }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 02:27:32 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/WindowsKitWindowsSdkLocatorTest.groovy

            result.component.baseDir == dir1
            def platformSdk = result.component.forPlatform(x64())
            platformSdk.includeDirs == [ dir1.file("Include/${expected}/um"), dir1.file("Include/${expected}/shared") ]
            platformSdk.path == [dir1.file("bin/x64")]
            platformSdk.libDirs == [dir1.file("Lib/${expected}/um/x64")]
    
            where:
            versions                                           | expected
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/swiftpm/plugins/SwiftPackageManagerExportPlugin.java

                        }
                        targets.add(target);
    
                        if (library.getLinkage().get().contains(Linkage.SHARED)) {
                            products.add(new DefaultLibraryProduct(p.getName(), target, Linkage.SHARED));
                        }
                        if (library.getLinkage().get().contains(Linkage.STATIC)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  4. src/syscall/zerrors_windows.go

    	ELIBACC - APPLICATION_ERROR:         "can not access a needed shared library",
    	ELIBBAD - APPLICATION_ERROR:         "accessing a corrupted shared library",
    	ELIBEXEC - APPLICATION_ERROR:        "cannot exec a shared library directly",
    	ELIBMAX - APPLICATION_ERROR:         "attempting to link in too many shared libraries",
    	ELIBSCN - APPLICATION_ERROR:         ".lib section in a.out corrupted",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 10K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativePlatformSamplesIntegrationTest.groovy

            then:
            executedAndNotSkipped ":compileMainSharedLibraryMainCpp", ":linkMainSharedLibrary", ":mainSharedLibrary"
    
            and:
            sharedLibrary(cppLib.dir.file("build/libs/main/shared/main")).assertExists()
    
            when:
            sample cppLib
            run "mainStaticLibrary"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  6. src/site/xdoc/maven-deps.odg

    sec-dispatcher commons-cli utils plugin-api artifact embedder settings-builder model-builder model cipher interpolation wagon-provider-api classworlds repository-metadata settings resolver api spi impl util resolver-provider builder-support jansi slf4j-api shared-utils slf4j-provider bom toolchain-builder toolchain-model meta di xml model plugin toolchain core spi xml-impl xml settings jline3 compat slf4j-wrapper jline woodstox api-impl di metadata...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 24 16:01:00 UTC 2024
    - 37K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGXmlResultAndHtmlReportIntegrationTest.groovy

            String config
        }
    
        @Shared Mode outputPerTestCase = new Mode(name: "output-per-testcase", outputAssociation: WITH_TESTCASE, config: "reports.junitXml.outputPerTestCase true")
        @Shared Mode outputAtSuite = new Mode(name: "output-at-suite", outputAssociation: WITH_SUITE, config: "reports.junitXml.outputPerTestCase false")
    
        @Shared List<Mode> modes = [outputAtSuite, outputPerTestCase]
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 21:27:42 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  8. src/syscall/tables_js.go

    	ELIBACC         Errno = 79      /* Can't access a needed shared lib */
    	ELIBBAD         Errno = 80      /* Accessing a corrupted shared lib */
    	ELIBSCN         Errno = 81      /* .lib section in a.out corrupted */
    	ELIBMAX         Errno = 82      /* Attempting to link in too many libs */
    	ELIBEXEC        Errno = 83      /* Attempting to exec a shared library */
    	EILSEQ          Errno = 84
    	EUSERS          Errno = 87
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 19.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/readme-templates/multi-common-body.adoc.template

    Then, we declare a repository -- `mavenCentral()` -- as source for external dependencies *(2)*, define dependency constraints *(3)* as well as standard dependencies that are shared by all subprojects and set JUnit 5 as testing framework *(4...)*.
    Other shared settings, like compiler flags or JVM version compatibilities, could also be set here.
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 08 11:21:22 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  10. tensorflow/c/BUILD

        }),
        tags = [
            "no_cuda_asan",  # TODO(b/181771536)
            "no_windows",  # TODO(b/155444728)
        ],
        # We must ensure that the dependencies can be dynamically linked since
        # the shared library must be able to use core:framework.
        deps = [
            ":c_api",
            ":c_api_internal",
            ":c_test_util",
            ":test_op_kernel",
            ":tf_buffer",
            ":tf_buffer_internal",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top