Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 66 for Miller (0.32 sec)

  1. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/DefaultSnapshotHierarchyTest.groovy

                return []
            }
            List<String> prefixes = new ArrayList<>()
            def node = set.rootNode
            def unpackedNode = (node.getSnapshot()
                .filter { it instanceof FileSystemLocationSnapshot }
                .orElse(node))
            if (unpackedNode instanceof DirectorySnapshot) {
                def children = unpackedNode.children
                children.forEach { child ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java

                    // Flatten adocs into a single directory
                    sub.eachFile(fcd -> fcd.setRelativePath(RelativePath.parse(true, fcd.getName())));
                });
    
                // From the snippets and the samples, filter out files generated if the build contained was ever executed
                task.from(extension.getUserManual().getSnippets(), sub -> {
                    sub.into("snippets");
                    sub.exclude("**/.gradle/**");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 05:46:51 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/DefaultPrecompiledScriptPluginsSupport.kt

        generatePluginAdaptersFor(scriptPlugins, kotlinSourceDirectorySet)
    }
    
    
    private
    fun SourceDirectorySet.collectScriptPluginFiles(): Set<File> =
        matching { it.include("**/*.gradle.kts") }
            .filter { it.isFile }
            .files
    
    
    private
    val SourceSet.kotlin: SourceDirectorySet
        get() = extensions.getByName("kotlin") as SourceDirectorySet
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 10:44:10 UTC 2024
    - 21K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/GeneratePrecompiledScriptPluginAccessors.kt

        private
        fun compiledScriptClassFile(plugin: PrecompiledScriptPlugin) =
            plugin.compiledScriptTypeName.replace('.', '/') + ".class"
    
        private
        fun selectProjectScriptPlugins() = plugins.filter { it.scriptType == KotlinScriptType.PROJECT }
    
        private
        fun createPluginsClassLoader(): ClassLoader =
            URLClassLoader(
                compiledPluginsClassPath().asURLArray,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/impl/DirectorySnapshotterTest.groovy

            visited[knownDir.absolutePath].is(knownDirSnapshot)
            visited[previouslyUnknownFile.absolutePath] == null
        }
    
        def "should reuse existing file and directory snapshots when using a filter"() {
            given:
            def rootDir = tmpDir.createDir("root")
            def knownDir = rootDir.file("known").createDir()
            def knownTextFile = rootDir.file("known/known.txt").createFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/AccessTrackingProperties.java

             * call: it may be already completely or partially modified to reflect the result of the operation.
             *
             * @param key the key used by the caller to access the property
             * @param value the value observed by the caller or {@code null} if there is no value for the given key
             */
            void onAccess(Object key, @Nullable Object value);
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:51 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/tasks/PerformanceTest.groovy

         */
        private void moveMethodFiltersToScenarios() {
            DefaultTestFilter filter = getFilter() as DefaultTestFilter
            List<String> scenarios = []
            Set<String> classOnlyFilters = new LinkedHashSet<>()
            filter.getCommandLineIncludePatterns().each { includePattern ->
                def lastDot = includePattern.lastIndexOf(".")
                if (lastDot == -1) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 03 03:46:18 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheUnsupportedTypesIntegrationTest.groovy

                )
                withProblemsWithStackTraceCount(0)
            }
    
            and:
            outputContains("this.reference = JavaRecord[value=null, filler=101]")
            outputContains("bean.reference = JavaRecord[value=null, filler=202]")
    
            when:
            configurationCacheRunLenient "broken"
    
            then:
            problems.assertResultHasProblems(result) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/WithSideEffectProviderTest.groovy

            then:
            unpackedValue == 24
            1 * sideEffect.execute(24)
            0 * _
    
            where:
            description       | wrap
            "Provider.filter" | { p -> p.filter({ true }) }
            "Provider.map"    | { p -> p.map { it } }
        }
    
        def "does not run the side effect when changing provider is filtered with #description and spec is not satisfied"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 06:53:07 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/internal/IsolatedProjectsSafeKotlinDslScriptsModelBuilder.kt

    import org.gradle.kotlin.dsl.resolver.SourceDistributionResolver
    import org.gradle.kotlin.dsl.resolver.SourcePathProvider
    import org.gradle.kotlin.dsl.support.ImplicitImports
    import org.gradle.kotlin.dsl.support.filter
    import org.gradle.kotlin.dsl.support.isGradleKotlinDslJar
    import org.gradle.kotlin.dsl.support.serviceOf
    import org.gradle.kotlin.dsl.tooling.builders.AbstractKotlinDslScriptsModelBuilder
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 11:06:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top