Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 493 for IsShared (0.11 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/AbstractDependencyMetadataRulesTest.groovy

        @Shared
            versionIdentifier = new DefaultModuleVersionIdentifier("org.test", "producer", "1.0")
        @Shared
            componentIdentifier = DefaultModuleComponentIdentifier.newId(versionIdentifier)
        @Shared
            attributes = AttributeTestUtil.attributesFactory().of(Attribute.of("someAttribute", String), "someValue")
        @Shared
            schema = createSchema()
        @Shared
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 12:39:10 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    			expect: authorizer.DecisionNoOpinion,
    		},
    		{
    			name:   "allowed shared secret via pod",
    			attrs:  authorizer.AttributesRecord{User: node0, ResourceRequest: true, Verb: "get", Resource: "secrets", Name: "secret0-shared", Namespace: "ns0"},
    			expect: authorizer.DecisionAllow,
    		},
    		{
    			name:   "allowed shared secret via pvc",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/swift_library_plugin.adoc

    - `release` - Generate debug symbols and optimize, but extract the debug symbols from the binary
    
    Linkages - default to _shared_::
    The linkage expresses whether a shared library or static library should be created. Libraries can produce a shared library, a static library or both.
    
    The linkage can be configured as follows:
    
    .Configure library linkages
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/DefaultBinaryNamingSchemeTest.groovy

            null       | "SharedLibrary" | []             | "shared library 'sharedLibrary'"
            "parent"   | "SharedLibrary" | []             | "shared library 'parent:sharedLibrary'"
            "parent"   | "SharedLibrary" | ["one"]        | "shared library 'parent:one:sharedLibrary'"
            "parent"   | "SharedLibrary" | ["one", "two"] | "shared library 'parent:one:two:sharedLibrary'"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/plugins/SwiftLibraryPluginTest.groovy

            project.library.linkage = [Linkage.SHARED, Linkage.STATIC]
            project.evaluate()
    
            then:
            def compileDebug = project.tasks.compileDebugSharedSwift
            compileDebug instanceof SwiftCompile
            compileDebug.source.files == [src] as Set
            compileDebug.objectFileDir.get().asFile == projectDir.file("build/obj/main/debug/shared")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/wrapper-shared/src/test/groovy/org/gradle/wrapper/InstallTest.groovy

        @Shared
        @ClassRule
        TestNameTestDirectoryProvider sharedTemporaryFolder = TestNameTestDirectoryProvider.newInstance(getClass())
        @Shared TestFile templateZipFile = new TestFile(sharedTemporaryFolder.testDirectory, "template-gradle.zip")
        @Shared TestFile templateEvalZipFile = new TestFile(sharedTemporaryFolder.testDirectory, "template-eval-gradle.zip")
        @Shared String templateZipHash
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:12:34 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    - If the retention period is customized for Gradle versions greater than or equal to version 8.0 to use retention periods _longer_ than the previously fixed periods, the older versions of Gradle may clean the shared caches earlier than what is configured.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSingleProjectIntegrationTest.groovy

            when:
            app.library.writeSources(file("src/main"))
            settingsFile << """
                rootProject.name = 'lib'
            """
            buildFile << """
                apply plugin: 'cpp-library'
    
                library {
                    linkage = [Linkage.STATIC, Linkage.SHARED]
                    binaries.configureEach { binary ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/ReadelfBinaryInfoTest.groovy

      Tag        Type                         Name/Value
     0x0000000000000001 (NEEDED)             Shared library: [libstdc++.so.6]
     0x0000000000000001 (NEEDED)             Shared library: [libm.so.6]
     0x0000000000000001 (NEEDED)             Shared library: [libgcc_s.so.1]
     0x0000000000000001 (NEEDED)             Shared library: [libc.so.6]
     0x000000000000000e (SONAME)             Library soname: [heythere]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/CrossBuildScriptCachingIntegrationSpec.groovy

            server.expect(server.get("shared.gradle").send("""
                ${instrument('"shared"')}
                println 'Echo 1'
            """))
            run 'help'
    
            then:
            outputContains 'Echo 1'
            def scripts = scriptDetails()
            scriptHasChanged("shared", before, scripts)
            getCompileBuildFileOperationsCount() == 2 // classpath + body for shared build script
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top