Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,736 for shared (0.09 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. pkg/volume/util/hostutil/hostutil_linux.go

    // path is shared and bind-mounts it as rshared if needed. mountCmd and
    // mountArgs are expected to contain mount-like command, DoMakeRShared will add
    // '--bind <path> <path>' and '--make-rshared <path>' to mountArgs.
    func DoMakeRShared(path string, mountInfoFilename string) error {
    	shared, err := isShared(path, mountInfoFilename)
    	if err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 23 08:36:44 UTC 2023
    - 10K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/cross-namespace-routing/0-namespaces.yaml

    apiVersion: v1
    kind: Namespace
    metadata:
      name: infra-ns
      labels:
        shared-gateway-access: "true"
    ---
    apiVersion: v1
    kind: Namespace
    metadata:
      name: site-ns
      labels:
        shared-gateway-access: "true"
    ---
    apiVersion: v1
    kind: Namespace
    metadata:
      name: store-ns
      labels:
        shared-gateway-access: "true"
    ---
    apiVersion: v1
    kind: Namespace
    metadata:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 433 bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultFileLockManagerWithNewProtocolTest.groovy

    import static org.gradle.cache.FileLockManager.LockMode.Shared
    
    class DefaultFileLockManagerWithNewProtocolTest extends AbstractFileLockManagerTest {
        @Override
        protected DefaultLockOptions options() {
            return DefaultLockOptions.mode(FileLockManager.LockMode.OnDemand)
        }
    
        def "a lock has been updated when never written to"() {
            given:
            def lock = createLock(Shared)
            def state = lock.state
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:52 UTC 2024
    - 7.4K 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