Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 136 for Mysql (0.04 sec)

  1. samples/bookinfo/src/mysql/mysqldb-init.sql

    # Initialize a mysql db with a 'test' db and be able test productpage with it.
    # mysql -h 127.0.0.1 -ppassword < mysqldb-init.sql
    
    CREATE DATABASE test;
    USE test;
    
    CREATE TABLE `ratings` (
      `ReviewID` INT NOT NULL,
      `Rating` INT,
      PRIMARY KEY (`ReviewID`)
    );
    INSERT INTO ratings (ReviewID, Rating) VALUES (1, 5);
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 06 04:15:20 UTC 2018
    - 370 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/feature_variants.adoc

    - `mysql-support` provides both the `db-support` and `mysql-support` capabilities
    - `postgres-support` provides both the `db-support` and `postgres-support` capabilities
    - `mongo-support` provides both the `db-support` and `mongo-support` capabilities
    
    Then if the consumer tries to get both the `postgres-support` and `mysql-support` features (this also works transitively):
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  3. 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)
  4. docs/bucket/notifications/README.md

    ### Step 1: Ensure MySQL minimum requirements are met
    
    MinIO requires MySQL version 5.7.8 or above. MinIO uses the [JSON](https://dev.mysql.com/doc/refman/5.7/en/json.html) data-type introduced in version 5.7.8. We tested this setup on MySQL 5.7.17.
    
    ### Step 2: Add MySQL server endpoint configuration to MinIO
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  5. 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)
  6. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/mavenExtensions/some-thing/pom.xml

                        <reportFormat>xml</reportFormat>
                    </configuration>
                </plugin>
            </plugins>
            <extensions>
                <extension>
                    <groupId>mysql</groupId>
                    <artifactId>mysql-connector-java</artifactId>
                    <version>5.0.7</version>
                </extension>
            </extensions>
        </build>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. samples/bookinfo/src/ratings/package.json

    {
      "scripts": {
        "start": "node ratings.js"
      },
      "dependencies": {
        "httpdispatcher": "1.0.0",
        "mongodb": "^3.6.0",
        "mysql": "^2.15.0"
      },
      "private": true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 21 10:39:49 UTC 2022
    - 177 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/java-feature-variant/requiring-features/groovy/producer/build.gradle

    plugins {
        id 'java-library'
    }
    
    repositories {
        mavenCentral()
    }
    
    // tag::producer[]
    group = 'org.gradle.demo'
    
    sourceSets {
        mysqlSupport {
            java {
                srcDir 'src/mysql/java'
            }
        }
    }
    
    java {
        registerFeature('mysqlSupport') {
            usingSourceSet(sourceSets.mysqlSupport)
        }
    }
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 05:15:51 UTC 2023
    - 425 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/java-feature-variant/requiring-features/kotlin/producer/build.gradle.kts

    plugins {
        `java-library`
    }
    
    repositories {
        mavenCentral()
    }
    
    // tag::producer[]
    group = "org.gradle.demo"
    
    sourceSets {
        create("mysqlSupport") {
            java {
                srcDir("src/mysql/java")
            }
        }
    }
    
    java {
        registerFeature("mysqlSupport") {
            usingSourceSet(sourceSets["mysqlSupport"])
        }
    }
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 05:15:51 UTC 2023
    - 439 bytes
    - Viewed (0)
  10. samples/bookinfo/src/docker-bake.hcl

      },
      {
        name = "examples-bookinfo-ratings-v-unhealthy"
        args = {
          service_version = "v-unhealthy"
        }
        source = "ratings"
      },
    
      // mysql
      {
        name   = "examples-bookinfo-mysqldb"
        source = "mysql"
      },
    
      // mongo
      {
        name   = "examples-bookinfo-mongodb"
        source = "mongodb"
      }
    ]
    
    target "default" {
      matrix = {
        item = images
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top