Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for rerun (0.04 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFeatureFlagsIntegrationTest.groovy

            then:
            configurationCache.assertStateStored()
            outputContains("Groovy compilation avoidance is an incubating feature")
    
            when:
            configurationCacheRun("compileGroovy", "--rerun-tasks")
    
            then:
            configurationCache.assertStateLoaded()
            outputContains("Groovy compilation avoidance is an incubating feature")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/WorkNodeCodec.kt

            // Not all entry nodes are always scheduled.
            // In particular, it happens when the entry node is a task of the included plugin build that runs as part of building the plugin.
            // Such tasks do not rerun when configuration cache is re-used, even if specified on the command line.
            // Not restoring them as entry points doesn't affect the resulting execution plan.
            val scheduledEntryNodeIds = mutableListOf<Int>()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIntegrationTest.groovy

            where:
            task           | options
            "help"         | []
            "properties"   | []
            "dependencies" | []
            "help"         | ["--task", "help"]
            "help"         | ["--rerun"]
        }
    
        def "can store task selection success/failure for :help --task"() {
            def configurationCache = newConfigurationCacheFixture()
            buildFile.text = """
            task aTask
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

        layout_optimization_options.skip_fold_transpose_in_ops = true;
        mlir::TF::CreateLayoutOptimizationPipeline(
            pass_manager->nest<mlir::func::FuncOp>(), layout_optimization_options);
        // Prepare for TFLite dialect, rerun canonicalization, and then legalize to
        // the TFLite dialect.
        pass_manager->addNestedPass<mlir::func::FuncOp>(
            mlir::TFL::CreatePrepareTFPass(pass_config.unfold_batch_matmul,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

     *       than MEDIUM. And so on. These constants are set to conservative values, but even so, if
     *       there is ever any doubt, they can all be increased in one spot to rerun tests on slower
     *       platforms.
     *   <li>All threads generated must be joined inside each test case method (or {@code fail} to do
     *       so) before returning from the method. The {@code joinPool} method can be used to do this
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                        }
                    }
                }
            """
        }
    
        def "incremental transform is rerun when output is #action between builds"() {
            given:
            buildFile << declareAttributes() << multiProjectWithJarSizeTransform(incremental: true) << withClassesSizeTransform()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
Back to top