Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 470 for Sall (0.12 sec)

  1. 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)
  2. 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)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiBuildActionIntegrationTest.groovy

                projectConfigured(":")
                modelsCreated(":a")
                modelsReused(":", ":b", ":buildSrc")
            }
            outputContains("creating model for project ':a'")
        }
    
        def "invalidates all cached models when build scoped input changes"() {
            given:
            withSomeToolingModelBuilderPluginInBuildSrc()
            settingsFile << """
                include("a")
                include("b")
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. 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)
  5. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/AbstractCompile.java

    import static org.gradle.internal.instrumentation.api.annotations.ReplacesEagerProperty.BinaryCompatibility.ACCESSORS_KEPT;
    
    /**
     * The base class for all JVM-based language compilation tasks.
     */
    @DisableCachingByDefault(because = "Abstract super-class, not to be instantiated directly")
    public abstract class AbstractCompile extends SourceTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/child/SystemApplicationClassLoaderWorker.java

        public SystemApplicationClassLoaderWorker(DataInputStream configInputStream) {
            this.configInputStream = configInputStream;
        }
    
        @Override
        public Void call() throws Exception {
            if (System.getProperty("org.gradle.worker.test.stuck") != null) {
                // Simulate a stuck worker. There's probably a way to inject this failure...
                Thread.sleep(30000);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. architecture/platforms.md

    It is made up of 3 architecture modules:
    
    - **core-runtime**: Provides the runtimes or "containers" in which code runs. These runtimes include the Gradle client, the daemon and the worker processes. This is the base module on which all other architecture modules depend.
    - **core-configuration**: Allows the build structure and work, such as tasks, to be specified. This includes the project model, the DSL and so on.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/ApplicationClassesInSystemClassLoaderWorkerImplementationFactory.java

            }
            List<String> argumentList = new ArrayList<>();
            if (!modulePath.isEmpty()) {
                argumentList.addAll(Arrays.asList("--module-path", Joiner.on(File.pathSeparator).join(modulePath), "--add-modules", "ALL-MODULE-PATH"));
            }
            if (!classpath.isEmpty()) {
                argumentList.addAll(Arrays.asList("-cp", Joiner.on(File.pathSeparator).join(classpath)));
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 10:09:51 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationLogger.java

            return new ExplicitDeprecationMessageBuilder(feature);
        }
    
        /**
         * Indirect usage means that stack trace at the time the deprecation is logged does not indicate the call site.
         * This directs GE to not display unhelpful stacktraces with the deprecation.
         * <p>
         * Output: ${feature} has been deprecated.
         */
        @CheckReturnValue
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/client-services/src/main/java/org/gradle/internal/daemon/client/serialization/ClientSidePayloadClassLoaderRegistry.java

                            localCandidates.add(cl);
                        }
                    }
                    if (localCandidates.isEmpty()) {
                        // Classloaders in this entry have all been garbage collected, so remove the entry
                        classLoaders.remove(localClassLoaderMapping.details.uuid);
                        continue;
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top