Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 356 for melhor (0.11 sec)

  1. src/net/http/clientserver_test.go

    	}
    	select {
    	case req = <-gotc:
    	default:
    		req = nil
    	}
    	if req == nil {
    		if method != "OPTIONS" {
    			t.Fatalf("handler never got request")
    		}
    		return
    	}
    	if req.Method != method {
    		t.Errorf("method = %q; want %q", req.Method, method)
    	}
    	if req.URL.Path != "*" {
    		t.Errorf("URL.Path = %q; want *", req.URL.Path)
    	}
    	if req.RequestURI != "*" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Ordering.java

       * status and second by priority, you might use {@code byStatus.compound(byPriority)}. For a
       * compound ordering with three or more components, simply chain multiple calls to this method.
       *
       * <p>An ordering produced by this method, or a chain of calls to this method, is equivalent to
       * one created using {@link Ordering#compound(Iterable)} on the same component comparators.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/Task.java

     *
     * <p>A {@code Task} has 4 'scopes' for properties. You can access these properties by name from the build file or by
     * calling the {@link #property(String)} method. You can change the value of these properties by calling the {@link #setProperty(String, Object)} method.</p>
     *
     * <ul>
     *
     * <li>The {@code Task} object itself. This includes any property getters and setters declared by the {@code Task}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/net/InetAddresses.java

       * the format specified by RFC 3986 section 3.2.2.
       *
       * <p>This method is similar to {@link InetAddresses#forString(String)}, however, it requires that
       * IPv6 addresses are surrounded by square brackets.
       *
       * <p>This method is the inverse of {@link InetAddresses#toUriString(java.net.InetAddress)}.
       *
       * <p>This method accepts non-ASCII digits, for example {@code "192.168.0.1"} (those are fullwidth
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationMessageBuilder.java

                return String.format("%s.%s", methodClass.getSimpleName(), methodWithParams);
            }
    
            @Override
            String formatSummary(String method) {
                return String.format("The %s method has been deprecated.", method);
            }
    
            @Override
            String formatAdvice(String replacement) {
                return pleaseUseThisMethodInstead(replacement);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ImmutableMap.java

         * called, in which case entries are sorted by value.
         *
         * <p>Prefer the equivalent method {@link #buildOrThrow()} to make it explicit that the method
         * will throw an exception if there are duplicate keys. The {@code build()} method will soon be
         * deprecated.
         *
         * @throws IllegalArgumentException if duplicate keys were added
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/net/InetAddresses.java

       * the format specified by RFC 3986 section 3.2.2.
       *
       * <p>This method is similar to {@link InetAddresses#forString(String)}, however, it requires that
       * IPv6 addresses are surrounded by square brackets.
       *
       * <p>This method is the inverse of {@link InetAddresses#toUriString(java.net.InetAddress)}.
       *
       * <p>This method accepts non-ASCII digits, for example {@code "192.168.0.1"} (those are fullwidth
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationLogger.java

        }
    
        /**
         * Output: The ${method} method has been deprecated.
         */
        @CheckReturnValue
        public static DeprecationMessageBuilder.DeprecateMethod deprecateMethod(Class<?> methodClass, String methodWithParams) {
            return new DeprecationMessageBuilder.DeprecateMethod(methodClass, methodWithParams);
        }
    
        /**
         * Output: Using method ${invocation} has been deprecated.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ir/func.go

    //
    // A method expression (T.M) is represented as an OMETHEXPR node,
    // in which n.Left and n.Right point to the type and method, respectively.
    // Each distinct mention of a method expression in the source code
    // constructs a fresh node.
    //
    // A method value (t.M) is represented by ODOTMETH/ODOTINTER
    // when it is called directly and by OMETHVALUE otherwise.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. src/go/types/unify.go

    				if p.identical(q) {
    					return true // same pair was compared before
    				}
    				p = p.prev
    			}
    			// The method set of x must be a subset of the method set
    			// of y or vice versa, and the common methods must unify.
    			xmethods := xset.methods
    			ymethods := yset.methods
    			// The smaller method set must be the subset, if it exists.
    			if len(xmethods) > len(ymethods) {
    				xmethods, ymethods = ymethods, xmethods
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
Back to top