Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for methodName2 (0.2 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                }});
            }
    
            private void addSetter(String methodName, String methodDescriptor, BytecodeFragment body) {
                addSetter(methodName, methodDescriptor, null, body);
            }
    
            private void addSetter(String methodName, String methodDescriptor, @Nullable String signature, BytecodeFragment body) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  2. src/reflect/value.go

    		const prefix = "reflect.Value."
    		frame, more = frames.Next()
    		name := frame.Function
    		if len(name) > len(prefix) && name[:len(prefix)] == prefix {
    			methodName := name[len(prefix):]
    			if len(methodName) > 0 && 'A' <= methodName[0] && methodName[0] <= 'Z' {
    				return name
    			}
    		}
    	}
    	return "unknown method"
    }
    
    // nonEmptyInterface is the header for an interface value with methods.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    </p>
    
    <pre class="ebnf">
    InterfaceType      = "interface" "{" { ( MethodSpec | InterfaceTypeName ) ";" } "}" .
    MethodSpec         = MethodName Signature .
    MethodName         = identifier .
    InterfaceTypeName  = TypeName .
    </pre>
    
    <p>
    An interface type may specify methods <i>explicitly</i> through method specifications,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnostics.kt

            override val diagnosticClass get() = ReservedMemberFromInterfaceInsideValueClass::class
            val interfaceName: String
            val methodName: String
        }
    
        interface TypeArgumentOnTypedValueClassEquals : KaFirDiagnostic<KtTypeReference> {
            override val diagnosticClass get() = TypeArgumentOnTypedValueClassEquals::class
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 172.6K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnosticsImpl.kt

    internal class ReservedMemberFromInterfaceInsideValueClassImpl(
        override val interfaceName: String,
        override val methodName: String,
        firDiagnostic: KtPsiDiagnostic,
        token: KaLifetimeToken,
    ) : KaAbstractFirDiagnostic<KtClass>(firDiagnostic, token), KaFirDiagnostic.ReservedMemberFromInterfaceInsideValueClass
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 227.2K bytes
    - Viewed (0)
Back to top