Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,337 for IsShared (0.24 sec)

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

            when:
            factory.open(tmpDir.testDirectory.file('foo'), "foo", [prop: 'value'], mode(Shared), null, null)
            factory.open(tmpDir.testDirectory.file('bar'), "bar", [prop: 'value'], mode(Shared), null, null)
            factory.open(tmpDir.testDirectory.file('baz'), "baz", [prop: 'value'], mode(Shared), null, null)
    
            and:
            factory.visitCaches(new CacheVisitor() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. build-logic/kotlin-dsl-shared-runtime/build.gradle.kts

    plugins {
        id("gradlebuild.kotlin-shared-runtime")
    }
    
    description = "Provides Kotlin DSL code that is shared between build-logic and runtime"
    
    dependencies {
        compileOnly(platform("gradlebuild:build-platform"))
        compileOnly(kotlin("stdlib"))
        compileOnly("org.ow2.asm:asm-tree")
        compileOnly("com.google.code.findbugs:jsr305")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 344 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/build-organization/cross-project-output-sharing/kotlin/producer/build.gradle.kts

    val makeFile = tasks.register("makeFile") {
        val sharedFile = layout.buildDirectory.file("some-subdir/shared-file.txt")
        outputs.file(sharedFile)
        doFirst {
            sharedFile.get().asFile.writeText("This file is shared across Gradle subprojects.")
        }
    }
    
    val sharedConfiguration by configurations.creating {
        isCanBeResolved = false
    }
    
    artifacts {
        add(sharedConfiguration.name, makeFile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 409 bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/DefaultNativeLibrarySpecTest.groovy

            library.displayName == "native library 'someLib'"
        }
    
        def "can use shared variant as requirement"() {
            when:
            def requirement = library.shared
    
            then:
            requirement.projectPath == 'project-path'
            requirement.libraryName == 'someLib'
            requirement.linkage == 'shared'
        }
    
        def "can use static variant as requirement"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/internal/tooling/GradleBuildBuilderTest.groovy

    import org.gradle.util.TestUtil
    import org.junit.ClassRule
    import spock.lang.Shared
    import spock.lang.Specification
    
    import java.util.function.Consumer
    
    @CleanupTestDirectory
    class GradleBuildBuilderTest 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
    - 6.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/build_services.adoc

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[build_services]]
    = Using Shared Build Services
    
    Shared build services allow tasks to share state or resources.
    For example, tasks might share a cache of pre-computed values or use a web service or database instance.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/prebuilt/DefaultPrebuiltSharedLibraryBinary.java

        @Override
        public FileCollection getLinkFiles() {
            return createFileCollection(getSharedLibraryLinkFile(), "link files", "Shared library link files");
        }
    
        @Override
        public FileCollection getRuntimeFiles() {
            return createFileCollection(getSharedLibraryFile(), "runtime files", "Shared library runtime files");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/PrebuiltSharedLibraryBinary.java

    import org.gradle.api.Incubating;
    
    import java.io.File;
    
    /**
     * A shared library that exists at a known location on the filesystem.
     */
    @Incubating
    public interface PrebuiltSharedLibraryBinary extends SharedLibraryBinary {
        /**
         * The shared library file.
         */
        void setSharedLibraryFile(File sharedLibraryFile);
    
        /**
         * The shared library link file.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/components/DiagnosticsComponentReportIntegrationTest.groovy

            srcDir: src/nativeLib/cpp
    
    Binaries
        Shared library 'nativeLib:sharedLibrary'
            build using task: :nativeLibSharedLibrary
            build type: build type 'debug'
            flavor: flavor 'default'
            target platform: platform '$currentNative'
            tool chain: Tool chain 'clang' (Clang)
            shared library file: build/libs/nativeLib/shared/libnativeLib.dylib
        Static library 'nativeLib:staticLibrary'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 16 21:36:13 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/cross-namespace-routing/site-route.yaml

    metadata:
      name: home
      namespace: site-ns
    spec:
      parentRefs:
      - name: shared-gateway
        namespace: infra-ns
      rules:
      - backendRefs:
        - name: home
          port: 8080
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: login
      namespace: site-ns
    spec:
      parentRefs:
      - name: shared-gateway
        namespace: infra-ns
      rules:
      - matches:
        - path:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 646 bytes
    - Viewed (0)
Back to top