Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for endClass (0.16 sec)

  1. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/TestWithClassPath.kt

    import org.gradle.kotlin.dsl.fixtures.classEntriesFor
    import org.gradle.kotlin.dsl.support.bytecode.InternalName
    import org.gradle.kotlin.dsl.support.bytecode.beginClass
    import org.gradle.kotlin.dsl.support.bytecode.endClass
    import org.gradle.kotlin.dsl.support.bytecode.publicDefaultConstructor
    import org.gradle.kotlin.dsl.support.zipTo
    
    import org.objectweb.asm.Opcodes.ACC_ABSTRACT
    import org.objectweb.asm.Opcodes.ACC_INTERFACE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/bytecode/AsmExtensions.kt

        superName: InternalName? = null,
        interfaces: List<InternalName>? = null,
        classBody: ClassWriter.() -> Unit = {}
    ) = beginPublicClass(name, superName, interfaces).run {
        classBody()
        endClass()
    }
    
    
    internal
    fun beginPublicClass(name: InternalName, superName: InternalName? = null, interfaces: List<InternalName>? = null) =
        beginClass(Opcodes.ACC_PUBLIC + Opcodes.ACC_FINAL, name, superName, interfaces)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/bytecode/AsmExtensions.kt

        superName: InternalName? = null,
        interfaces: List<InternalName>? = null,
        classBody: ClassWriter.() -> Unit = {}
    ) = beginPublicClass(name, superName, interfaces).run {
        classBody()
        endClass()
    }
    
    
    internal
    fun beginPublicClass(name: InternalName, superName: InternalName? = null, interfaces: List<InternalName>? = null) =
        beginClass(Opcodes.ACC_PUBLIC + Opcodes.ACC_FINAL, name, superName, interfaces)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/bytecode/KotlinMetadata.kt

        signature.desc,
        methodBody = methodBody
    )
    
    
    internal
    fun ClassWriter.endKotlinClass(classHeader: KotlinClassHeader): ByteArray {
        visitKotlinMetadataAnnotation(classHeader)
        return endClass()
    }
    
    
    /**
     * Writes the given [header] to the class file as a [kotlin.Metadata] annotation.
     **/
    private
    fun ClassWriter.visitKotlinMetadataAnnotation(header: KotlinClassHeader) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. src/go/types/methodset.go

    	}
    
    	// Start with typ as single entry at shallowest depth.
    	current := []embeddedType{{typ, nil, isPtr, false}}
    
    	// seen tracks named types that we have seen already, allocated lazily.
    	// Used to avoid endless searches in case of recursive types.
    	//
    	// We must use a lookup on identity rather than a simple map[*Named]bool as
    	// instantiated types may be identical but not equal.
    	var seen instanceLookup
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

            }
        }
    
        private String getMessage(String message, Throwable exception) {
            String fullMessage = (message != null) ? message : "";
    
            // To break out of possible endless loop when getCause returns "this", or dejaVu for n-level recursion (n>1)
            Set<Throwable> dejaVu = Collections.newSetFromMap(new IdentityHashMap<>());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 10:31:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/EvaluationContext.java

    import java.util.Set;
    import java.util.stream.Collectors;
    
    /**
     * This class keeps track of all objects being evaluated at the moment.
     * It helps to provide nicer error messages when the evaluation enters an endless cycle (A obtains a value of B which obtains a value of A).
     * <p>
     * Concurrent evaluation of same objects by multiple threads is still allowed.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 16:54:51 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. src/go/types/subst.go

    		// that has a type argument for it.
    		targs, updated := subst.typeList(t.TypeArgs().list())
    		if updated {
    			// Create a new instance and populate the context to avoid endless
    			// recursion. The position used here is irrelevant because validation only
    			// occurs on t (we don't call validType on named), but we use subst.pos to
    			// help with debugging.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/subst.go

    		// that has a type argument for it.
    		targs, updated := subst.typeList(t.TypeArgs().list())
    		if updated {
    			// Create a new instance and populate the context to avoid endless
    			// recursion. The position used here is irrelevant because validation only
    			// occurs on t (we don't call validType on named), but we use subst.pos to
    			// help with debugging.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. pkg/controller/volume/persistentvolume/delete_test.go

    //  5. When 3. does not do any changes, finish the tests and compare final set
    //     of volumes/claims with expected claims/volumes and report differences.
    //
    // Some limit of calls in enforced to prevent endless loops.
    func TestDeleteMultiSync(t *testing.T) {
    	tests := []controllerTest{
    		{
    			// delete failure - delete returns error. The controller should
    			// try again.
    			name:            "9-1 - delete returns error",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top