HEX
Server: nginx/1.18.0
System: Linux test-ipsremont 5.4.0-214-generic #234-Ubuntu SMP Fri Mar 14 23:50:27 UTC 2025 x86_64
User: ips (1000)
PHP: 8.0.30
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/ai-notam/laravel/node_modules/protocol-buffers-schema/test/fixtures/valid-packed.proto
message EnumCarrying{
  enum E{
    A = 0;
    B = 1;
  }

}

message ValidPacked {
  // varint wire types
  repeated int32 f1 = 1 [packed = true];
  repeated int64 f2 = 2 [packed = true];
  repeated uint32 f3 = 3 [packed = true];
  repeated uint64 f4 = 4 [packed = true];
  repeated sint32 f5 = 5 [packed = true];
  repeated sint64 f6 = 6 [packed = true];
  repeated bool f7 = 7 [packed = true];
  enum Corpus {
    UNIVERSAL = 0;
    WEB = 1;
  }
  repeated Corpus f8 = 8 [packed = true];
  repeated EnumCarrying.E f9 = 9 [packed = true];
  
  // 64-bit wire types
  repeated fixed64 f10 = 10 [packed = true];
  repeated sfixed64 f11 = 11 [packed = true];
  repeated double f12 = 12 [packed = true];
  
  // 32-bit wire types
  repeated fixed32 f13 = 13 [packed = true];
  repeated sfixed32 f14 = 14 [packed = true];
  repeated float f15 = 15 [packed = true];
}