Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for constraintName (0.11 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/AuthScheme.groovy

            }
    
            protected abstract String constraintName()
    
            protected abstract Authenticator getAuthenticator()
    
            protected boolean containsUnexpectedAuthentication(HttpServletRequest request) {
                false
            }
        }
    
        private static class NtlmAuthHandler extends AuthSchemeHandler {
            @Override
            protected String constraintName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. migrator/migrator.go

    		if constraint != nil {
    			name = constraint.GetName()
    		}
    
    		return m.DB.Raw(
    			"SELECT count(*) FROM INFORMATION_SCHEMA.table_constraints WHERE constraint_schema = ? AND table_name = ? AND constraint_name = ?",
    			currentDatabase, table, name,
    		).Row().Scan(&count)
    	})
    
    	return count > 0
    }
    
    // BuildIndexOptions build index options
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Apr 26 07:15:49 UTC 2024
    - 29K bytes
    - Viewed (0)
Back to top