Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 710 for WORK (0.04 sec)

  1. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_optimizations.adoc

    An *incremental build* is a build that avoids running tasks whose inputs have not changed since the previous build.
    Re-executing such tasks is unnecessary if they would only re-produce the same output.
    
    For incremental builds to work, tasks must define their inputs and outputs.
    Gradle will determine whether the input or outputs have changed at build time.
    If they have changed, Gradle will execute the task.
    Otherwise, it will skip execution.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/functional/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.implementation-java")
        id("gradlebuild.publish-public-libraries")
    }
    
    description = "Tools to work with functional code, including data structures"
    
    dependencies {
        api(libs.jsr305)
    
        implementation(projects.stdlibJavaExtensions)
        implementation(libs.guava)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 314 bytes
    - Viewed (0)
  3. hack/tools/.gitignore

    /vendor/
    # avoid constant churn as this file is not kept in sync with the root
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 17:52:36 UTC 2024
    - 91 bytes
    - Viewed (0)
  4. build-logic/packaging/src/main/kotlin/gradlebuild/packaging/transforms/CopyPublicApiClassesTransform.kt

    import org.gradle.api.file.FileSystemLocation
    import org.gradle.api.provider.Provider
    import org.gradle.api.tasks.Classpath
    import org.gradle.work.DisableCachingByDefault
    import java.util.zip.ZipEntry
    import java.util.zip.ZipFile
    
    
    // TODO This should work via filtering classes dirs, but for that we need to be able to set a default attribute
    //      on classes directories -- see https://github.com/gradle/gradle/issues/29319
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:57 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/files/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
        id("gradlebuild.publish-public-libraries")
    }
    
    description = "Base tools to work with files"
    
    gradlebuildJava.usedInWorkers()
    
    dependencies {
        api(projects.stdlibJavaExtensions)
    
        api(libs.jsr305)
    
        implementation(libs.guava)
        implementation(libs.slf4jApi)
    
        testImplementation(project(":native"))
        testImplementation(project(":base-services")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 525 bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart1IntegrationTest.groovy

        def "supports recursive types"() {
            groovyTaskSource << """
                import org.gradle.api.*
                import org.gradle.api.tasks.*
                import org.gradle.work.*;
    
                @DisableCachingByDefault(because = "test task")
                class MyTask extends DefaultTask {
                    @Nested
                    Tree tree
    
                    public static class Tree {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/service/scopes/CoreCrossBuildSessionServices.java

    import org.gradle.internal.service.Provides;
    import org.gradle.internal.service.ServiceRegistration;
    import org.gradle.internal.service.ServiceRegistrationProvider;
    import org.gradle.internal.work.DefaultWorkerLeaseService;
    import org.gradle.internal.work.WorkerLeaseService;
    
    public class CoreCrossBuildSessionServices implements ServiceRegistrationProvider {
        void configure(ServiceRegistration registration) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. internal/ioutil/ioutil.go

    // channel so that the work function can attempt to exit gracefully.
    // Multiple calls to Run will run independently of each other.
    func (d *DeadlineWorker) Run(work func() error) error {
    	_, err := WithDeadline[struct{}](context.Background(), d.timeout, func(ctx context.Context) (struct{}, error) {
    		return struct{}{}, work()
    	})
    	return err
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. common/scripts/setup_env.sh

    TARGET_OUT="${TARGET_OUT:-$(pwd)/out/${TARGET_OS}_${TARGET_ARCH}}"
    TARGET_OUT_LINUX="${TARGET_OUT_LINUX:-$(pwd)/out/linux_${TARGET_ARCH}}"
    
    CONTAINER_TARGET_OUT="${CONTAINER_TARGET_OUT:-/work/out/${TARGET_OS}_${TARGET_ARCH}}"
    CONTAINER_TARGET_OUT_LINUX="${CONTAINER_TARGET_OUT_LINUX:-/work/out/linux_${TARGET_ARCH}}"
    
    IMG="${IMG:-${TOOLS_REGISTRY_PROVIDER}/${PROJECT_ID}/${IMAGE_NAME}:${IMAGE_VERSION}}"
    
    CONTAINER_CLI="${CONTAINER_CLI:-docker}"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. doc/initial/1-intro.md

    `hello` `world`.
    -->
    
    <style>
      main ul li { margin: 0.5em 0; }
    </style>
    
    ## DRAFT RELEASE NOTES — Introduction to Go 1.N {#introduction}
    
    **Go 1.N is not yet released. These are work-in-progress release notes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:25:26 UTC 2024
    - 406 bytes
    - Viewed (0)
Back to top