Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,556 for Sall (0.04 sec)

  1. platforms/core-configuration/model-groovy/src/integTest/groovy/org/gradle/model/dsl/internal/transform/NestedModelRuleDslDetectionIntegrationTest.groovy

            buildFile << '''
    class UnmanagedThing {
        def getSomeProp() {
            return this
        }
        def conf(Closure cl) {
            cl.delegate = this
            cl.call()
        }
    }
    
    class MyPlugin extends RuleSource {
        @Model
        UnmanagedThing thing() { return new UnmanagedThing() }
    }
    apply plugin: MyPlugin
    
    model {
        thing {
            conf {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/ResourceCleaningCompilationTask.java

        }
    
        @Override
        public void setLocale(Locale locale) {
            delegate.setLocale(locale);
        }
    
        @Override
        public Boolean call() {
            try {
                return delegate.call();
            } finally {
                CompositeStoppable.stoppable(fileManager).stop();
                cleanupZipCache();
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/tasks/inputNormalizationPropertiesFiles/kotlin/build.gradle.kts

                ignoreProperty("timestamp")
            }
        }
    }
    // end::ignore-property-selected[]
    
    // tag::ignore-property-all[]
    normalization {
        runtimeClasspath {
            properties {
                ignoreProperty("timestamp")
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 417 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/tasks/addRules/groovy/build.gradle

    // tag::all[]
    // tag::task-rule[]
    tasks.addRule("Pattern: ping<ID>") { String taskName ->
    
        if (taskName.startsWith("ping")) {
            task(taskName) {
                doLast {
                    println "Pinging: " + (taskName - 'ping')
                }
            }
        }
    }
    // end::task-rule[]
    
    tasks.register('groupPing') {
        dependsOn 'pingServer1', 'pingServer2'
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 376 bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/configuration/AllProperties.java

    import java.util.Map;
    
    /**
     * An immutable view of all properties available for build options, calculated from command-line options, the environment and the various
     * properties files.
     */
    public interface AllProperties {
        /**
         * Returns the system properties defined as command-line options.
         */
        Map<String, String> getRequestedSystemProperties();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/AsyncCacheAccess.java

         */
        void enqueue(Runnable task);
    
        /**
         * Runs the given action, blocking until the result is available.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-declaringCapabilities/groovy/build.gradle

    }
    // end::dependencies[]
    
    // tag::use_highest_asm[]
    configurations.all {
        resolutionStrategy.capabilitiesResolution.withCapability('org.ow2.asm:asm') {
            selectHighestVersion()
        }
    }
    // end::use_highest_asm[]
    
    // tag::declare_capability[]
    dependencies {
        // Activate the "LoggingCapability" rule
        components.all(LoggingCapability)
    }
    
    @CompileStatic
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/bestPractices/taskDefinition/kotlin/build.gradle.kts

        outputDir = layout.buildDirectory.dir("docs")
    }
    
    tasks.register("allDocs") {
        group = JavaBasePlugin.DOCUMENTATION_GROUP
        description = "Generates all documentation for this project."
        dependsOn("generateHtmlDocs")
    
        doLast {
            logger.quiet("Generating all documentation...")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 538 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/bestPractices/taskDefinition/groovy/build.gradle

        outputDir = layout.buildDirectory.dir('docs')
    }
    
    tasks.register('allDocs') {
        group = JavaBasePlugin.DOCUMENTATION_GROUP
        description = 'Generates all documentation for this project.'
        dependsOn generateHtmlDocs
    
        doLast {
            logger.quiet('Generating all documentation...')
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 558 bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/initialization/buildsrc/BuildSourceBuilder.java

            if (buildSrcBuild == null) {
                return ClassPath.EMPTY;
            }
    
            return buildOperationRunner.call(new CallableBuildOperation<ClassPath>() {
                @Override
                public ClassPath call(BuildOperationContext context) {
                    ClassPath classPath = buildBuildSrc(buildSrcBuild);
                    context.setResult(BUILD_BUILDSRC_RESULT);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 14:54:57 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top