Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,052 for melhor (0.44 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/properties_providers.adoc

    A property may be _mutable_, meaning that it has both a `get()` method and `set()` method:
    
    ====
    include::sample[dir="snippets/providers/property/kotlin",files="build.gradle.kts[tags=prop-managed]"]
    include::sample[dir="snippets/providers/property/groovy",files="build.gradle[tags=prop-managed]"]
    ====
    
    Or _read-only_, meaning that it has only a `get()` method.
    The _read-only_ properties are _providers_:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/Optional.java

       *
       * <p><b>Comparison to {@code java.util.Optional}:</b> this method is similar to Java 8's {@code
       * Optional.orElseGet}, except when {@code supplier} returns {@code null}. In this case this
       * method throws an exception, whereas the Java 8+ method returns the {@code null} to the caller.
       *
       * @throws NullPointerException if this optional's value is absent and the supplier returns {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. src/net/http/readrequest_test.go

    			"Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7\r\n" +
    			"Keep-Alive: 300\r\n" +
    			"Content-Length: 7\r\n" +
    			"Proxy-Connection: keep-alive\r\n\r\n" +
    			"abcdef\n???",
    
    		&Request{
    			Method: "GET",
    			URL: &url.URL{
    				Scheme: "http",
    				Host:   "www.techcrunch.com",
    				Path:   "/",
    			},
    			Proto:      "HTTP/1.1",
    			ProtoMajor: 1,
    			ProtoMinor: 1,
    			Header: Header{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 14 22:23:32 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. guava/src/com/google/common/reflect/Types.java

        private static final ImmutableMap<String, Method> typeVariableMethods;
    
        static {
          ImmutableMap.Builder<String, Method> builder = ImmutableMap.builder();
          for (Method method : TypeVariableImpl.class.getMethods()) {
            if (method.getDeclaringClass().equals(TypeVariableImpl.class)) {
              try {
                method.setAccessible(true);
              } catch (AccessControlException e) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/AbstractPluginValidationIntegrationSpec.groovy

            expect:
            assertValidationFailsWith([
                error(methodShouldNotBeAnnotatedConfig { type('MyTask').kind('method').method('notAGetter').annotation('Input') }, 'validation_problems', 'ignored_annotations_on_method'),
                error(methodShouldNotBeAnnotatedConfig { type('MyTask.Options').kind('method').method('notANestedGetter').annotation('Input') }, 'validation_problems', 'ignored_annotations_on_method'),
            ])
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/named.go

    }
    
    // expandMethod substitutes type arguments in the i'th method for an
    // instantiated receiver.
    func (t *Named) expandMethod(i int) *Func {
    	// t.orig.methods is not lazy. origm is the method instantiated with its
    	// receiver type parameters (the "origin" method).
    	origm := t.inst.orig.Method(i)
    	assert(origm != nil)
    
    	check := t.check
    	// Ensure that the original method is type-checked.
    	if check != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/base/PreconditionsTest.java

      public void testAllOverloads_checkArgument() throws Exception {
        for (ImmutableList<Class<?>> sig : allSignatures(boolean.class)) {
          Method checkArgumentMethod =
              Preconditions.class.getMethod("checkArgument", sig.toArray(new Class<?>[] {}));
          checkArgumentMethod.invoke(null /* static method */, getParametersForSignature(true, sig));
    
          Object[] failingParams = getParametersForSignature(false, sig);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  8. okhttp-dnsoverhttps/src/test/java/okhttp3/dnsoverhttps/DnsOverHttpsTest.kt

        assertThat(result).contains(address("2a03:2880:f029:11:face:b00c:0:2"))
        val request1 = server.takeRequest()
        assertThat(request1.method).isEqualTo("GET")
        val request2 = server.takeRequest()
        assertThat(request2.method).isEqualTo("GET")
        assertThat(listOf(request1.path, request2.path))
          .containsExactlyInAnyOrder(
            "/lookup?ct&dns=AAABAAABAAAAAAAABmdvb2dsZQNjb20AAAEAAQ",
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/model/internal/type/ModelType.java

        }
    
        public static <T> ModelType<T> returnType(Method method) {
            return new Simple<T>(method.getGenericReturnType());
        }
    
        public static <T> ModelType<T> declaringType(Method method) {
            return new Simple<T>(method.getDeclaringClass());
        }
    
        @Nullable
        public static <T> ModelType<T> paramType(Method method, int i) {
            Type[] parameterTypes = method.getGenericParameterTypes();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskParametersIntegrationTest.groovy

            failureDescriptionContains(missingValueMessage { property('input') })
    
            where:
            method << ["file", "files", "dir"]
        }
    
        def "optional null input files registered via TaskInputs.#method are allowed"() {
            buildFile << """
                task test {
                    inputs.${method}({ null }) withPropertyName "input" optional(true)
                    doLast {}
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top