Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 310 for Sall (0.05 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/problems/DefaultProblemLocationAnalyzer.java

            List<StackTraceElement> stack = failure.getStackTrace();
            int startPos;
            int endPos;
            if (fromException) {
                // When analysing an exception stack trace, consider all the user code in the stack.
                // This is because we cannot tell the difference between:
                // - a validation exception thrown in user code that is called from other user code, where the caller should be blamed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/legacy/GradleEnterprisePluginLegacyContactPointFixture.groovy

            assert output.contains("buildScan.unsupportedMessage: $unsupported")
        }
    
        BuildScanConfig.Attributes attributes(String output) {
            def all = allAttributes(output)
            all.empty ? null : all.first()
        }
    
        List<BuildScanConfig.Attributes> allAttributes(String output) {
            output.findAll("buildScan\\.attributes: \\{(.+)\\}\\\n") {
                it[1]
            }.collect {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.code-quality.gradle.kts

    }
    
    plugins.withType<GroovyBasePlugin> {
        the<SourceSetContainer>().all {
            tasks.register<Checkstyle>(getTaskName("checkstyle", "groovy")) {
                config = configFile("checkstyle-groovy.xml")
                source(allGroovy)
                classpath = compileClasspath
                reports.xml.outputLocation = checkstyle.reportsDir.resolve("${this@all.name}-groovy.xml")
            }
        }
    }
    
    codenarc {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:36 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/DiagnosticToProblemListenerTest.groovy

    import javax.tools.Diagnostic
    import javax.tools.JavaFileObject
    
    class DiagnosticToProblemListenerTest extends Specification {
    
        def spec = Mock(InternalProblemSpec) {
            // We report the formatted message in all cases
            1 * additionalData(org.gradle.api.problems.internal.GeneralDataSpec, _)
        }
    
        def diagnosticToProblemListener = new DiagnosticToProblemListener(null, null)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 13:58:13 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/DefaultTaskSelector.java

        }
    
        @Override
        public Spec<Task> getFilter(SelectionContext context, ProjectState project, String taskName, boolean includeSubprojects) {
            if (includeSubprojects) {
                // Try to delay configuring all the subprojects
                configurer.configure(project.getMutableModel());
                if (taskNameResolver.tryFindUnqualifiedTaskCheaply(taskName, project.getMutableModel())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/test/groovy/org/gradle/integtests/tooling/fixture/GradleVersionSpecTest.groovy

    package org.gradle.integtests.tooling.fixture
    
    import org.gradle.util.GradleVersion
    import spock.lang.Specification
    
    class GradleVersionSpecTest extends Specification {
        def "greater-than-or-equal version constraint matches all versions with specified base version and later"() {
            def spec = new GradleVersionSpec().toSpec(">=1.0")
    
            expect:
            spec.isSatisfiedBy(GradleVersion.version("1.0"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultProperty.java

        }
    
        public ProviderInternal<? extends T> getProvider() {
            // TODO(mlopatkin) while calling getProvider is not going to cause StackOverflowError by itself, the returned provider is typically used in some recursive call.
            //  Without the safety net of the EvaluationContext, it can cause hard-to-debug exceptions.
            try (EvaluationContext.ScopeContext context = openScope()) {
                return getSupplier(context);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/AnnotationProcessingCompileTask.java

            delegate.setLocale(locale);
        }
    
        @Override
        public Boolean call() {
            if (called) {
                throw new IllegalStateException("Cannot reuse a compilation task");
            }
            called = true;
            try {
                setupProcessors();
                return delegate.call();
            } finally {
                cleanupProcessors();
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:42:29 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. architecture/runtimes.md

            daemon --> worker
    
            worker2["Worker process"]
            daemon --> worker2
    
            worker3["Worker process"]
            daemon --> worker3
        
    ```
    
    These are all Java processes. Each process has a corresponding "runtime".
    All source code in Gradle is written to target one or more of these runtimes.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/codecs/BindingsBackedCodec.kt

            bind(type.java, serializer)
    
        fun bind(type: Class<*>, serializer: Serializer<*>) =
            bind(type, SerializerCodec(serializer))
    
        fun bind(type: Class<*>, codec: Codec<*>) {
            require(bindings.all { it.encodingForType(type) == null }) {
                "There's already an encoding for type '$type'"
            }
            val codecForAny = codec.uncheckedCast<Codec<Any>>()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top