Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,421 for METHOD (0.17 sec)

  1. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/ApiMemberWriter.java

        }
    
        protected void writeMethod(MethodMember method) {
            MethodVisitor mv = apiMemberAdapter.visitMethod(
                method.getAccess(), method.getName(), method.getTypeDesc(), method.getSignature(),
                method.getExceptions().toArray(new String[0]));
            writeMethodAnnotations(mv, method.getAnnotations());
            writeMethodAnnotations(mv, method.getParameterAnnotations());
            mv.visitEnd();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/RuleSourceValidationProblemCollector.java

     */
    
    package org.gradle.model.internal.inspect;
    
    import java.lang.reflect.Method;
    
    public interface RuleSourceValidationProblemCollector extends ValidationProblemCollector {
        void add(MethodRuleDefinition<?, ?> method, String problem);
    
        void add(MethodRuleDefinition<?, ?> method, String problem, Throwable cause);
    
        void add(Method method, String problem);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 982 bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/stdlib.go

    	return
    }
    
    // SplitMethod splits the method symbol name into pointer, receiver,
    // and method components. It must be called only on Method symbols.
    //
    // Example: "(*Buffer).Grow" -> (true, "Buffer", "Grow")
    func (sym *Symbol) SplitMethod() (ptr bool, recv, name string) {
    	if sym.Kind != Method {
    		panic("not a method")
    	}
    	recv, name, _ = strings.Cut(sym.Name, ".")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildTaskLifecycleIntegrationTest.groovy

        void '#method can not reference tasks from another build'() {
            given:
            buildA.buildFile << """
                task a {
                    $method gradle.includedBuild('buildB').task(':b')
                }
            """
    
            def buildB = singleProjectBuild("buildB") {
                buildFile << """
                    task b {
                        $method 'c'
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 03 19:28:39 UTC 2022
    - 3K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/AbstractServiceMethod.java

    import java.lang.reflect.Method;
    import java.lang.reflect.Type;
    
    abstract class AbstractServiceMethod implements ServiceMethod {
        private final Method method;
        private final Class<?> owner;
        private final String name;
        private final Type[] parameterTypes;
        private final Type serviceType;
    
        AbstractServiceMethod(Method target) {
            this.method = target;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. mockwebserver-deprecated/src/main/kotlin/okhttp3/mockwebserver/PushPromise.kt

    import okhttp3.Headers
    
    class PushPromise(
      @get:JvmName("method") val method: String,
      @get:JvmName("path") val path: String,
      @get:JvmName("headers") val headers: Headers,
      @get:JvmName("response") val response: MockResponse,
    ) {
      @JvmName("-deprecated_method")
      @Deprecated(
        message = "moved to val",
        replaceWith = ReplaceWith(expression = "method"),
        level = DeprecationLevel.ERROR,
      )
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. src/errors/wrap.go

    package errors
    
    import (
    	"internal/reflectlite"
    )
    
    // Unwrap returns the result of calling the Unwrap method on err, if err's
    // type contains an Unwrap method returning error.
    // Otherwise, Unwrap returns nil.
    //
    // Unwrap only calls a method of the form "Unwrap() error".
    // In particular Unwrap does not unwrap errors returned by [Join].
    func Unwrap(err error) error {
    	u, ok := err.(interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:04 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/tasks/options/FieldOptionElement.java

            private final Method getter;
            private final Field field;
            private final Class<?> elementType;
    
            public PropertyFieldSetter(Method getter, Field field) {
                this(getter, field, ModelType.of(getter.getGenericReturnType()).getTypeVariables().get(0).getRawClass());
            }
    
            public PropertyFieldSetter(Method getter, Field field, Class<?> elementType) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 11 11:28:20 UTC 2023
    - 7K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/Model.java

    import java.lang.annotation.Target;
    
    /**
     * Denotes that the {@link RuleSource} method rule carrying this annotation creates a new top level element in the model space.
     * <p>
     * The method must advertise a name and type for the model element.
     * The name is defined either by the name of the method, or the {@link #value} of this annotation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/ObjectConnectionBuilder.java

         * Use the given Classloader to deserialize method parameters for method invocations received from the peer, for those types where Java serialization is used.
         */
        void useJavaSerializationForParameters(ClassLoader incomingMessageClassLoader);
    
        /**
         * Adds a set of specified serializers for incoming and outgoing method parameters. For any types that are not known to any registry added using this method, then Java serialization is used.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top