Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 982 for melhor (0.27 sec)

  1. src/io/io.go

    // processing. A [Reader] that does not implement  ByteReader
    // can be wrapped using bufio.NewReader to add this method.
    type ByteReader interface {
    	ReadByte() (byte, error)
    }
    
    // ByteScanner is the interface that adds the UnreadByte method to the
    // basic ReadByte method.
    //
    // UnreadByte causes the next call to ReadByte to return the last byte read.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:34:10 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/LibrariesSourceGeneratorTest.groovy

            then:
            sources.assertClass('Libs')
        }
    
        def "generates an accessor for #name as method #method"() {
            when:
            generate {
                library(name, 'g:a:v')
            }
    
            then:
            sources.hasDependencyAlias(name, method)
    
            where:
            name                  | method
            'groovy'              | 'getGroovy'
            'groovy-json'         | 'getJson'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/cc/report_test.cc

      QuantizationResult result{};
      QuantizableUnit& quantizable_unit = *result.mutable_quantizable_unit();
      quantizable_unit.set_name("quantized_my_function");
    
      Method& method = *result.mutable_method();
      method.mutable_no_quantization();
    
      QuantizationReport report{};
      report.AddQuantizationResult(std::move(result));
    
      const QuantizationResults& results = report.GetQuantizationResults();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 10:10:34 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpClientHelper.java

                throw createHttpRequestException(method, wrapWithExplanation(e), request.getURI());
            }
        }
    
        @Nonnull
        private static HttpRequestException createHttpRequestException(String method, Throwable cause, URI uri) {
            return new HttpRequestException(String.format("Could not %s '%s'.", method, stripUserCredentials(uri)), cause);
        }
    
        private Exception wrapWithExplanation(IOException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_algorithm.py

        The HistogramMseSymmetric method starts from the center bin and expands the
        range to both sides. This works better when the data is well-centered.
    
        Returns:
          (min_value, max_value): Min and max calculated using the method starting
          from center and expanding.
        """
    
        # This function is currently only called in this method, but will be used in
        # other methods in the future.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ChainingHttpHandler.java

            final Lock lock;
            final Condition condition;
            final String method;
            final String url;
            Throwable failure;
            boolean completed;
    
            public RequestOutcome(Lock lock, String method, String url) {
                this.lock = lock;
                this.condition = lock.newCondition();
                this.method = method;
                this.url = url;
            }
    
            String getDisplayName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/AtomicLongMap.java

       * this method has no effect and returns zero.
       */
      @CanIgnoreReturnValue
      public long remove(K key) {
        Long result = map.remove(key);
        return (result == null) ? 0L : result.longValue();
      }
    
      /**
       * If {@code (key, value)} is currently in the map, this method removes it and returns true;
       * otherwise, this method returns false.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/testing/GcFinalization.java

       * invocation of finalize methods) and waits for it to complete. Ensures that at least one weak
       * reference has been cleared and one {@code finalize} method has been run before this method
       * returns. This method may be useful when testing the garbage collection mechanism itself, or
       * inhibiting a spontaneous GC initiation in subsequent code.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. src/net/http/client.go

    }
    
    // urlErrorOp returns the (*url.Error).Op value to use for the
    // provided (*Request).Method value.
    func urlErrorOp(method string) string {
    	if method == "" {
    		return "Get"
    	}
    	if lowerMethod, ok := ascii.ToLower(method); ok {
    		return method[:1] + lowerMethod[1:]
    	}
    	return method
    }
    
    // Do sends an HTTP request and returns an HTTP response, following
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 06:06:11 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Iterables.java

     * {@code Iterable}. Except as noted, each method has a corresponding {@link Iterator}-based method
     * in the {@link Iterators} class.
     *
     * <p><b>Java 8+ users:</b> several common uses for this class are now more comprehensively
     * addressed by the new {@link java.util.stream.Stream} library. Read the method documentation below
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 42.5K bytes
    - Viewed (0)
Back to top