Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 55 of 55 for pad_string (0.16 sec)

  1. RELEASE.md

    *   Fixes an integer truncation vulnerability in code using the work sharder
        API,
        ([CVE-2020-15202](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-15202))
    *   Fixes a format string vulnerability in `tf.strings.as_string`,
        ([CVE-2020-15203](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-15203))
    *   Fixes segfault raised by calling session-only ops in eager mode,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    	}
    	bld := l.MakeSymbolUpdater(s)
    	if bld.Type() == sym.SBSS {
    		bld.SetType(sym.SDATA)
    	}
    
    	p := fmt.Sprintf("%s.str", name)
    	sbld := l.CreateSymForUpdate(p, 0)
    	sbld.Addstring(value)
    	sbld.SetType(sym.SRODATA)
    
    	// Don't reset the variable's size. String variable usually has size of
    	// 2*PtrSize, but in ASAN build it can be larger due to red zone.
    	// (See issue 56175.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        ::mlir::TFL::MiniDynamicBuffer dynamic_buffer;
        auto flat = tensor.flat<::tensorflow::tstring>();
        for (int i = 0; i < flat.size(); ++i) {
          const auto& str = flat(i);
          if (!dynamic_buffer.AddString(str.c_str(), str.length()).ok()) {
            inst->emitError(
                Twine("failed to add string to dynamic buffer with error: " +
                      status.ToString()));
            return std::nullopt;
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  4. src/internal/trace/traceviewer/static/trace_viewer_full.html

    timingData[opIndex].cmd_time+=op.cmd_time;}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    For Unicode, see the
    [https://www.tensorflow.org/tutorials/representation/unicode](Working with Unicode text)
    tutorial.
    
    Examples:
    
    >>> tf.strings.as_string([3, 2])
    <tf.Tensor: shape=(2,), dtype=string, numpy=array([b'3', b'2'], dtype=object)>
    >>> tf.strings.as_string([3.1415926, 2.71828], precision=2).numpy()
    array([b'3.14', b'2.72'], dtype=object)
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top