Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 197 for prebuilt (0.14 sec)

  1. src/run.bash

    # Thread count limit on NetBSD 7.
    if ulimit -T &> /dev/null; then
    	[ "$(ulimit -H -T)" = "unlimited" ] || ulimit -S -T $(ulimit -H -T)
    fi
    
    export GOPATH=/nonexist-gopath
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:02:23 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ContinuousBuildFileWatchingIntegrationTest.groovy

        def setup() {
            executer.requireIsolatedDaemons()
        }
    
        def "file system watching picks up changes causing a continuous build to rebuild"() {
            given:
            // Do not drop the VFS in the first build, since there is only one continuous build invocation.
            // FileSystemWatchingFixture automatically sets the argument for the first build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalInputsIntegrationTest.groovy

            run("copy")
            // force rebuild
            outputDir.file("modified.txt").text = "changed"
            inputDir.forceDeleteDir()
            run("copy")
            then:
            executedAndNotSkipped(":copy")
            outputDir.assertIsEmptyDir()
        }
    
        def "outputs are cleaned out on rebuild (output type: #type)"() {
            file("buildSrc").deleteDir()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 23 12:52:29 UTC 2022
    - 27.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfr/build_defs.bzl

            # copybara:uncomment(OSS version passes this to py_library) lib_rule = py_strict_library,
            deps = [
                ":gen_%s" % name,
            ],
        )
    
        # Link the register op and rebuild the binary
        gen_tfr_lib_exec = gen_op_lib_exec + "_with_op_library"
        py_strict_binary(
            name = gen_tfr_lib_exec,
            main = src,
            srcs = [src],
            python_version = "PY3",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ResolveInputChangesStep.java

            InputChangesInternal inputChanges = changes.createInputChanges();
            if (!inputChanges.isIncremental()) {
                LOGGER.info("The input changes require a full rebuild for incremental {}.", work.getDisplayName());
            }
            return inputChanges;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:50 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/deployment/internal/DeploymentRegistry.java

         */
        enum ChangeBehavior {
            /**
             * When changes are detected, wait for a deployment request before rebuilding.
             *
             * The deployment needs to call {@link Deployment#status()} to trigger a rebuild wait for changes.
             */
            BLOCK_AND_REBUILD,
    
            /**
             * When changes are detected, block the deployment until all changes are incorporated.
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 06:23:31 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  7. build/build-image/Dockerfile

    ARG KUBE_CROSS_IMAGE
    ARG KUBE_CROSS_VERSION
    
    FROM ${KUBE_CROSS_IMAGE}:${KUBE_CROSS_VERSION}
    
    # Mark this as a kube-build container
    RUN touch /kube-build-image
    
    # To run as non-root we sometimes need to rebuild go stdlib packages.
    RUN chmod -R a+rwx /usr/local/go/pkg
    
    # For running integration tests /var/run/kubernetes is required
    # and should be writable by user
    RUN mkdir /var/run/kubernetes && chmod a+rwx /var/run/kubernetes
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 05 23:26:09 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/continuous/FileEventCollector.java

            }
            if (moreChangesCount > 0) {
                logOutput(logger, "and some more changes");
            }
            if (errorWhenWatching) {
                logOutput(logger, "Error when watching files - triggering a rebuild");
            }
        }
    
        private void showIndividualChange(StyledTextOutput logger, Path path, FileWatcherRegistry.Type changeType) {
            String changeDescription;
            switch (changeType) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/UnknownIncrementalAnnotationProcessingIntegrationTest.groovy

            and:
            outputContains("Input property 'options.annotationProcessorPath' file ${file("annotation/build/libs/annotation.jar").absolutePath} has been removed")
            outputContains("The input changes require a full rebuild for incremental task ':compileJava'")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/JavaClassChangeCliIncrementalCompilationIntegrationTest.groovy

                }
            """
        }
    
        def "changing an unused non-private constant incurs full rebuild"() {
            source "class A { int foo() { return 2; } }", "class B { final static int x = 1;}"
            outputs.snapshot { run language.compileTaskName }
    
            when:
            source "class B { /* change */ }"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top