Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 131 for splay_ (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/core-plugins/play_plugin.adoc

    // limitations under the License.
    
    [[play_plugin]]
    = Building Play applications
    
    [CAUTION]
    ====
    Play web application support was deprecated in Gradle 5 and replaced by an external Play plugin in Gradle 6.
    Please use the new https://gradle.github.io/playframework[Gradle Play Plugin], available from the plugin portal, instead.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 937 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.play.JvmClasses.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/dsl/org.gradle.play.PublicAssets.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. src/go/doc/testdata/examples/generic_constraints.golden

    -- .Play --
    package main
    
    import (
    	"fmt"
    )
    
    func main() {
    	fmt.Println("hello")
    }
    -- Generic.Play --
    package main
    
    import (
    	"fmt"
    	"time"
    )
    
    type C1 interface {
    	string | int
    }
    
    type C2 interface {
    	M(time.Time)
    }
    
    type G[T C1] int
    
    func g[T C2](x T) {}
    
    type Tm int
    
    func (Tm) M(time.Time) {}
    
    func main() {
    	var x G[string]
    	g(Tm(3))
    	fmt.Println(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 23:13:45 UTC 2022
    - 356 bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/go/doc/testdata/examples/iota.golden

    -- .Play --
    package main
    
    import ()
    
    const (
    	a = iota
    	b
    )
    
    const d = 4
    
    func main() {
    	_ = b
    	_ = d
    }
    -- 2.Play --
    package main
    
    import ()
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 23:13:45 UTC 2022
    - 158 bytes
    - Viewed (0)
  8. src/go/doc/testdata/examples/values.golden

    -- A.Play --
    package main
    
    import ()
    
    func f() (int, int) {
    	return 1, 2
    }
    
    var a, b = f()
    
    func main() {
    	_ = a
    }
    -- B.Play --
    package main
    
    import ()
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 23:13:45 UTC 2022
    - 169 bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top