Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for createSpec (0.25 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/tasks/util/PatternSet.java

                && (includeSpecs == null || includeSpecs.isEmpty())
                && (excludeSpecs == null || excludeSpecs.isEmpty());
        }
    
        public Spec<FileTreeElement> getAsSpec() {
            return patternSpecFactory.createSpec(this);
        }
    
        public Spec<FileTreeElement> getAsIncludeSpec() {
            return patternSpecFactory.createIncludeSpec(this);
        }
    
        public Spec<FileTreeElement> getAsExcludeSpec() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 21:33:45 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/GeneratePrecompiledScriptPluginAccessors.kt

            pluginRequestCollectorFor(plugin).run {
    
                loadClass(plugin.compiledScriptTypeName)
                    .getConstructor(PluginDependenciesSpec::class.java)
                    .newInstance(createSpec(1))
    
                pluginRequests
            }
    
        private
        fun pluginRequestCollectorFor(plugin: PrecompiledScriptPlugin) =
            PluginRequestCollector(scriptSourceFor(plugin))
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  3. platforms/software/maven/src/testFixtures/groovy/org/gradle/integtests/fixtures/publish/maven/AbstractMavenPublishIntegTest.groovy

                this.test = test
                if (dependencyNotation instanceof MavenModule) {
                    module = dependencyNotation
                }
                createSpecs()
            }
    
            MavenModule getModule() {
                super.module
            }
    
            void validate() {
                singleValidation(false, withoutModuleMetadataSpec)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ArtifactResolutionExpectationSpec.groovy

         * @param fileNames
         */
        void expectFiles(List<String> fileNames) {
            always {
                expectFiles(fileNames)
            }
        }
    
        void createSpecs() {
            withModuleMetadataSpec = new SingleArtifactResolutionResultSpec<T>(module)
            withoutModuleMetadataSpec = new SingleArtifactResolutionResultSpec<T>(module)
        }
    
        abstract T getModule()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. platforms/software/ivy/src/testFixtures/groovy/org/gradle/api/publish/ivy/AbstractIvyPublishIntegTest.groovy

            IvyArtifactResolutionExpectation(Object dependencyNotation) {
                if (dependencyNotation instanceof IvyModule) {
                    module = dependencyNotation
                }
                createSpecs()
            }
    
            IvyModule getModule() {
               super.module
            }
    
            void validate() {
                singleValidation(true, withModuleMetadataSpec)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 7.6K bytes
    - Viewed (0)
Back to top