Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for string_v1 (0.32 sec)

  1. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/vhlo_custom_call.mlir

        backend_config = #vhlo.string_v1<"">,
        call_target_name = #vhlo.string_v1<"tf.ResizeBilinear">,
        called_computations = #vhlo.array_v1<[]>,
        has_side_effect = #vhlo.bool_v1<false>,
        operand_layouts = #vhlo.array_v1<[]>,
        output_operand_aliases = #vhlo.array_v1<[]>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 14 19:15:40 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/parse_example.pbtxt

                size: 1
              }
            }
            string_val: "value"
          }
        }
      }
    }
    node {
      name: "Const_1"
      op: "Const"
      attr {
        key: "dtype"
        value {
          type: DT_STRING
        }
      }
      attr {
        key: "value"
        value {
          tensor {
            dtype: DT_STRING
            tensor_shape {
            }
            string_val: "value"
          }
        }
      }
    }
    node {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/parse_example_v2.pbtxt

      attr {
        key: "value"
        value {
          tensor {
            dtype: DT_STRING
            tensor_shape {
              dim {
                size: 2
              }
            }
            string_val: "feature_key3"
            string_val: "feature_key4"
          }
        }
      }
    }
    node {
      name: "ParseExample/ParseExampleV2/dense_keys"
      op: "Const"
      attr {
        key: "dtype"
        value {
          type: DT_STRING
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. tensorflow/cc/experimental/libtf/tests/value_test.cc

    }
    
    TEST(ValueTest, TestString) {
      TaggedValue value1a("string1");
      std::string s = "string";
      s += "1";
      TaggedValue value1b(s.c_str());
      // Verify that interned the pointers are the same.
      ASSERT_EQ(value1b.s(), value1a.s());
      TaggedValue value2("string2");
      ASSERT_NE(value1a.s(), value2.s());
      ASSERT_STREQ(value1a.s(), "string1");
      ASSERT_STREQ(value2.s(), "string2");
    }
    
    TEST(Test1, TestDict) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 01 11:18:25 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/IsolatableSerializerRegistryTest.groovy

            def string1 = "foo"
            def string2 = "bar"
            Isolatable<?>[] isolatables = [isolatableFactory.isolate(string1), isolatableFactory.isolate(string2)]
    
            when:
            serialize(isolatables)
    
            and:
            Isolatable<?>[] newIsolatables = deserialize()
    
            then:
            newIsolatables[0].isolate() == string1
            newIsolatables[1].isolate() == string2
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:36 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/sourceparser/RegexBackedCSourceParserTest.groovy

      /*
    
      */  \\
      #/*
    
    
      */\u0000define \\
            /*
             */STRING_2\\
    /*
    */"123"\\
        /* */   // some extra"""
    
            then:
            macros == [macro('SOME_STRING', 'abc'), macro('STRING_2', '123')]
            macroFunctions.empty
        }
    
        def "finds object-like macro directive with no whitespace"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/single_versions.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[single-version-declarations]]
    = Declaring Versions and Ranges
    
    The simplest version declaration is a _simple string_ representing the version to use.
    Gradle supports different ways of declaring a version string:
    
    * An exact version: e.g. `1.3`, `1.3.0-beta3`, `1.0-20150201.131010-1`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:46:26 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. docs/sts/README.md

    | policy     | _string_ or _[]string_ or _comma_separated_value_ | Canned policy name to be applied for STS credentials. (Mandatory) - This can be configured to any desired value such as `roles` or `groups` by setting the environment variable `MINIO_IDENTITY_OPENID_CLAIM_NAME` |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Oct 25 00:44:15 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleKotlinDslIntegrationTest.kt

                }
                """
            )
    
            val taskName = ":writeInputToFile"
    
            build(taskName, "-PinputString=string1").assertTasksExecutedAndNotSkipped(taskName)
    
            build(taskName, "-PinputString=string1").assertTasksSkipped(taskName)
    
            build(taskName, "-PinputString=string2").assertTasksExecutedAndNotSkipped(taskName)
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  10. test/escape_reflect.go

    func bytes2(x []byte) []byte { // ERROR "leaking param: x$"
    	v := reflect.ValueOf(x) // ERROR "x escapes to heap"
    	return v.Bytes()
    }
    
    func string1(x string) string { // ERROR "leaking param: x to result ~r0 level=0"
    	v := reflect.ValueOf(x) // ERROR "x does not escape"
    	return v.String()
    }
    
    func string2(x int) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:50:24 UTC 2023
    - 13.1K bytes
    - Viewed (0)
Back to top