Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for Haberman (0.63 sec)

  1. conformance/failure_list_python_cpp.txt

    # Python/C++ implementation right now.  These should be fixed.
    #
    # By listing them here we can keep tabs on which ones are failing and be sure
    # that we don't introduce regressions in other tests.
    #
    # TODO(haberman): insert links to corresponding bugs tracking the issue.
    Plain Text
    - Registered: 2023-03-15 06:16
    - Last Modified: 2020-06-15 18:48
    - 409 bytes
    - Viewed (0)
  2. conformance/failure_list_cpp.txt

    # implementation right now.  These should be fixed.
    #
    # By listing them here we can keep tabs on which ones are failing and be sure
    # that we don't introduce regressions in other tests.
    #
    # TODO(haberman): insert links to corresponding bugs tracking the issue.
    # Should we use GitHub issues or the Google-internal bug tracker?
    
    Recommended.FieldMaskNumbersDontRoundTrip.JsonOutput
    Recommended.FieldMaskPathsDontRoundTrip.JsonOutput
    Plain Text
    - Registered: 2023-03-15 06:16
    - Last Modified: 2020-05-11 07:12
    - 2K bytes
    - Viewed (0)
  3. js/gulpfile.js

        `--entry_point=${exportsFile}`, `> ${outputFile}`
      ].join(' ');
    }
    
    gulp.task('dist', gulp.series(['genproto_wellknowntypes'], function(cb) {
      // TODO(haberman): minify this more aggressively.
      // Will require proper externs/exports.
      exec(
          getClosureCompilerCommand('commonjs/export.js', 'google-protobuf.js'),
          function(err, stdout, stderr) {
    JavaScript
    - Registered: 2023-03-15 06:16
    - Last Modified: 2021-08-20 22:05
    - 8.7K bytes
    - Viewed (0)
  4. conformance/conformance.proto

    message ConformanceRequest {
      // The payload (whether protobuf of JSON) is always for a
      // protobuf_test_messages.proto3.TestAllTypes proto (as defined in
      // src/google/protobuf/proto3_test_messages.proto).
      //
      // TODO(haberman): if/when we expand the conformance tests to support proto2,
      // we will want to include a field that lets the payload/response be a
      // protobuf_test_messages.google.protobuf.TestAllTypes message instead.
      oneof payload {
    Plain Text
    - Registered: 2023-03-15 06:16
    - Last Modified: 2021-09-09 15:21
    - 7.2K bytes
    - Viewed (0)
  5. php/ext/google/protobuf/message.c

        return;
      }
    
      from = (Message*)Z_OBJ_P(value);
    
      // Should be guaranteed since we passed the class type to
      // zend_parse_parameters().
      PBPHP_ASSERT(from->desc == intern->desc);
    
      // TODO(haberman): use a temp arena for this once we can make upb_decode()
      // copy strings.
      pb = upb_encode(from->msg, l, arena, &size);
    
      if (!pb) {
        zend_throw_exception_ex(NULL, 0, "Max nesting exceeded");
        return;
    C
    - Registered: 2023-03-15 06:16
    - Last Modified: 2021-06-04 17:22
    - 40.2K bytes
    - Viewed (0)
  6. ruby/ext/google/protobuf_c/convert.c

                     name, rb_class2name(CLASS_OF(value)));
          }
    
          if (rb_obj_encoding(value) != bytes) {
            // Note: this will not duplicate underlying string data unless necessary.
            // TODO(haberman): is this really necessary to get raw bytes?
            value = rb_str_encode(value, bytes, 0, Qnil);
          }
    
          ret.str_val = Convert_StringData(value, arena);
          break;
        }
        case UPB_TYPE_MESSAGE:
    C
    - Registered: 2023-03-15 06:16
    - Last Modified: 2021-08-02 22:32
    - 11.4K bytes
    - Viewed (0)
  7. conformance/conformance_test_runner.cc

            suite->RunSuite(&runner, &output, failure_list_filename, &failure_list);
    
        fwrite(output.c_str(), 1, output.size(), stderr);
      }
      return all_ok ? EXIT_SUCCESS : EXIT_FAILURE;
    }
    
    // TODO(haberman): make this work on Windows, instead of using these
    // UNIX-specific APIs.
    //
    // There is a platform-agnostic API in
    //    src/google/protobuf/compiler/subprocess.h
    //
    C++
    - Registered: 2023-03-15 06:16
    - Last Modified: 2021-02-12 00:29
    - 11.6K bytes
    - Viewed (0)
  8. ruby/ext/google/protobuf_c/message.c

      if (Match(m, name, f, o, "clear_", "")) return METHOD_CLEAR;
      if (Match(m, name, f, o, "has_", "?") &&
          (*o || (*f && upb_fielddef_haspresence(*f)))) {
        // Disallow oneof hazzers for proto3.
        // TODO(haberman): remove this test when we are enabling oneof hazzers for
        // proto3.
        if (*f && !upb_fielddef_issubmsg(*f) &&
            upb_fielddef_realcontainingoneof(*f) &&
    C
    - Registered: 2023-03-15 06:16
    - Last Modified: 2021-10-25 19:55
    - 42.7K bytes
    - Viewed (0)
  9. js/binary/arith.js

    /**
     * @fileoverview This file contains helper code used by jspb.utils to
     * handle 64-bit integer conversion to/from strings.
     *
     * @author ******@****.*** (Chris Fallin)
     *
     * TODO(haberman): move this to javascript/closure/math?
     */
    
    goog.provide('jspb.arith.Int64');
    goog.provide('jspb.arith.UInt64');
    
    /**
     * UInt64 implements some 64-bit arithmetic routines necessary for properly
    JavaScript
    - Registered: 2023-03-15 06:16
    - Last Modified: 2017-12-01 18:05
    - 11.7K bytes
    - Viewed (0)
  10. python/google/protobuf/pyext/map_container.cc

    // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
    // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    
    // Author: haberman@google.com (Josh Haberman)
    
    #include <google/protobuf/pyext/map_container.h>
    
    #include <cstdint>
    #include <memory>
    
    #include <google/protobuf/stubs/logging.h>
    #include <google/protobuf/stubs/common.h>
    C++
    - Registered: 2023-03-15 06:16
    - Last Modified: 2021-09-27 19:18
    - 31.2K bytes
    - Viewed (0)
Back to top