Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for putFields (0.96 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. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    - 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 Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/bytecode/AsmExtensions.kt

    fun MethodVisitor.GETFIELD(owner: InternalName, name: String, desc: String) {
        visitFieldInsn(Opcodes.GETFIELD, owner.value, name, desc)
    }
    
    
    internal
    fun MethodVisitor.PUTFIELD(owner: InternalName, name: String, desc: String) {
        visitFieldInsn(Opcodes.PUTFIELD, owner.value, name, desc)
    }
    
    
    internal
    fun MethodVisitor.CHECKCAST(type: InternalName) {
        visitTypeInsn(Opcodes.CHECKCAST, type)
    }
    
    
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/bytecode/AsmExtensions.kt

    fun MethodVisitor.GETFIELD(owner: InternalName, name: String, desc: String) {
        visitFieldInsn(Opcodes.GETFIELD, owner.value, name, desc)
    }
    
    
    internal
    fun MethodVisitor.PUTFIELD(owner: InternalName, name: String, desc: String) {
        visitFieldInsn(Opcodes.PUTFIELD, owner.value, name, desc)
    }
    
    
    internal
    fun MethodVisitor.CHECKCAST(type: KClass<*>) {
        CHECKCAST(type.internalName)
    }
    
    
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/GeneratePluginSpecBuilderAccessors.kt

    import org.gradle.kotlin.dsl.support.bytecode.InternalNameOf
    import org.gradle.kotlin.dsl.support.bytecode.LDC
    import org.gradle.kotlin.dsl.support.bytecode.NEW
    import org.gradle.kotlin.dsl.support.bytecode.PUTFIELD
    import org.gradle.kotlin.dsl.support.bytecode.RETURN
    import org.gradle.kotlin.dsl.support.bytecode.addKmProperty
    import org.gradle.kotlin.dsl.support.bytecode.internalName
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/MethodVisitorScope.java

    import static org.objectweb.asm.Opcodes.INVOKEVIRTUAL;
    import static org.objectweb.asm.Opcodes.IRETURN;
    import static org.objectweb.asm.Opcodes.NEW;
    import static org.objectweb.asm.Opcodes.POP;
    import static org.objectweb.asm.Opcodes.PUTFIELD;
    import static org.objectweb.asm.Opcodes.PUTSTATIC;
    import static org.objectweb.asm.Opcodes.RETURN;
    import static org.objectweb.asm.Opcodes.SWAP;
    import static org.objectweb.asm.Type.getMethodDescriptor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:29 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGenerator.java

            constructorVisitor.visitFieldInsn(PUTFIELD, generatedType.getInternalName(), STATE_FIELD_NAME, GENERATED_VIEW_STATE_TYPE.getDescriptor());
        }
    
        private void assignTypeConverterField(MethodVisitor constructorVisitor, Type generatedType) {
            putThisOnStack(constructorVisitor);
            putSecondMethodArgumentOnStack(constructorVisitor);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 55.3K bytes
    - Viewed (0)
  10. 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