Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,379 for _shared (0.13 sec)

  1. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/AbstractFileLockManagerTest.groovy

            given:
            createLock(Exclusive)
    
            when:
            createLock(Shared)
    
            then:
            thrown(IllegalStateException)
        }
    
        def "cannot lock twice in single process for shared mode"() {
            given:
            createLock(Shared)
    
            when:
            createLock(Shared)
    
            then:
            thrown(IllegalStateException)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/declaring_dependencies_between_subprojects.adoc

    =====
    
    In this example, there are three subprojects called `shared`, `api`, and `person-service`:
    
    1. The `person-service` subproject depends on the other two subprojects, `shared` and `api`.
    2. The `api` subproject depends on the `shared` subproject.
    
    We use the `:` separator to define a <<intro_multi_project_builds#sec:project_path,project path>> such as `services:person-service` or `:shared`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 21:54:47 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/flags/flags.go

    	Shared     = flag.Bool("shared", false, "generate code that can be linked into a shared library")
    	Dynlink    = flag.Bool("dynlink", false, "support references to Go symbols defined in other shared libraries")
    	Linkshared = flag.Bool("linkshared", false, "generate code that will be linked against Go shared libraries")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:18:23 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultPersistentDirectoryCacheTest.groovy

            expect:
            emptyDir.assertDoesNotExist()
    
            when:
            def cache = new DefaultPersistentDirectoryCache(emptyDir, "<display-name>", properties, mode(FileLockManager.LockMode.Shared), initializationAction, cacheCleanup, lockManager, Mock(ExecutorFactory), buildOperationRunner)
            try {
                cache.open()
            } finally {
                cache.close()
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:40:49 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/build_gcflags.txt

    [compiler:gccgo] skip  # gccgo does not use -gcflags
    [!cgo] skip
    [!GOOS:linux] skip  # test only works if c-archive implies -shared
    [short] skip
    
    env GOCACHE=$WORK/gocache  # Looking for compile commands, so need a clean cache.
    go build -x -n -buildmode=c-archive -gcflags=all=-shared=false ./override.go
    stderr '^.*/compile (.* )?-shared (.* )?-shared=false'
    
    -- override.go --
    package main
    
    import "C"
    
    //export GoFunc
    func GoFunc() {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 541 bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/filelock/DefaultLockOptionsTest.groovy

    import static org.gradle.cache.FileLockManager.LockMode.Shared
    
    class DefaultLockOptionsTest extends Specification {
        def "can make copy of options"() {
            def builder = DefaultLockOptions.mode(Exclusive).useCrossVersionImplementation()
    
            when:
            def copy = builder.copyWithMode(Shared)
    
            then:
            !copy.is(builder)
            copy.mode == Shared
            copy.useCrossVersionImplementation
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:52 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/prebuilt/DefaultPrebuiltSharedLibraryBinaryTest.groovy

        def "has useful string representation"() {
            expect:
            binary.toString() == "prebuilt shared library 'lib:name'"
            binary.displayName == "prebuilt shared library 'lib:name'"
            binary.linkFiles.toString() == "link files for prebuilt shared library 'lib:name'"
            binary.runtimeFiles.toString() == "runtime files for prebuilt shared library 'lib:name'"
        }
    
        def "uses library file when link file not set"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryWithBothLinkagePublishingIntegrationTest.groovy

            debugShared.artifactFile(type: sharedLibraryExtension).assertIsCopyOf(sharedLibrary("build/lib/main/debug/shared/test").file)
            debugShared.artifactFile(type: linkLibrarySuffix).assertIsCopyOf(sharedLibrary("build/lib/main/debug/shared/test").linkFile)
    
            debugShared.parsedPom.scopes.isEmpty()
    
            def debugSharedMetadata = debugShared.parsedModuleMetadata
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/cross-namespace-routing/gateway.yaml

    kind: Gateway
    metadata:
      name: shared-gateway
      namespace: infra-ns
    spec:
      gatewayClassName: shared-gateway-class
      listeners:
      - name: https
        hostname: "foo.example.com"
        protocol: HTTPS
        port: 443
        allowedRoutes:
          namespaces:
            from: Selector
            selector:
              matchLabels:
                shared-gateway-access: "true"
        tls:
          certificateRefs:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 510 bytes
    - Viewed (0)
  10. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/internal/tooling/BuildInvocationsBuilderTest.groovy

    import org.junit.ClassRule
    import spock.lang.Shared
    import spock.lang.Specification
    import spock.lang.Unroll
    
    @UsesNativeServices
    @CleanupTestDirectory
    class BuildInvocationsBuilderTest extends Specification {
        @Shared
        @ClassRule
        public TestNameTestDirectoryProvider temporaryFolder = TestNameTestDirectoryProvider.newInstance(getClass())
        @Shared
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top