Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for IsString (0.11 sec)

  1. doc/go1.17_spec.html

    </p>
    
    <h3 id="String_types">String types</h3>
    
    <p>
    A <i>string type</i> represents the set of string values.
    A string value is a (possibly empty) sequence of bytes.
    The number of bytes is called the length of the string and is never negative.
    Strings are immutable: once created,
    it is impossible to change the contents of a string.
    The predeclared string type is <code>string</code>;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      std::map<std::string, std::set<std::string>> failed_flex_ops_;
      std::map<std::string, std::set<std::string>> failed_custom_ops_;
    
      // Ops to provide warning messages.
      std::map<std::string, std::set<std::string>> custom_ops_;
      std::map<std::string, std::set<std::string>> flex_ops_;
    
      // Resource ops to provide warning messages.
      std::map<std::string, std::set<std::string>> resource_ops_;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    on.NullDescription appendValueList(String, String, String, T...) - Method in class org.hamcrest.BaseDescription appendValueList(String, String, String, Iterable<T>) - Method in class org.hamcrest.BaseDescription appendValueList(String, String, String, T...) - Method in interface org.hamcrest.Description Appends a list of values to the description. appendValueList(String, String, String, Iterable<T>) - Method in interface org.hamcrest.Description Appends a list of values to the description. appendValueList(String,...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 236.8K bytes
    - Viewed (0)
  4. tensorflow/c/c_api.cc

      // Convert from TF_Output and TF_Tensor to a string and Tensor.
      std::vector<std::pair<string, Tensor>> input_pairs(ninputs);
      if (!TF_Run_Inputs(input_values, &input_pairs, status)) return;
      for (int i = 0; i < ninputs; ++i) {
        input_pairs[i].first = OutputName(inputs[i]);
      }
    
      // Convert from TF_Output to string names.
      std::vector<string> output_names(noutputs);
      for (int i = 0; i < noutputs; ++i) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      if (parser.parseColon()) {
        return nullptr;
      }
    
      std::string data;
      if (parser.parseString(&data)) {
        return nullptr;
      }
      if (data.size() < 2 || data.substr(0, 2) != "0x") {
        parser.emitError(parser.getNameLoc(), "Hex string doesn't start with `0x`");
        return nullptr;
      }
    
      std::string bytes_data = absl::HexStringToBytes(data.substr(2));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    }
    
    var covCounterDataStartOff, covCounterDataLen uint64
    
    var zeros [512]byte
    
    var (
    	strdata  = make(map[string]string)
    	strnames []string
    )
    
    func addstrdata1(ctxt *Link, arg string) {
    	eq := strings.Index(arg, "=")
    	dot := strings.LastIndex(arg[:eq+1], ".")
    	if eq < 0 || dot < 0 {
    		Exitf("-X flag requires argument of the form importpath.name=value")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  7. src/reflect/all_test.go

    	{struct{ x ([]int8) }{}, "[]int8"},
    	{struct{ x (map[string]int32) }{}, "map[string]int32"},
    	{struct{ x (chan<- string) }{}, "chan<- string"},
    	{struct{ x (chan<- chan string) }{}, "chan<- chan string"},
    	{struct{ x (chan<- <-chan string) }{}, "chan<- <-chan string"},
    	{struct{ x (<-chan <-chan string) }{}, "<-chan <-chan string"},
    	{struct{ x (chan (<-chan string)) }{}, "chan (<-chan string)"},
    	{struct {
    		x struct {
    			c chan *int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top