Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for rerun (0.03 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/BasicProjectConfigurationProgressCrossVersionSpec.groovy

            withConnection {
                ProjectConnection connection ->
                    connection.newBuild()
                        .addProgressListener(events, [OperationType.TEST] as Set)
                        .withArguments("--rerun-tasks")
                        .forTasks("build")
                        .run()
            }
    
            then:
            events.tests.size() == events.operations.size()
            if (targetDist.runsBuildSrcTests) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerDaemonProcessFailureIntegrationTest.groovy

            """
    
            when:
            succeeds("compileJava")
    
            then:
            pidFile().exists()
            def pid1 = pidFile().text.strip() as long
            kill(pid1)
    
            when:
            args "--rerun-tasks"
            succeeds("compileJava")
    
            then:
            pidFile().exists()
            def pid2 = pidFile().text.strip() as long
            pid2 != pid1
    
            and:
            outputContainsKilledWorkerWarning()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 18:43:14 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. hack/ginkgo-e2e.sh

    # a terminal. That is the right choice for all Prow jobs (Spyglass doesn't
    # render them properly).
    GINKGO_NO_COLOR=${GINKGO_NO_COLOR:-$(if [ -t 2 ]; then echo n; else echo y; fi)}
    
    # If 'y', will rerun failed tests once to give them a second chance.
    GINKGO_TOLERATE_FLAKES=${GINKGO_TOLERATE_FLAKES:-n}
    
    # If set, the command executed will be:
    # - `dlv exec` if set to "delve"
    # - `gdb` if set to "gdb"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 13:25:50 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/device_target.h

                                   const KernelSpecs::Signature& signature,
                                   const ScaleConstraintType constraint);
    
      // Adds the kernel with the name. Retrun an existing one if it has been
      // added before.
      KernelSpecs& RegisterKernel(llvm::StringRef kernel) { return specs_[kernel]; }
    
      // For "mulmat->add" type of kernels, convert the scales of all the ports to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 08 10:41:08 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top