Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for mapLocation (0.15 sec)

  1. platforms/core-configuration/configuration-problems-base/src/main/kotlin/org/gradle/internal/configuration/problems/DefaultProblemFactory.kt

                    exceptionMessage = builder(message.toString().capitalized())
                    return this
                }
    
                override fun mapLocation(mapper: (PropertyTrace) -> PropertyTrace): ProblemFactory.Builder {
                    locationMapper = mapper
                    return this
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:59:39 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-problems-base/src/main/kotlin/org/gradle/internal/configuration/problems/ProblemFactory.kt

            fun documentationSection(documentationSection: DocumentationSection): Builder
    
            /**
             * Allows the default location to be changed. The function is called by `build()`
             */
            fun mapLocation(mapper: (PropertyTrace) -> PropertyTrace): Builder
    
            fun build(): PropertyProblem
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 21:59:50 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectModelAccessTrackingParentDynamicObject.kt

                    text(memberKind.name.lowercase(Locale.ENGLISH))
                    text(" in the parent project ")
                    reference(ownerProject.identityPath.toString())
                }
                    .mapLocation { location ->
                        when (memberKind) {
                            MemberKind.PROPERTY -> {
                                if (memberName != null)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/ConfigurationCacheProblemsListener.kt

                        }
                    )
                    .documentationSection(RequirementsUseProjectDuringExecution)
                    .mapLocation { locationForTask(it, contextTask) }
                    .build()
            )
        }
    
        private
        fun locationForTask(location: PropertyTrace, task: TaskInternal) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/profile/merge.go

    		NumLabel: make(map[string][]int64, len(src.NumLabel)),
    		NumUnit:  make(map[string][]string, len(src.NumLabel)),
    	}
    	for i, l := range src.Location {
    		s.Location[i] = pm.mapLocation(l)
    	}
    	for k, v := range src.Label {
    		vv := make([]string, len(v))
    		copy(vv, v)
    		s.Label[k] = vv
    	}
    	for k, v := range src.NumLabel {
    		u := src.NumUnit[k]
    		vv := make([]int64, len(v))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top