Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 87 for 1dbname (0.2 sec)

  1. gorm.go

    	if !isRelation {
    		return fmt.Errorf("failed to find relation: %s", field)
    	}
    
    	for _, ref := range relation.References {
    		f := joinSchema.LookUpField(ref.ForeignKey.DBName)
    		if f == nil {
    			return fmt.Errorf("missing field %s for join table", ref.ForeignKey.DBName)
    		}
    
    		f.DataType = ref.ForeignKey.DataType
    		f.GORMDataType = ref.ForeignKey.GORMDataType
    		if f.Size == 0 {
    			f.Size = ref.ForeignKey.Size
    		}
    Go
    - Registered: Sun May 05 09:35:13 GMT 2024
    - Last Modified: Sun Aug 20 11:46:56 GMT 2023
    - 11.6K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess_config.job_log/job_log.json

    {
        "properties": {
          "jobName": {
            "type": "keyword"
          },
          "jobStatus": {
            "type": "keyword"
          },
          "target": {
            "type": "keyword"
          },
          "scriptType": {
            "type": "keyword"
          },
          "scriptData": {
            "type": "keyword"
          },
          "scriptResult": {
            "type": "keyword"
          },
          "lastUpdated": {
            "type": "long"
          },
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 524 bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/joblog/admin_joblog_details.jsp

                                        <tr>
                                            <th style="width: 25%"><la:message
                                                    key="labels.joblog_jobName"/></th>
                                            <td>${f:h(jobName)}<la:hidden property="jobName"/></td>
                                        </tr>
                                        <tr>
                                            <th><la:message key="labels.joblog_jobStatus"/></th>
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 9.8K bytes
    - Viewed (0)
  4. src/main/config/es/fess_config_job_log.json

    {
      "fess_config.job_log" : {
        "aliases" : { },
        "mappings" : {
          "job_log" : {
            "properties" : {
              "endTime" : {
                "type" : "long"
              },
              "jobName" : {
                "type" : "keyword"
              },
              "jobStatus" : {
                "type" : "keyword"
              },
              "lastUpdated" : {
                "type" : "long"
              },
              "scriptData" : {
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 1.1K bytes
    - Viewed (0)
  5. tests/tests_test.go

    	"gorm.io/gorm/logger"
    	. "gorm.io/gorm/utils/tests"
    )
    
    var DB *gorm.DB
    var (
    	mysqlDSN     = "gorm:gorm@tcp(localhost:9910)/gorm?charset=utf8&parseTime=True&loc=Local"
    	postgresDSN  = "user=gorm password=gorm dbname=gorm host=localhost port=9920 sslmode=disable TimeZone=Asia/Shanghai"
    	sqlserverDSN = "sqlserver://gorm:LoremIpsum86@localhost:9930?database=gorm"
    	tidbDSN      = "root:@tcp(localhost:9940)/test?charset=utf8&parseTime=True&loc=Local"
    Go
    - Registered: Sun May 05 09:35:13 GMT 2024
    - Last Modified: Fri Dec 15 08:36:08 GMT 2023
    - 3.3K bytes
    - Viewed (1)
  6. .github/workflows/tests.yml

            path: ~/go/pkg/mod
            key: ${{ runner.os }}-go-${{ matrix.go }}-${{ hashFiles('tests/go.mod') }}
    
        - name: Tests
          run: GITHUB_ACTION=true GORM_DIALECT=postgres GORM_DSN="user=gorm password=gorm dbname=gorm host=localhost port=9920 sslmode=disable TimeZone=Asia/Shanghai" ./tests/tests_all.sh
    
      sqlserver:
        strategy:
          matrix:
            go: ['1.21', '1.20', '1.19']
    Others
    - Registered: Sun May 05 09:35:13 GMT 2024
    - Last Modified: Mon Jan 29 02:34:20 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  7. helm/minio/templates/servicemonitor.yaml

        heritage: {{ .Release.Service }}
        {{- if .Values.metrics.serviceMonitor.additionalLabels }}
          {{- toYaml .Values.metrics.serviceMonitor.additionalLabels | nindent 4 }}
        {{- end }}
    spec:
      jobName: {{ template "minio.fullname" . }}
      {{- if .Values.tls.enabled }}
      tlsConfig:
        ca:
          secret:
            name: {{ .Values.tls.certSecret }}
            key: {{ .Values.tls.publicCrt }}
    Others
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 17 06:04:15 GMT 2023
    - 3.8K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/joblog/admin_joblog.jsp

                                                <thead>
                                                <tr>
                                                    <th><la:message key="labels.joblog_jobName"/></th>
                                                    <th class="text-center" style="width: 15%"><la:message
                                                            key="labels.joblog_jobStatus"/></th>
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 11.4K bytes
    - Viewed (0)
  9. istioctl/pkg/describe/describe.go

    				matchingSubsets := []string{}
    				nonMatchingSubsets := []string{}
    				drName, drNamespace, err := getIstioDestinationRuleNameForSvc(&cd, svc, port.Port)
    				var dr *clientnetworking.DestinationRule
    				if err == nil && drName != "" && drNamespace != "" {
    					exist := false
    					dr, exist = recordDestinationRules[newResourceID(drNamespace, drName)]
    					if !exist {
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 50.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsJobLogCB.java

                doColumn("_id");
            }
    
            public void columnEndTime() {
                doColumn("endTime");
            }
    
            public void columnJobName() {
                doColumn("jobName");
            }
    
            public void columnJobStatus() {
                doColumn("jobStatus");
            }
    
            public void columnLastUpdated() {
                doColumn("lastUpdated");
            }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7K bytes
    - Viewed (0)
Back to top