Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for Mysql (0.13 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. samples/bookinfo/platform/kube/bookinfo-mysql.yaml

                valueFrom:
                  secretKeyRef:
                    name: mysql-credentials
                    key: rootpasswd
            args: ["--default-authentication-plugin","mysql_native_password"]
            volumeMounts:
            - name: var-lib-mysql
              mountPath: /var/lib/mysql
          volumes:
          - name: var-lib-mysql
            emptyDir: {}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. samples/bookinfo/platform/kube/bookinfo-ratings-v2-mysql.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: ratings-v2-mysql
      labels:
        app: ratings
        version: v2-mysql
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: ratings
          version: v2-mysql
      template:
        metadata:
          labels:
            app: ratings
            version: v2-mysql
        spec:
          containers:
          - name: ratings
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. samples/bookinfo/platform/kube/bookinfo-ratings-v2-mysql-vm.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: ratings-v2-mysql-vm
      labels:
        app: ratings
        version: v2-mysql-vm
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: ratings
          version: v2-mysql-vm
      template:
        metadata:
          labels:
            app: ratings
            version: v2-mysql-vm
        spec:
          containers:
          - name: ratings
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. .github/workflows/tests.yml

        - name: Tests
          run: GITHUB_ACTION=true GORM_DIALECT=sqlite ./tests/tests_all.sh
    
      mysql:
        strategy:
          matrix:
            dbversion: ['mysql/mysql-server:latest', 'mysql:5.7']
            go: ['1.22', '1.21', '1.20']
            platform: [ubuntu-latest]
        runs-on: ${{ matrix.platform }}
    
        services:
          mysql:
            image: ${{ matrix.dbversion }}
            env:
              MYSQL_DATABASE: gorm
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:24:34 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. samples/bookinfo/platform/kube/bookinfo-ratings-v2.yaml

              # ratings-v2 will use mongodb as the default db backend.
              # if you would like to use mysqldb then set DB_TYPE = 'mysql', set
              # the rest of the parameters shown here and also create the
              # mysqldb service using bookinfo-mysql.yaml
              # - name: DB_TYPE #default to
              #   value: "mysql"
              # - name: MYSQL_DB_HOST
              #   value: mysqldb
              # - name: MYSQL_DB_PORT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. tests/go.mod

    	github.com/lib/pq v1.10.9
    	github.com/stretchr/testify v1.9.0
    	gorm.io/driver/mysql v1.5.7
    	gorm.io/driver/postgres v1.5.9
    	gorm.io/driver/sqlite v1.5.6
    	gorm.io/driver/sqlserver v1.5.3
    	gorm.io/gorm v1.25.10
    )
    
    require (
    	filippo.io/edwards25519 v1.1.0 // indirect
    	github.com/davecgh/go-spew v1.1.1 // indirect
    	github.com/go-sql-driver/mysql v1.8.1 // indirect
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:24:34 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. pkg/config/kube/conversion.go

    	"istio.io/istio/pkg/util/sets"
    )
    
    const (
    	SMTP    = 25
    	DNS     = 53
    	MySQL   = 3306
    	MongoDB = 27017
    )
    
    // Ports be skipped for protocol sniffing. Applications bound to these ports will be broken if
    // protocol sniffing is enabled.
    var wellKnownPorts = sets.New[int32](
    	SMTP,
    	DNS,
    	MySQL,
    	MongoDB,
    )
    
    var (
    	grpcWeb    = string(protocol.GRPCWeb)
    	grpcWebLen = len(grpcWeb)
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/networkfilter.go

    	}
    
    	return out
    }
    
    // buildMySQLFilter builds an outbound Envoy MySQLProxy filter.
    func buildMySQLFilter(statPrefix string) *listener.Filter {
    	mySQLProxy := &mysql.MySQLProxy{
    		StatPrefix: statPrefix, // MySQL stats are prefixed with mysql.<statPrefix> by Envoy.
    	}
    
    	out := &listener.Filter{
    		Name:       wellknown.MySQLProxy,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. 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)
Back to top