Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for splay_ (0.18 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/PlayPluginSmokeTest.groovy

        @Requires(UnitTestPreconditions.Jdk11OrEarlier)
        @ToBeFixedForConfigurationCache(because = "unsupported Configuration field")
        def 'build basic Play project'() {
            given:
            useSample("play-example")
            buildFile << """
                plugins {
                    id 'org.gradle.playframework' version '${TestedVersions.playframework}'
                }
    
                repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/play-example/test/ApplicationSpec.scala

    import org.apache.commons.lang.StringUtils
    import org.junit.runner.RunWith
    import org.scalatest.junit.JUnitRunner
    import org.scalatestplus.play.PlaySpec
    import org.scalatestplus.play.guice.GuiceOneAppPerSuite
    import play.api.http.Status
    import play.api.test.FakeRequest
    import play.api.test.Helpers._
    
    @RunWith(classOf[JUnitRunner])
    class ApplicationSpec extends PlaySpec with GuiceOneAppPerSuite {
    
      "Application" should {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/play/integtest/external/PlayExternalContinuousBuildIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.play.integtest.external
    
    import org.gradle.play.integtest.fixtures.external.AbstractMultiVersionPlayExternalContinuousBuildIntegrationTest
    import org.gradle.play.integtest.fixtures.external.RunningPlayApp
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/groovy/org/gradle/play/integtest/fixtures/external/AbstractMultiVersionPlayExternalContinuousBuildIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.play.integtest.fixtures.external
    
    import org.gradle.api.JavaVersion
    import org.gradle.integtests.fixtures.TargetCoverage
    import org.gradle.integtests.fixtures.compatibility.MultiVersionTest
    import org.gradle.play.integtest.fixtures.PlayCoverage
    import org.gradle.util.internal.VersionNumber
    import org.junit.Assume
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/unfold_splat_constant_pass.cc

    #include "xla/mlir_hlo/mhlo/IR/hlo_ops.h"
    
    namespace mlir {
    namespace odml {
    namespace {
    
    #define DEBUG_TYPE "unfold-splat-constant-pass"
    
    #define GEN_PASS_DEF_UNFOLDSPLATCONSTANTPASS
    #include "tensorflow/compiler/mlir/lite/stablehlo/transforms/passes.h.inc"
    
    // Undo the MHLO::BroadcastInDimOp folding pattern on splat tensor.
    // TODO(b/295966255): Remove this pass after moving MHLO folders to a separate
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/play-example/app/controllers/Application.scala

    package controllers
    
    import javax.inject._
    import play.api._
    import play.api.mvc._
    
    import org.apache.commons.lang.StringUtils
    
    @Singleton
    class Application @Inject() extends InjectedController {
    
      def index = Action {
        Ok(views.html.index(StringUtils.trim("   Your new application is ready.   ")))
      }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 310 bytes
    - Viewed (0)
  7. testing/smoke-test/src/smokeTest/resources/org/gradle/play/integtest/fixtures/external/basicplayapp/app/controllers/Application.scala.old

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package controllers
    
    import play.api._
    import play.api.mvc._
    
    object Application extends Controller {
    
      def index = Action {
        Ok(views.html.index("Your new application is ready."))
      }
    
      def shutdown = Action {
        System.exit(0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 876 bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/groovy/org/gradle/play/integtest/fixtures/external/RunningPlayApp.groovy

        }
    
    
        static int regexParseHttpPortStandalone(output, int occurrence) {
            return parseHttpPort(output, /(?:play|Server) - Listening for HTTP on .*:([0-9]+)/, occurrence)
        }
    
    
        static int regexParseHttpPortFromGradle(output, int occurrence) {
            return parseHttpPort(output, /Running Play App \(:.*\) at http:\/\/.*:([0-9]+)\//, occurrence)
        }
    
        static int parseHttpPort(output, regex, int occurrence) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/unfold_large_splat_constant.cc

    // The threshold of constant bits to be unfolded (1Mb). If there is a splat
    // constant with size equal or greater to this threshold, then it will be
    // unfolded back to a regular `tfl.fill` operation.
    constexpr int64_t kConstantSizeThresholdInBits = 1e+6;
    
    // Pass which will replace large splat constant tensors to `tfl.Fill` op to
    // reduce the size of the generated flatbuffer model size.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/resources/org/gradle/play/integtest/fixtures/external/shared/conf/logback.xml

    <configuration>
        
      <conversionRule conversionWord="coloredLevel" converterClass="play.api.Logger$ColoredLevel" />
    
      <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
        <encoder>
          <pattern>%coloredLevel - %logger - %message%n%xException</pattern>
        </encoder>
      </appender>
    
      <!--
        The logger name is typically the Java/Scala package name.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 637 bytes
    - Viewed (0)
Back to top