Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 240 for splay_ (0.3 sec)

  1. 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)
  2. src/go/doc/testdata/examples/inspect_signature.golden

    -- .Play --
    package main
    
    import (
    	"bytes"
    	"io"
    )
    
    func getReader() io.Reader { return nil }
    
    func do(b bytes.Reader) {}
    
    func main() {
    	getReader()
    	do()
    }
    -- Ignored.Play --
    package main
    
    import ()
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 16:17:51 UTC 2022
    - 220 bytes
    - Viewed (0)
  3. src/internal/bytealg/index_ppc64x.s

    	BGE    index2to16   // Remaining string 2<=len<=16
    	MOVD   $0xff00, R21 // Set up mask for upcoming loop
    	MTVSRD R21, V25     // Move mask to Vreg
    	VSPLTH $3, V25, V31 // Splat mask
    	VSPLTH $0, V0, V1   // Splat 1st two bytes of sep
    	VSPLTB $2, V0, V8   // Splat 3rd byte of sep
    
    	// Loop to process 3 byte separator.
    	// string[0:16] is in V2
    	// string[2:18] is in V3
    	// sep[0:2] splatted in V1
    	// sec[3] splatted in v8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 31.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top