Search Options

Results per page
Sort
Preferred Languages
Advance

Results 291 - 300 of 367 for Sall (0.1 sec)

  1. platforms/core-configuration/declarative-dsl-tooling-models/src/main/kotlin/org/gradle/declarative/dsl/schema/ConfigureAccessor.kt

        }
    
        interface Custom : ConfigureAccessor {
            val customAccessorIdentifier: String
        }
    
        interface ConfiguringLambdaArgument : ConfigureAccessor
    
        // TODO: configure all elements by addition key?
        // TODO: Do we want to support configuring external objects?
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/rule/describe/ModelRuleDescriptor.java

     */
    
    package org.gradle.model.internal.core.rule.describe;
    
    import com.google.errorprone.annotations.FormatMethod;
    import com.google.errorprone.annotations.FormatString;
    
    /**
     * Describes a method rule.
     * All implementations of this class are expected to implement the equals and hashCode method
     */
    public interface ModelRuleDescriptor {
        /**
         * This method is expected to be idempotent.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 12:38:02 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/GlobalCache.java

    import java.io.File;
    import java.util.List;
    
    /**
     * Represents a location for global Gradle caches.
     *
     * The global cache is managed by Gradle, so we Gradle needs to take care
     * of informing all the infrastructure about changes to it.
     */
    @ServiceScope(Scope.Global.class)
    public interface GlobalCache {
        /**
         * Returns the root directories of the global cache.
         */
        List<File> getGlobalCacheRoots();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/GrammarToTree.kt

                        }
                        else -> tree.parsingError(node, "Parsing failure, unexpected token type in call expression: $tokenType")
                    }
                }
    
                process(child)
            }
    
            if (name == null) tree.parsingError(node, "Name missing from function call!")
    
            return elementOrFailure {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleKotlinDslRegressionsTest.kt

            withBuildScript("""
                plugins {
                    id("java")
                }
                ${mavenCentralRepository(KOTLIN)}
                dependencies {
                   components.all(FixOksocialOutput::class.java)
                   implementation("com.baulsupp:oksocial-output:4.19.0")
                }
                open class FixOksocialOutput: ComponentMetadataRule {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 07:57:29 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskFailureIntegrationTest.groovy

            failure.assertHasCause("Unable to determine constructor argument #2: missing parameter of type int, or no service of type int")
        }
    
        def "fails to create custom task if all constructor arguments missing"() {
            given:
            buildFile << CUSTOM_TASK_WITH_CONSTRUCTOR_ARGS
            buildFile << "tasks.register('myTask', CustomTask)"
    
            when:
            fails 'myTask'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromGroovyDslIntegrationTest.groovy

            "gradle.taskGraph.addTaskExecutionGraphListener(new MyListener())"    | 4
        }
    
        def "checking cross-project model access in task graph call `#statement` with #tasksToRun, should succeed: #shouldSucceed"() {
            createDirs("b")
            settingsFile << """
                include("b")
            """
            file("build.gradle") << """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/Execute3InstanceInstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                [fromString(), "command.execute(['FOOBAR=foobar'] as String[], null)", "", "foobar"],
                [fromString(), "command.execute(['FOOBAR=foobar'] as List, null)", "", "foobar"],
                // null-safe call
                [fromGroovyString(), "command?.execute(null, null)", "", ""],
            ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/GradleWorkerMain.java

            Callable<Void> main = workerClass.getConstructor(DataInputStream.class).newInstance(instr);
            main.call();
        }
    
        public static void main(String[] args) {
            try {
                new GradleWorkerMain().run();
                System.exit(0);
            } catch (Throwable throwable) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClientGlobalServices.java

    import org.gradle.internal.service.ServiceRegistrationProvider;
    import org.gradle.internal.service.ServiceRegistry;
    import org.gradle.tooling.internal.provider.action.BuildActionSerializer;
    
    /**
     * Global services shared by all Gradle daemon clients in a given process.
     */
    public class DaemonClientGlobalServices implements ServiceRegistrationProvider {
        @Provides
        Serializer<BuildAction> createBuildActionSerializer() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top