Results 22 issues of Fujimoto Seiji

This is a sketch of an idea on how to speed up Myers1999 further. **Observation** * Myers1999 consists of a series of bitwise operations on 64-bit integers. * Intuitively, this...

This is a sketch of an improvement idea I'm thinking to incorporate into polyleven. **How is polyleven used in real life?** * The typical usecase of polyleven is "finding a...

### Problem Onigmo is a backtracking regex engine. For this reason, it can sometime become exceptionally slow, in particular, with this class of inputs: regex : ^(a+)+$ string: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaab Provide...

### Background According to the "Forward Protocol Specification v1", fluentd supports an option named `chunk` which enables at-least-once delivery of messages. This option is very useful in cases where data...

### Background #107 added a basic TLS support to Go logger. However, we don't yet provide any configurable options regarding certificates. This turns out to be being a hardle for...

While writing a unit test for #105, I noticed that https://github.com/bmizerany/assert has been abandoned (circa 2016). The current preferred way to implement testing seems to be Go's [testing](https://pkg.go.dev/testing) package. Let's...

### Steps to reproduce 0. Open the calendar app on ownCloud. 1. Create a new event. 2. Add some attendees to the event using the sidebar. 3. Try to remove...

Snapd uses `LimitTime(90*time.Second)` as a retry policy. For this reason, it only recovers from network errors occurring within initial 90 seconds. This policy makes snapd unusable on slow network. For...

⛔ Blocked
Needs Samuele review

## What? This patch fixes the version specifier for `sentencepiece` in setup.py. ## Why? SentencePiece adds support for Python 3.11 in v0.1.98. > https://github.com/google/sentencepiece/releases/tag/v0.1.98 Since ESPnet pins sentencepiece to v0.1.97,...

Bugfix
Installation

### Is your feature request related to a problem? Please describe. Currently when starting up Fluentd outputs, we try to check if each buffer chunk is non-empty, and if it...

enhancement