Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for putFields (0.36 sec)

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

        override fun reset() = unsupported("ObjectOutputStream.reset")
    
        override fun writeFields() = unsupported("ObjectOutputStream.writeFields")
    
        override fun putFields(): PutField = unsupported("ObjectOutputStream.putFields")
    
        override fun writeChars(str: String) = unsupported("ObjectOutputStream.writeChars")
    
        override fun writeBytes(str: String) = unsupported("ObjectOutputStream.writeBytes")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/JavaObjectSerializationCodec.kt

     * - the following methods of [ObjectOutputStream] are not supported and will throw [UnsupportedOperationException]:
     *    - `reset()`, `writeFields()`, `putFields()`, `writeChars(String)`, `writeBytes(String)` and `writeUnshared(Any?)`.
     * - the following methods of [ObjectInputStream] are not supported and will throw [UnsupportedOperationException]:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/serialization/codecs/JavaObjectSerializationCodecTest.kt

        class UnsupportedSerializableBean : Serializable {
    
            private
            fun writeObject(objectOutputStream: ObjectOutputStream) {
                objectOutputStream.putFields() // will throw
            }
        }
    
        class SerializableBeanContainingExternalizable(
            var someString: String? = null,
            var childBean: ExternalizableBean? = null,
            var someInt: Int? = null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/initialization/MixInLegacyTypesClassLoader.java

                // this.metaClass = <value>
                methodVisitor.visitFieldInsn(Opcodes.PUTFIELD, className, META_CLASS_FIELD, META_CLASS_TYPE.getDescriptor());
    
                // return this.metaClass
                methodVisitor.visitVarInsn(Opcodes.ALOAD, 0);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top