Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for InternalName (0.22 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgramCompiler.kt

                KotlinScriptHost::class.internalName,
                "getTarget",
                "()Ljava/lang/Object;"
            )
            CHECKCAST(expectedType.internalName)
        }
    
        private
        fun MethodVisitor.emitApplyEmptyPluginRequestsTo() {
            ALOAD(Vars.ProgramHost)
            ALOAD(Vars.ScriptHost)
            GETSTATIC(
                MultiPluginRequests::class.internalName,
                "EMPTY",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/Emitter.kt

        binDir: File?,
        outputPackage: OutputPackage,
        format: AccessorFormat,
        moduleName: String,
        useLowPriorityOverloadResolution: Boolean
    ): InternalName {
    
        val (simpleClassName, fragments) = fragmentsFor(accessor)
        val className = InternalName("${outputPackage.path}/$simpleClassName")
        val sourceCode = mutableListOf<String>()
    
        fun collectSourceFragment(source: String) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/AccessorFragments.kt

        INVOKESTATIC(InternalName("org/gradle/kotlin/dsl/accessors/runtime/RuntimeKt"), function, desc)
    }
    
    
    private
    fun hashOf(accessorSpec: TypedAccessorSpec) =
        hashString(accessorSpec.toString()).toCompactString()
    
    
    private
    fun TypeAccessibility.Accessible.internalName() =
        type.value.concreteClass.internalName
    
    
    private
    fun MethodVisitor.invokeAction() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/KtFe10JvmTypeMapperContext.kt

                }
    
                if (declaration.kind != ClassKind.INTERFACE && declaration.kind != ClassKind.ANNOTATION_CLASS) {
                    val internalName = computeClassInternalName(declaration)
                    if (internalName != null) {
                        return internalName
                    }
                } else if (interfaceSupertypeInternalName == null) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/bytecode/KotlinMetadata.kt

    
    internal
    fun jvmGetterSignatureFor(pluginsExtension: ExtensionSpec): JvmMethodSignature = jvmGetterSignatureFor(
        pluginsExtension.name,
        accessorDescriptorFor(pluginsExtension.receiverType.internalName, pluginsExtension.returnType.internalName)
    )
    
    
    internal
    fun jvmGetterSignatureFor(propertyName: String, desc: String): JvmMethodSignature =
        // Accessors honor the kotlin property jvm interop convention.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/WorkerProcessClassPathProvider.java

                }
    
                return result;
            }
    
            private void remapClass(Class<?> classToMap, ZipOutputStream jar) throws IOException {
                String internalName = Type.getInternalName(classToMap);
                String resourceName = internalName.concat(".class");
                URL resource = WorkerProcessClassPathProvider.class.getClassLoader().getResource(resourceName);
                if (resource == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiTypeProvider.kt

                visitBinaryName("kotlin.Array")
                isArray = true
                typeArguments.add(it)
            }
    
        override fun visitClassType(internalName: String) =
            visitBinaryName(binaryNameOfInternalName(internalName))
    
        override fun visitInnerClassType(localName: String) {
            binaryName += "${'$'}$localName"
        }
    
        override fun visitTypeArgument() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 19:56:10 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/conversion.go

    					// We only care about listeners on the same protocol
    					continue
    				}
    				bannedHostnames.Insert(gw.OriginalHostname)
    			}
    			rpi := routeParentReference{
    				InternalName:      pr.InternalName,
    				InternalKind:      ir.Kind,
    				Hostname:          pr.OriginalHostname,
    				DeniedReason:      referenceAllowed(pr, kind, pk, hostnames, localNamespace),
    				OriginalReference: ref,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/MethodVisitorScope.java

        }
    
        public void _CHECKCAST(Type type) {
            _CHECKCAST(type.getInternalName());
        }
    
        private void _CHECKCAST(String internalName) {
            super.visitTypeInsn(CHECKCAST, internalName);
        }
    
        public void _INSTANCEOF(Type type) {
            super.visitTypeInsn(INSTANCEOF, type.getInternalName());
        }
    
        public void _ILOAD_OF(Type type, int var) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:29 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top