Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 136 for Mysql (0.09 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/networking/virtual-service-ratings-mysql.yaml

    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: ratings
    spec:
      hosts:
      - ratings
      http:
      - route:
        - destination:
            host: ratings
            subset: v2-mysql
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 09 23:15:58 UTC 2018
    - 402 bytes
    - Viewed (0)
  5. 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)
  6. samples/bookinfo/networking/virtual-service-ratings-mysql-vm.yaml

    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: ratings
    spec:
      hosts:
      - ratings
      http:
      - route:
        - destination:
            host: ratings
            subset: v2-mysql-vm
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 09 23:15:58 UTC 2018
    - 405 bytes
    - Viewed (0)
  7. pkg/config/protocol/instance_test.go

    		{"mongo", protocol.Mongo},
    		{"MONGO", protocol.Mongo},
    		{"Redis", protocol.Redis},
    		{"redis", protocol.Redis},
    		{"REDIS", protocol.Redis},
    		{"Mysql", protocol.MySQL},
    		{"mysql", protocol.MySQL},
    		{"MYSQL", protocol.MySQL},
    		{"MySQL", protocol.MySQL},
    		{"", protocol.Unsupported},
    		{"SMTP", protocol.Unsupported},
    		{"HBONE", protocol.Unsupported},
    	}
    
    	for _, testPair := range testPairs {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 11 16:27:16 UTC 2022
    - 2K bytes
    - Viewed (0)
  8. samples/bookinfo/networking/destination-rule-all.yaml

      name: ratings
    spec:
      host: ratings
      subsets:
      - name: v1
        labels:
          version: v1
      - name: v2
        labels:
          version: v2
      - name: v2-mysql
        labels:
          version: v2-mysql
      - name: v2-mysql-vm
        labels:
          version: v2-mysql-vm
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: details
    spec:
      host: details
      subsets:
      - name: v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 09 23:15:58 UTC 2018
    - 972 bytes
    - Viewed (0)
  9. src/test/resources/plugin/repo.yaml

    - name: mysql-connector-java
      version: 8.0.17
      url: https://repo1.maven.org/maven2/mysql/mysql-connector-java/8.0.17/mysql-connector-java-8.0.17.jar
    - name: mysql-connector-java
      version: 6.0.6
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Aug 25 05:53:21 UTC 2019
    - 298 bytes
    - Viewed (0)
  10. .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)
Back to top