Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 4,546 for method1 (1.74 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/Managed.java

     *
     * <h3>Properties</h3>
     * <p>
     * Managed types declare their structure as properties, via getter and setter methods.
     * Getter and setter methods are expected to conform to the well-known Java Bean naming conventions.
     * A read/write “name” property would be expressed via the following methods:
     * <pre>
     * void setName(String name);
     * String getName();
     * </pre>
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. 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)
  3. platforms/documentation/docs/src/snippets/java-library/quickstart/groovy/src/main/java/org/gradle/HttpClientWrapper.java

    import org.apache.http.client.HttpClient;
    import org.apache.http.client.methods.HttpGet;
    
    import java.io.ByteArrayOutputStream;
    import java.io.IOException;
    import java.io.UnsupportedEncodingException;
    
    public class HttpClientWrapper {
    
        private final HttpClient client; // private member: implementation details
    
        // HttpClient is used as a parameter of a public method
        // so "leaks" into the public API of this component
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/callee.go

    		return nil // Was not a Func.
    	}
    	return obj
    }
    
    // StaticCallee returns the target (function or method) of a static function
    // call, if any. It returns nil for calls to builtins.
    //
    // Note: for calls of instantiated functions and methods, StaticCallee returns
    // the corresponding generic function or method on the generic type.
    func StaticCallee(info *types.Info, call *ast.CallExpr) *types.Func {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/ui.go

    )
    
    // IntuitiveMethodSet returns the intuitive method set of a type T,
    // which is the set of methods you can call on an addressable value of
    // that type.
    //
    // The result always contains MethodSet(T), and is exactly MethodSet(T)
    // for interface types and for pointer-to-concrete types.
    // For all other concrete types T, the result additionally
    // contains each method belonging to *T if there is no identically
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. src/archive/zip/register.go

    // The common methods [Store] and [Deflate] are built in.
    func RegisterDecompressor(method uint16, dcomp Decompressor) {
    	if _, dup := decompressors.LoadOrStore(method, dcomp); dup {
    		panic("decompressor already registered")
    	}
    }
    
    // RegisterCompressor registers custom compressors for a specified method ID.
    // The common methods [Store] and [Deflate] are built in.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 18:36:46 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/plugin/ScriptPluginClassLoadingIntegrationTest.groovy

            output.contains "hello"
        }
    
        @Issue("https://issues.gradle.org/browse/GRADLE-3079")
        def "methods defined in script are available to used script plugins"() {
            given:
            buildScript """
              def addTask(project) {
                project.tasks.create("hello").doLast { println "hello from method" }
              }
    
              apply from: "script.gradle"
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/AlwaysFollowAndPreserveMethodRedirectStrategyTest.groovy

        def "should consider all requests redirectable"() {
            expect:
            new AllowFollowForMutatingMethodRedirectStrategy().isRedirectable(method)
    
            where:
            method << HTTP_METHODS
        }
    
        def "should get redirect for http method [#httpMethod]"() {
            setup:
            HttpRequest request = Mock()
            CloseableHttpResponse response = Mock()
            HttpContext context = Mock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/BeanDynamicObject.java

                    }
                }
    
                // Query the declared methods of the meta class
                for (MetaMethod method : metaClass.getMethods()) {
                    if (method.getName().equals("propertyMissing") && method.getParameterTypes().length == 1) {
                        return method;
                    }
                }
                return null;
            }
    
            @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  10. src/go/doc/reader.go

    	"unicode/utf8"
    )
    
    // ----------------------------------------------------------------------------
    // function/method sets
    //
    // Internally, we treat functions like methods and collect them in method sets.
    
    // A methodSet describes a set of methods. Entries where Decl == nil are conflict
    // entries (more than one method with the same name at the same embedding level).
    type methodSet map[string]*Func
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
Back to top