Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for InternalName (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
Back to top