Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for MapKeys (0.03 seconds)

  1. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/transforms/Minify.kt

        private
        val jarArtifactRegex = Regex("""^(.*?)-\d+(\.\d+)*([.-][A-Za-z0-9]+)*\.jar$""")
    
        private val keepClassesByArtifacts: Map<String, Set<String>> by lazy {
            parameters.keepClassesByCoordinates.mapKeys { it.key.substringAfter(":") }
        }
    
        override fun transform(outputs: TransformOutputs) {
            val fileName = artifact.get().asFile.name
            val artifactName = extractArtifactName(fileName)
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Thu Dec 18 11:46:45 GMT 2025
    - 4.9K bytes
    - Click Count (0)
  2. association.go

    				case schema.Many2Many:
    					association.Error = association.DB.Session(&Session{
    						NewDB: true,
    					}).Model(child.Interface()).Create(mapv.Interface()).Error
    
    					for _, key := range mapv.MapKeys() {
    						k := strings.ToLower(key.String())
    						if f, ok := association.Relationship.FieldSchema.FieldsByDBName[k]; ok {
    							_ = f.Set(association.DB.Statement.Context, child, mapv.MapIndex(key).Interface())
    						}
    Created: Sun Dec 28 09:35:17 GMT 2025
    - Last Modified: Sun Oct 26 12:09:12 GMT 2025
    - 23.6K bytes
    - Click Count (0)
Back to Top