Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 136 for Mysql (0.08 sec)

  1. tests/migrate_test.go

    		t.Fatal("should not found dropped table")
    	}
    }
    
    func TestMigrateWithQuotedIndex(t *testing.T) {
    	if DB.Dialector.Name() != "mysql" {
    		t.Skip()
    	}
    
    	type QuotedIndexStruct struct {
    		gorm.Model
    		Name string `gorm:"size:255;index:AS"` // AS is one of MySQL reserved words
    	}
    
    	if err := DB.Migrator().DropTable(&QuotedIndexStruct{}); err != nil {
    		t.Fatalf("Failed to drop table, got error %v", err)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  2. pilot/pkg/features/xds.go

    // Define flags that affect XDS config generation here.
    var (
    	// EnableMysqlFilter enables injection of `envoy.filters.network.mysql_proxy` in the filter chain.
    	// Pilot injects this outbound filter if the service port name is `mysql`.
    	EnableMysqlFilter = env.Register(
    		"PILOT_ENABLE_MYSQL_FILTER",
    		false,
    		"EnableMysqlFilter enables injection of `envoy.filters.network.mysql_proxy` in the filter chain.",
    	).Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 24 06:18:36 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. tests/group_by_test.go

    	}
    
    	if name != "groupby" || active != true || total != 40 {
    		t.Errorf("group by two columns, name %v, age %v, active: %v", name, total, active)
    	}
    
    	if DB.Dialector.Name() == "mysql" {
    		if err := DB.Model(&User{}).Select("name, age as total").Where("name LIKE ?", "groupby%").Having("total > ?", 300).Scan(&result).Error; err != nil {
    			t.Errorf("no error should happen, but got %v", err)
    		}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Jan 06 07:02:53 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  4. tests/fuzz/pilot_model_fuzzer.go

    	protocol.TCP,
    	protocol.UDP,
    	protocol.GRPC,
    	protocol.GRPCWeb,
    	protocol.HTTP,
    	protocol.HTTP_PROXY,
    	protocol.HTTP2,
    	protocol.HTTPS,
    	protocol.TLS,
    	protocol.Mongo,
    	protocol.Redis,
    	protocol.MySQL,
    }
    
    // Creates a new fuzzed ServiceInstance
    func NewSI(f *fuzz.ConsumeFuzzer) (*model.ServiceInstance, error) {
    	si := &model.ServiceInstance{}
    	err := f.GenerateStruct(si)
    	if err != nil {
    		return si, err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 18:13:06 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. docs/tr/docs/project-generation.md

    * **PGAdmin** PostgreSQL database admin tool'u, PHPMyAdmin ve MySQL ile kolayca değiştirilebilir.
    * **Flower** ile Celery job'larını monitörleme.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:55:41 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. pkg/dns/server/name_table_test.go

    	}
    
    	serviceWithVIP1 := &model.Service{
    		Hostname:       host.Name("mysql.foo.bar"),
    		DefaultAddress: "10.0.0.5",
    		Ports: model.PortList{
    			&model.Port{
    				Name:     "tcp",
    				Port:     3306,
    				Protocol: protocol.TCP,
    			},
    		},
    		Resolution: model.Passthrough,
    		Attributes: model.ServiceAttributes{
    			Name:            "mysql-svc",
    			Namespace:       "testns",
    			ServiceRegistry: provider.External,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 04:26:03 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. operator/pkg/translate/strategic_port_merge_test.go

    	}
    	httpNoProtoPort = &v1.ServicePort{
    		Name:       "http-port",
    		Port:       80,
    		TargetPort: intstr.IntOrString{IntVal: 8080},
    	}
    	mysqlPort = &v1.ServicePort{
    		Name:     "mysql-port",
    		Protocol: v1.ProtocolTCP,
    		Port:     3306,
    	}
    	istioHealthcheckPort = &v1.ServicePort{
    		Name:     "status-port",
    		Protocol: v1.ProtocolTCP,
    		Port:     15021,
    	}
    	istioMetricsPort = &v1.ServicePort{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 21 03:06:37 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  8. cmd/config-migrate.go

    	}
    	for k, args := range cfg.Notify.Kafka {
    		notify.SetNotifyKafka(newCfg, k, args)
    	}
    	for k, args := range cfg.Notify.MQTT {
    		notify.SetNotifyMQTT(newCfg, k, args)
    	}
    	for k, args := range cfg.Notify.MySQL {
    		notify.SetNotifyMySQL(newCfg, k, args)
    	}
    	for k, args := range cfg.Notify.NATS {
    		notify.SetNotifyNATS(newCfg, k, args)
    	}
    	for k, args := range cfg.Notify.NSQ {
    		notify.SetNotifyNSQ(newCfg, k, args)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. dbflute_fess/dfprop/documentMap.dfprop

        #  Elements of this map are as below:
        #   o url: The URL for connecting database. (NotRequired - Default same as databaseInfoMap)
        #   o schema: The schema name. (NotRequired - Default '' e.g. no setting when MySQL)
        #   o user: The database user name. (Required)
        #   o password: The database password. (NotRequired - Default '')
        #
        #; schemaSyncCheckMap = map:{
        #    ; url = jdbc:...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 9.4K bytes
    - Viewed (0)
  10. docs/en/docs/how-to/async-sql-encode-databases.md

    It is compatible with:
    
    * PostgreSQL
    * MySQL
    * SQLite
    
    In this example, we'll use **SQLite**, because it uses a single file and Python has integrated support. So, you can copy this example and run it as is.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top