Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 186 for Lyding (0.1 sec)

  1. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/BlockStore.java

        
        /**
         * Reads a block from this store.
         */
        <T extends BlockPayload> T read(BlockPointer pos, Class<T> payloadType);
    
        /**
         * Writes a block to this store, adding the block if required.
         */
        void write(BlockPayload block);
    
        /**
         * Adds a new block to this store. Allocates space for the block, but does not write the contents of the block
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/ComponentBinarySourcesIntegrationTest.groovy

            succeeds "verify"
            output.contains '''configured components.mylib.binaries.main.sources
    before ss1
    created ss1
    configured ss1
    after ss1
    '''
        }
    
        def "reasonable error message when adding source set with unknown type"() {
            when:
            buildFile << """
    interface UnregisteredSourceSetType extends LanguageSourceSet {}
    model {
        components {
            mylib {
                binaries {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  3. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoKotlinJvmPluginAggregationTest.groovy

     * and has no actual tests but is still included on the jacoco aggregation classpath transitively,
     * it will cause the report aggregation to fail.
     *
     * This is due to that plugin adding attributes to the legacy `default` variant which cause it to match
     * the variant selection performed by the plugin when looking for aggregation data.  Without the fix for this issue (check file signature of
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/PluginDependenciesSpecScope.kt

    import org.gradle.plugin.use.PluginDependencySpec
    
    
    /**
     * Receiver for the `plugins` block.
     *
     * This class exists for the sole purpose of marking the `plugins` block as a [GradleDsl] thus
     * hiding all members provided by the outer script scope.
     *
     * @see [PluginDependenciesSpec]
     */
    @GradleDsl
    open class PluginDependenciesSpecScope internal constructor(
        private val plugins: PluginDependenciesSpec
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DefaultPendingDependenciesVisitor.java

                if (markNotPending(key)) {
                    return PendingState.NOT_PENDING_ACTIVATING;
                } else {
                    return PendingState.NOT_PENDING;
                }
            }
    
            // Adding an optional dependency: see if we already have a hard dependency on the same module
            ModuleResolveState module = resolveState.getModule(key);
            boolean pending = module.isPending();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/java/modules-with-transform/README.adoc

    This sample shows how link:{userManualPath}/artifact_transforms.html[artifact transforms] can be utilised to turn traditional Java libraries into Java Modules by adding additional information to the corresponding Jars.
    For that, a plugin called `extra-java-module-info` is defined in the `buildSrc` folder.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/ScopedServiceRegistryTest.groovy

    import org.gradle.internal.service.scopes.ServiceScope
    import spock.lang.Specification
    
    class ScopedServiceRegistryTest extends Specification {
    
        def "fails when registering a service by adding #method in a wrong scope"() {
            given:
            def registry = scopedRegistry(Scope.Build)
    
            when:
            registration(registry)
    
            then:
            def exception = thrown(IllegalArgumentException)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/EarPlugin.java

                task.getLib().from((Callable<FileCollection>) () -> {
                    // Ensure that deploy jars are not also added into lib folder.
                    // Allows the user to get transitive dependencies for a bean artifact by adding it to both earlib and deploy but only having the file once in the ear.
                    return project.getConfigurations().getByName(EARLIB_CONFIGURATION_NAME)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 12 16:57:15 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/GroovyIncrementalCompilationIntegrationTest.groovy

            where:
            action     | oldFile                                   | newFile                                    | recompileClasses | deletedClasses
            'adding'   | 'class A { } \nclass B { } \n'            | 'class A{}\nclass B{}\nclass C{}'          | ['A', 'B', 'C']  | []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/ActionsTest.groovy

            }
    
            when:
            def set = Actions.set(b, a, c, a, b)
            set.execute(called)
    
            then:
            called == ['b', 'a', 'c']
        }
    
        def "doesn't grow when adding a doNothing"() {
            when:
            def set = Actions.set(Actions.doNothing())
    
            then:
            set.empty
        }
    
        protected Spec spec(Closure spec) {
            spec as Spec
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top