Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 240 for splay_ (0.11 sec)

  1. tensorflow/compiler/mlir/quantization/common/attrs_and_constraints.h

      T splat_x, splat_y;
      if (!GetSplatValue(x, splat_x) || !GetSplatValue(y, splat_y)) {
        return false;
      }
    
      return splat_x == splat_y;
    }
    
    // Clones an operation with new operands while keeping attributes.
    SmallVector<Value> CloneOpWithReplacedOperands(OpBuilder& builder,
                                                   Operation* op,
                                                   ArrayRef<Value> new_operands);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/unfold-large-splat-constant.mlir

    // RUN: tf-opt %s -unfold-large-splat-constant | FileCheck %s
    
    // CHECK-LABEL: @unfold_large_constant_splat
    func.func @unfold_large_constant_splat() -> (tensor<10x10xf32>, tensor<1000x1000xf32>) {
      %0 = arith.constant dense<0.00000e+00> : tensor<10x10xf32>
      %1 = arith.constant dense<1.00000e+00> : tensor<1000x1000xf32>
      func.return %0, %1 : tensor<10x10xf32>, tensor<1000x1000xf32>
    
      // CHECK-DAG: %cst = arith.constant dense<0.000000e+00> : tensor<10x10xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 26 23:53:32 UTC 2022
    - 781 bytes
    - Viewed (0)
  3. .github/ISSUE_TEMPLATE/tflite-in-play-services.md

    ---
    name: TensorFlow Lite in Play Services issue
    about: Use this template for issues with TensorFlow Lite in Google Play Services
    labels: 'comp:lite-in-play-services'
    
    ---
    
    **System information**
    - Android Device information (use `adb shell getprop ro.build.fingerprint`
      if possible):
    - TensorFlow Lite in Play Services SDK version (found in `build.gradle`):
    - Google Play Services version
      (`Settings` > `Apps` > `Google Play Services` > `App details`):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 15 03:35:58 UTC 2022
    - 880 bytes
    - Viewed (0)
  4. 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)
  5. samples/bookinfo/src/reviews/reviews-application/src/main/java/application/rest/LibertyRestEndpoint.java

          }
        	result += "},";
    
        	// reviewer 2:
        	result += "{";
        	result += "  \"reviewer\": \"Reviewer2\",";
        	result += "  \"text\": \"Absolutely fun and entertaining. The play lacks thematic depth when compared to other plays by Shakespeare.\"";
          if (ratings_enabled) {
            if (starsReviewer2 != -1) {
              result += ", \"rating\": {\"stars\": " + starsReviewer2 + ", \"color\": \"" + star_color + "\"}";
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 15 22:25:32 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  6. src/go/doc/testdata/examples/multiple.golden

    	}{
    		a: "A",
    		b: 1,
    	}
    	fmt.Print(v)
    }
    -- KeyValue.Output --
    a: "A", b: 1
    -- KeyValueImport.Play --
    package main
    
    import (
    	"flag"
    	"fmt"
    )
    
    func main() {
    	f := flag.Flag{
    		Name: "play",
    	}
    	fmt.Print(f)
    }
    -- KeyValueImport.Output --
    Name: "play"
    -- KeyValueTopDecl.Play --
    package main
    
    import (
    	"fmt"
    )
    
    var keyValueTopDecl = struct {
    	a string
    	b int
    }{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 16:17:51 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  7. test-site/test/ApplicationTest.java

    import com.fasterxml.jackson.databind.JsonNode;
    import org.junit.*;
    
    import play.mvc.*;
    import play.test.*;
    import play.data.DynamicForm;
    import play.data.validation.ValidationError;
    import play.data.validation.Constraints.RequiredValidator;
    import play.i18n.Lang;
    import play.libs.F;
    import play.libs.F.*;
    import play.twirl.api.Content;
    
    import static play.test.Helpers.*;
    import static org.fest.assertions.Assertions.*;
    
    
    /**
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.1K bytes
    - Viewed (0)
  8. test-site/test/IntegrationTest.java

    import org.junit.*;
    
    import play.mvc.*;
    import play.test.*;
    import play.libs.F.*;
    
    import static play.test.Helpers.*;
    import static org.fest.assertions.Assertions.*;
    
    import static org.fluentlenium.core.filter.FilterConstructor.*;
    
    public class IntegrationTest {
    
        /**
         * add your integration test here
         * in this example we just check if the welcome page is being shown
         */
        @Test
        public void test() {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 773 bytes
    - Viewed (0)
  9. 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)
  10. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        // Write the mocking script.
        peer.sendFrame().settings(Settings())
        peer.acceptFrame() // ACK
        peer.sendFrame().ping(false, 2, 3)
        peer.acceptFrame() // PING
        peer.play()
    
        // Play it back.
        connect(peer)
    
        // Verify the peer received what was expected.
        val ping = peer.takeFrame()
        assertThat(ping.type).isEqualTo(Http2.TYPE_PING)
        assertThat(ping.streamId).isEqualTo(0)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
Back to top