Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for unpackType (0.21 sec)

  1. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/TaskReferenceCodec.kt

     * limitations under the License.
     */
    
    package org.gradle.internal.serialize.codecs.core
    
    import org.gradle.api.Task
    import org.gradle.api.internal.GeneratedSubclasses.unpackType
    import org.gradle.api.internal.tasks.TaskContainerInternal
    import org.gradle.internal.cc.base.serialize.IsolateOwners
    import org.gradle.internal.serialize.graph.logUnsupportedBaseType
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Logging.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.serialize.graph
    
    import org.gradle.api.internal.GeneratedSubclasses.unpackType
    import org.gradle.internal.configuration.problems.DocumentationSection
    import org.gradle.internal.configuration.problems.DocumentationSection.NotYetImplemented
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/BeanPropertyExtensions.kt

                onError(error) {
                    when {
                        value != null -> {
                            text("error writing value of type ")
                            reference(GeneratedSubclasses.unpackType(value))
                        }
    
                        else -> {
                            text("error writing null value")
                        }
                    }
                }
            }
        }
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.fingerprint
    
    import org.gradle.api.Describable
    import org.gradle.api.internal.GeneratedSubclasses.unpackType
    import org.gradle.api.internal.file.FileCollectionInternal
    import org.gradle.api.provider.ValueSource
    import org.gradle.api.provider.ValueSourceParameters
    import org.gradle.internal.cc.impl.CheckedFingerprint
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/ConfigurationCacheProblemsListener.kt

        fun locationForTask(location: PropertyTrace, task: TaskInternal) =
            if (location is PropertyTrace.BuildLogic) {
                location
            } else {
                PropertyTrace.Task(GeneratedSubclasses.unpackType(task), task.identityPath.path)
            }
    
        private
        fun problemsListenerFor(task: TaskInternal): ProblemsListener = when {
            task.isCompatibleWithConfigurationCache -> problems
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/TaskNodeCodec.kt

            node.isolated()
            return node
        }
    
        private
        suspend fun WriteContext.writeTask(task: TaskInternal) {
            withDebugFrame({ task.path }) {
                val taskType = GeneratedSubclasses.unpackType(task)
                val projectPath = task.project.path
                val taskName = task.name
                writeClass(taskType)
                writeString(projectPath)
                writeString(taskName)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top