Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Mysql (0.04 sec)

  1. internal/event/target/mysql.go

    	"strconv"
    	"strings"
    	"time"
    
    	"github.com/go-sql-driver/mysql"
    	"github.com/minio/minio/internal/event"
    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/minio/internal/once"
    	"github.com/minio/minio/internal/store"
    	xnet "github.com/minio/pkg/v3/net"
    )
    
    const (
    	mysqlTableExists = `SELECT 1 FROM %s;`
    	// Some MySQL has a 3072 byte limit on key sizes.
    	mysqlCreateNamespaceTable = `CREATE TABLE %s (
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/conversion_test.go

    		{8888, "redis", nil, corev1.ProtocolTCP, protocol.Redis},
    		{8888, "redis-test", nil, corev1.ProtocolTCP, protocol.Redis},
    		{8888, "mysql", nil, corev1.ProtocolTCP, protocol.MySQL},
    		{8888, "mysql-test", nil, corev1.ProtocolTCP, protocol.MySQL},
    		{8888, "tcp", &http, corev1.ProtocolTCP, protocol.HTTP},
    	}
    
    	// Create the list of cases for all of the names in both upper and lowercase.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. go.mod

    	github.com/fatih/color v1.17.0
    	github.com/felixge/fgprof v0.9.4
    	github.com/fraugster/parquet-go v0.12.0
    	github.com/go-ldap/ldap/v3 v3.4.8
    	github.com/go-openapi/loads v0.22.0
    	github.com/go-sql-driver/mysql v1.8.1
    	github.com/gobwas/ws v1.4.0
    	github.com/golang-jwt/jwt/v4 v4.5.0
    	github.com/gomodule/redigo v1.9.2
    	github.com/google/uuid v1.6.0
    	github.com/hashicorp/golang-lru/v2 v2.0.7
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. internal/config/notify/parse.go

    		}
    
    		if err = mqttArgs.Validate(); err != nil {
    			return nil, err
    		}
    		mqttTargets[k] = mqttArgs
    	}
    	return mqttTargets, nil
    }
    
    // DefaultMySQLKVS - default KV for MySQL
    var (
    	DefaultMySQLKVS = config.KVS{
    		config.KV{
    			Key:   config.Enable,
    			Value: config.EnableOff,
    		},
    		config.KV{
    			Key:   target.MySQLFormat,
    			Value: formatNamespace,
    		},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  5. docs/en/docs/deployment/docker.md

    * <a href="https://hub.docker.com/_/postgres" class="external-link" target="_blank">PostgreSQL</a>
    * <a href="https://hub.docker.com/_/mysql" class="external-link" target="_blank">MySQL</a>
    * <a href="https://hub.docker.com/_/mongo" class="external-link" target="_blank">MongoDB</a>
    * <a href="https://hub.docker.com/_/redis" class="external-link" target="_blank">Redis</a>, etc.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  6. docs/en/data/external_links.yml

    https://qiita.com/angel_katayoku/items/8a458a8952f50b73f420 title: FastAPIでPOSTされたJSONのレスポンスbodyを受け取る - author: '@angel_katayoku' author_link: https://qiita.com/angel_katayoku link: https://qiita.com/angel_katayoku/items/4fbc1a4e2b33fa2237d2 title: FastAPIをMySQLと接続してDockerで管理してみる - author: '@angel_katayoku' author_link: https://qiita.com/angel_katayoku link: https://qiita.com/angel_katayoku/items/0e1f5dbbe62efc612a78 title: FastAPIでCORSを回避 - author: '@ryoryomaru' author_link: https://qiita.com/ryoryomaru link:...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 00:47:57 UTC 2024
    - 22K bytes
    - Viewed (0)
  7. pilot/pkg/model/gateway.go

    	// ServerPorts maintains a list of unique server ports, used for stable ordering.
    	ServerPorts []ServerPort
    
    	// MergedServers map from physical port to virtual servers
    	// using TCP protocols (like HTTP1.1, H2, mysql, redis etc)
    	MergedServers map[ServerPort]*MergedServers
    
    	// MergedQUICTransportServers map from physical port to servers listening
    	// on QUIC (like HTTP3). Currently the support is experimental and
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  8. cmd/config-current.go

    			Description:     "publish bucket notifications to NSQ endpoints",
    			MultipleTargets: true,
    		},
    		config.HelpKV{
    			Key:             config.NotifyMySQLSubSys,
    			Description:     "publish bucket notifications to MySQL databases",
    			MultipleTargets: true,
    		},
    		config.HelpKV{
    			Key:             config.NotifyPostgresSubSys,
    			Description:     "publish bucket notifications to Postgres databases",
    			MultipleTargets: true,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 08:14:58 UTC 2024
    - 30.8K bytes
    - Viewed (0)
Back to top