Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 186 for Lyding (0.27 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/PolymorphicDomainObjectContainer.java

         */
        <U extends T> U create(String name, Class<U> type) throws InvalidUserDataException;
    
        /**
         * Looks for an item with the given name and type, creating and adding it to this container if it does not exist.
         *
         * @param name the name of the domain object to be created
         * @param type the type of the domain object to be created
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 27 15:00:20 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/collections.adoc

    4. <<nameddomainobjectcontainer,`NamedDomainObjectContainer<T>`>>: A container for managing objects of type T, where each object has a unique name. This container provides methods for adding, removing, and querying objects by name.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionPerformanceResults.groovy

            }
            return displayName
        }
    
        Collection<BaselineVersion> getBaselineVersions() {
            return baselineVersions.values()
        }
    
        /**
         * Locates the given baseline version, adding it if not present.
         */
        BaselineVersion baseline(String version) {
            def baselineVersion = baselineVersions[version]
            if (baselineVersion == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyNotationIntegrationSpec.groovy

                  conf configurations.other
                }
    
            """
    
            when:
            fails "dependencies", '--configuration', 'conf'
    
            then:
            result.hasErrorOutput("Adding a Configuration as a dependency is no longer allowed as of Gradle 8.0.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:17:32 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/PublicationInternal.java

         * publication is about to be published, they will simply be omitted from the file transfer.
         *
         * <p>Currently, the only known use case for derived artifacts is adding signature files
         * created by the signing plugin.
         *
         * @param originalArtifact The original artifact to create a derived artifact for.
         * @param file The file to be used for publishing the derived artifact.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/AbstractDaemonLifecycleSpec.groovy

        int periodicCheckInterval = 5
        //normally, state transition timeout must be lower than the daemon timeout
        //so that the daemon does not timeout in the middle of the state verification
        //effectively hiding some bugs or making tests fail
        int stateTransitionTimeout = daemonIdleTimeout / 2
    
        final List<GradleHandle> builds = []
        final List<GradleHandle> foregroundDaemons = []
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:32:55 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ModuleSelectorsTest.groovy

            when:
            def iterator = selectors.iterator()
    
            then:
            iterator.next() == selector1
            iterator.next() == selector2
            !iterator.hasNext()
        }
    
        def 'when adding 2 selectors and one dynamic, non-dynamic is first'() {
            given:
            def selector1 = dynamicSelector()
            def selector2 = Mock(ResolvableSelectorState)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/initialization/ProjectPropertySettingBuildLoader.java

            fileResourceListener.fileObserved(projectPropertiesFile);
            if (projectPropertiesFile.isFile()) {
                Properties projectProperties = GUtil.loadProperties(projectPropertiesFile);
                LOGGER.debug("Adding project properties (if not overwritten by user properties): {}",
                    projectProperties.keySet());
                configurePropertiesOf(project, applicator, uncheckedCast(projectProperties));
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/caching_android_projects.adoc

    https://blog.jetbrains.com/kotlin/2018/01/kotlin-1-2-20-is-out/[You can opt into it] (which is recommended) by adding the following to build scripts:
    
    ====
    include::sample[dir="snippets/buildCache/caching-android-projects/kotlin",files="build.gradle.kts[tags=cacheKapt]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 12:54:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleKotlinDslReferencePlugin.java

            if (commitId.isBlank() || commitId.toLowerCase().contains("unknown")) {
                // we can't figure out the commit ID (probably this is a source distribution build), let's skip adding source links
                return;
            }
    
            extension.getSourceRoots().getFiles()
                .forEach(
                    file -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 14:00:14 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top