Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for checkerNames (0.29 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/healthz/healthz.go

    		}
    	})
    }
    
    // checkerNames returns the names of the checks in the same order as passed in.
    func checkerNames(checks ...HealthChecker) []string {
    	// accumulate the names of checks for printing them out.
    	checkerNames := make([]string, 0, len(checks))
    	for _, check := range checks {
    		checkerNames = append(checkerNames, check.Name())
    	}
    	return checkerNames
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. schema/naming.go

    func (ns NamingStrategy) RelationshipFKName(rel Relationship) string {
    	return ns.formatName("fk", rel.Schema.Table, ns.toDBName(rel.Name))
    }
    
    // CheckerName generate checker name
    func (ns NamingStrategy) CheckerName(table, column string) string {
    	return ns.formatName("chk", table, column)
    }
    
    // IndexName generate index name
    func (ns NamingStrategy) IndexName(table, column string) string {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top