Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for withNormalizer (0.12 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractLineEndingSensitivityIntegrationSpec.groovy

                            sources.each { writer.println it }
                        }
                    }
                }
            """
        }
    
        static def withNormalizer(Class<?> normalizer) {
            return normalizer != null ? ".withNormalizer(${normalizer.simpleName})" : ""
        }
    
        static def withPathSensitivity(PathSensitivity pathSensitivity) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/SnapshotTaskInputsOperationIntegrationTest.groovy

                        .ignoreEmptyDirectories($ignoreEmptyDirectories)
                        .normalizeLineEndings($ignoreLineEndings)
                        ${normalizer ? ".withNormalizer(${normalizer.name})" : ''}
                    outputs.file('outputDir')
                    doLast {
                        println 'do something'
                    }
                }
            """
            createDir('foo')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  3. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/PerformanceTestPlugin.kt

                args(performanceScenarioJson.absolutePath, tmpPerformanceScenarioJson.absolutePath)
                inputs.files(performanceSourceSet.runtimeClasspath).withNormalizer(ClasspathNormalizer::class)
                inputs.file(performanceScenarioJson.absolutePath)
                inputs.file(tmpPerformanceScenarioJson.absolutePath)
                project.toolchainInstallationPaths?.apply {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/plugins/JavaGradlePluginPlugin.java

                    test.getInputs()
                        .files(pluginClasspathTask.get().getPluginClasspath())
                        .withPropertyName("pluginClasspath")
                        .withNormalizer(ClasspathNormalizer.class);
    
                    test.getJvmArgumentProviders().add(new AddOpensCommandLineArgumentProvider(test));
                });
    
                for (SourceSet testSourceSet : testSourceSets) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 06:56:29 UTC 2024
    - 24.8K bytes
    - Viewed (0)
Back to top