Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for Sall (0.09 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/ToolingApiSpec.groovy

                def args = executer.allArgs.tap { remove("--no-daemon") }
    
                def actionExecuter = connection.action(buildAction)
                config.delegate = actionExecuter
                config.call()
    
                model = actionExecuter
                    .withArguments(args)
                    .setStandardOutput(new TeeOutputStream(output, System.out))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/DefaultScriptCompilationHandler.java

            }
        }
    
        private static class PackageStatementDetector extends CompilationUnit.SourceUnitOperation {
            private boolean hasPackageStatement;
    
            @Override
            public void call(SourceUnit source) throws CompilationFailedException {
                hasPackageStatement = source.getAST().getPackageName() != null;
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIntegrationTest.groovy

            then:
            problems.assertResultHasProblems(result) {
                withInput("Build file 'build.gradle': system property 'CI'")
            }
    
            where:
            mechanism << SystemPropertyInjection.all("CI", "false")
        }
    
        @Issue("https://github.com/gradle/gradle/issues/13569")
        def "reports build logic reading system properties using GString parameters - #expression"() {
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 36K bytes
    - Viewed (0)
  4. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/suppressions.xml

        <suppress checks="ConstantName"
                  files=".*[/\\]internal-architecture-testing[/\\]src[/\\]main[/\\]java[/\\]org[/\\]gradle[/\\].+" />
    
        <!-- Ignore all checks for the generated sources of org.gradle.samples plugin -->
        <suppress checks=".*" files=".*[/\\]docs[/\\]build[/\\]generated-source-sets[/\\].+" />
        <suppress checks=".*" files=".*[/\\].*[/\\]groovy-dsl-plugins[/\\].+" />
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectConfigurationReportingGradle.kt

        private
        fun maybeWrapListener(listener: Any): Any = when (listener) {
            is ProjectEvaluationListener -> CrossProjectModelAccessProjectEvaluationListener(listener, referrerProject, crossProjectModelAccess)
            // all the supported listener types other than ProjectEvaluationListener are already reported as configuration cache problems in non-buildSrc builds
            else -> listener
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintWriter.kt

                    host.instrumentationAgentUsed,
                    host.ignoredFileSystemCheckInputs
                )
            )
        }
    
        /**
         * Stops all writers.
         *
         * **MUST ALWAYS BE CALLED**
         */
        fun close() {
            synchronized(this) {
                closestChangingValue?.let {
                    buildScopedSink.write(it)
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 32.8K bytes
    - Viewed (0)
Back to top