Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 545 for shared (0.1 sec)

  1. platforms/documentation/docs/src/snippets/files/inputFiles/groovy/build.gradle

        source = file('src/main/java')
    
        // Use a String path to specify the source directory
        source = 'src/main/java'
    
        // Use a collection to specify multiple source directories
        source = ['src/main/java', '../shared/java']
    
        // Use a FileCollection (or FileTree in this case) to specify the source files
        source = fileTree(dir: 'src/main/java').matching { include 'org/gradle/api/**' }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/files/inputFiles/kotlin/build.gradle.kts

        // Use a String path to specify the source directory
        source = fileTree("src/main/java")
    
        // Use a collection to specify multiple source directories
        source = fileTree(listOf("src/main/java", "../shared/java"))
    
        // Use a FileCollection (or FileTree in this case) to specify the source files
        source = fileTree("src/main/java").matching { include("org/gradle/api/**") }
    
        // Using a closure to specify the source files.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/CacheBuilder.java

         * </p>
         * <ul>
         *     <li>Using {@link org.gradle.cache.FileLockManager.LockMode#Exclusive} will lock the cache on open() in the exclusive mode and keep it locked until {@link PersistentCache#close()} is called.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/groovy/org/gradle/play/integtest/fixtures/external/PlayApp.groovy

            sourceFiles("public", "shared")
        }
    
        List<SourceFile> getAppSources() {
            return sourceFiles("app").findAll {
                it.path != "app/views"
            }
        }
    
        List<SourceFile> getViewSources() {
            return sourceFiles("app/views");
        }
    
        List<SourceFile> getConfSources() {
            return sourceFiles("conf", "shared") + sourceFiles("conf")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. build-logic-commons/settings.gradle.kts

        }
    }
    
    plugins {
        id("org.gradle.toolchains.foojay-resolver-convention") version("0.8.0")
    }
    
    includeBuild("../build-logic-settings")
    
    // Shared basics for all
    include("basics")
    
    // Platform: defines shared dependency versions
    include("build-platform")
    
    // Compute the identity/version we are building and related details (like current git commit)
    include("module-identity")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 11:54:19 UTC 2024
    - 1.3K bytes
    - Viewed (1)
  6. platforms/documentation/docs/src/samples/build-organization/sharing-convention-plugins-with-build-logic/README.adoc

    This sample shows how _convention plugins_ can be shared and applied to both the production code and the build logic code in _buildSrc_.
    
    Let's use the following project structure:
    ====
    [.multi-language-sample]
    =====
    .Project structure
    [source, kotlin]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. testing/integ-test/src/integTest/groovy/org/gradle/integtests/StdioIntegrationTest.groovy

    class StdioIntegrationTest extends AbstractIntegrationSpec {
        def setup() {
            executer.requireDaemon()
            // This isn't actually required - the test is fine with shared daemons
            // In fact, it would be much better to test this feature using shared daemons
            executer.requireIsolatedDaemons()
        }
    
        def "task can read stdin when stdin has bounded length"() {
            given:
            buildFile << '''
    task echo {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 30 05:02:18 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/multiproject/dependencies-java/groovy/settings.gradle

    rootProject.name = 'dependencies-java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 90 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/java/multiproject/kotlin/settings.gradle.kts

    rootProject.name = "multiproject"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 102 bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftLibraryCppInteroperabilityIntegrationTest.groovy

            where:
            linkage << [SHARED, STATIC]
        }
    
        NativeBinaryFixture cppLibrary(String linkage, String path) {
            if (linkage == STATIC) {
                return staticCppLibrary(path)
            }
    
            if (linkage == SHARED) {
                return cppLibrary(path)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top