Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 118 for Mysql (0.06 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. 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)
  6. .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)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testsuites/dependencies/TestSuitesKotlinDSLDependenciesIntegrationTest.groovy

                    assert(!testCompileClasspathFileNames.contains("mysql-connector-java-8.0.26.jar")) { "runtimeOnly dependency" }
                    assert(testRuntimeClasspathFileNames.containsAll(listOf("commons-lang3-3.11.jar", "guava-30.1.1-jre.jar", "mysql-connector-java-8.0.26.jar")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 11 16:25:08 UTC 2024
    - 45.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/java-feature-variant/requiring-features/tests/requiringFeatures.sample.conf

    commands: [{
        executable: gradle
        args: "consumer:dependencyInsight --configuration compileClasspath --dependency mysql"
        expected-output-file: compileClasspath.out
    },{
        executable: gradle
        args: "consumer:dependencyInsight --configuration runtimeClasspath --dependency mysql"
        expected-output-file: runtimeClasspath.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 342 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/java-feature-variant/requiring-features/groovy/consumer/build.gradle

    dependencies {
        // This project requires the main producer component
        implementation(project(":producer"))
    
        // But we also want to use its MySQL support
        runtimeOnly(project(":producer")) {
            capabilities {
                requireCapability("org.gradle.demo:producer-mysql-support")
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 426 bytes
    - Viewed (0)
  10. 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)
Back to top