Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,379 for _shared (0.36 sec)

  1. src/cmd/go/testdata/script/version_cshared.txt

    [short] skip
    [!cgo] skip '-buildmode=c-shared requires external linking'
    [!buildmode:c-shared] stop
    
    env GO111MODULE=on
    
    go get rsc.io/fortune
    go build -buildmode=c-shared -o external.so rsc.io/fortune
    go version external.so
    stdout '^external.so: .+'
    go version -m external.so
    stdout '^\tpath\trsc.io/fortune'
    stdout '^\tmod\trsc.io/fortune\tv1.0.0'
    
    -- go.mod --
    module m
    
    -- empty.go --
    package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 14:52:04 UTC 2024
    - 416 bytes
    - Viewed (0)
  2. src/internal/fuzz/mem.go

    	return sharedMemMapFile(f, totalSize, removeOnClose)
    }
    
    // header returns a pointer to metadata within the shared memory region.
    func (m *sharedMem) header() *sharedMemHeader {
    	return (*sharedMemHeader)(unsafe.Pointer(&m.region[0]))
    }
    
    // valueRef returns the value currently stored in shared memory. The returned
    // slice points to shared memory; it is not a copy.
    func (m *sharedMem) valueRef() []byte {
    	length := m.header().valueLen
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 03:44:27 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testshared/shared_test.go

    	checkPIE(t, name)
    }
    
    // Build a GOPATH package into a shared library that links against the goroot runtime
    // and an executable that links against both.
    func TestGopathShlib(t *testing.T) {
    	globalSkip(t)
    	goCmd(t, "install", "-buildmode=shared", "-linkshared", "./depBase")
    	shlib := goCmd(t, "list", "-f", "{{.Shlib}}", "-buildmode=shared", "-linkshared", "./depBase")
    	AssertIsLinkedTo(t, shlib, soname)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 26 01:54:41 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaMultiModuleIntegrationTest.groovy

          -root
            -api
            -shared
              -api
              -model
            -services
              -utilities (renamed by user to 'util')
            -util
            -contrib
              -services
                -util
          */
    
            def settingsFile = file("settings.gradle")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 19K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/LibraryBinariesIntegrationTest.groovy

            staticLibrary("build/libs/helloStatic/static/helloStatic").assertExistsAndDelete()
            sharedLibrary("build/libs/helloShared/shared/helloShared").assertExistsAndDelete()
            installation("build/install/main")
                .assertIncludesLibraries("helloShared")
                .exec().out == "Hello staticHello shared"
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/derived/MultiProjectVariantResolutionIntegrationTest.groovy

    Attributes
        - shared = shared-value
        - unique = jar-value
    Artifacts
        - producer-jar.txt
    
    --------------------------------------------------
    Variant javadocElements
    --------------------------------------------------
    
    Capabilities
        - org.test:producer:1.0 (default capability)
    Attributes
        - shared = shared-value
        - unique = javadoc-value
    Artifacts
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/service/scopes/GradleUserHomeScopeServiceRegistry.java

    import javax.annotation.concurrent.ThreadSafe;
    import java.io.File;
    import java.util.Optional;
    
    /**
     * Manages the shared services that are scoped to a particular Gradle user home dir and which can be shared by multiple build invocations. These shared services also include the global services.
     *
     * <p>A plugin can contribute shared services to this scope by providing an implementation of {@link GradleModuleServices}.
     */
    @ThreadSafe
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/sharing_build_logic_between_subprojects.adoc

    │       ├── src
    │       │   └──...
    │       └── build.gradle    // <3>
    ├── shared
    │   ├── src
    │   │   └──...
    │   └── build.gradle
    └── settings.gradle
    ----
    <1> Create the `MyCustomTask` task.
    <2> A shared build script.
    <3> Uses the `MyCustomTask` task and shared build script.
    =====
    
    In the `buildSrc`, the build script `shared.gradle(.kts)` is created.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 12:58:46 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/file/FileCollectionSymlinkTest.groovy

    import org.junit.ClassRule
    import spock.lang.Shared
    import spock.lang.Specification
    
    @Requires(UnitTestPreconditions.Symlinks)
    @UsesNativeServices
    class FileCollectionSymlinkTest extends Specification {
        @Shared Project project = ProjectBuilder.builder().build()
        @Shared @ClassRule TestNameTestDirectoryProvider temporaryFolder = TestNameTestDirectoryProvider.newInstance(getClass())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 11:15:22 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/c/groovy/build.gradle

                if (toolChain in VisualCpp) {
                    cCompiler.args "/Zi"
                    linker.args "/DEBUG"
                }
            }
        }
    }
    // end::compiler-args[]
    
    // tag::all-shared-libraries[]
    // For any shared library binaries built with Visual C++,
    // define the DLL_EXPORT macro
    model {
        binaries {
            withType(SharedLibraryBinarySpec) {
                if (toolChain in VisualCpp) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top