Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for Decoder (0.16 sec)

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

            writeReference(findOwningScript(value))
            writeReference(value.thisObject)
            encodeBean(value.dehydrate())
        }
    
        override suspend fun ReadContext.decode(): Closure<*> {
            val owner = readReference()
            val thisObject = readReference()
    
            return (decodeBean() as Closure<*>).rehydrate(null, owner, thisObject)
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/UnsupportedTypesCodecs.kt

                text(" with name ")
                reference(value.serviceDetails.name)
                text(" used at configuration time")
            }
        }
    
        override suspend fun ReadContext.decode(): BuildServiceProvider<*, *>? {
            logUnsupported("deserialize", BuildServiceProvider::class, documentationSection = DocumentationSection.NotYetImplementedBuildServiceInFingerprint)
            return null
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/ConfigurableFileCollectionCodec.kt

                codec.run {
                    encodeContents(value)
                }
                writeBoolean(value.isFinalizing)
            }
        }
    
        override suspend fun ReadContext.decode(): ConfigurableFileCollection {
            return decodePreservingIdentity { id ->
                val contents = codec.run { decodeContents() }
                val fileCollection = fileCollectionFactory.configurableFiles()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/transform/TransformStepCodec.kt

                writeString(project.path)
                write(value.transform)
            }
        }
    
        override suspend fun ReadContext.decode(): TransformStep {
            return decodePreservingSharedIdentity {
                val path = readString()
                val transform = readNonNull<Transform>()
                val project = getProject(path)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/config.go

    	Transport TransportConfig
    
    	Codec runtime.Codec
    	// EncodeVersioner is the same groupVersioner used to build the
    	// storage encoder. Given a list of kinds the input object might belong
    	// to, the EncodeVersioner outputs the gvk the object will be
    	// converted to before persisted in etcd.
    	EncodeVersioner runtime.GroupVersioner
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top