Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 114 for hilite (0.41 sec)

  1. docs/pt/docs/async.md

    ---
    
    Exemplos comuns de limite de CPU são coisas que exigem processamento matemático complexo.
    
    Por exemplo:
    
    * **Processamento de áudio** ou **imagem**
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/edit.go

    	//
    	// Then the proof of termination is this:
    	// On every iteration where we mark the roots as dirty, we add some new module
    	// version to the map. The universe of module versions is finite, so we must
    	// eventually reach a state in which we do not add any version to the map.
    	// In that state, we either report a conflict or succeed in the edit.
    	rejectedRoot := map[module.Version]bool{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/math/Quantiles.java

     * infinite value and itself, the infinite value is returned. If required to do a weighted average
     * between {@link Double#NEGATIVE_INFINITY NEGATIVE_INFINITY} and {@link Double#POSITIVE_INFINITY
     * POSITIVE_INFINITY}, {@link Double#NaN NaN} is returned (note that this will only happen if the
     * dataset contains no finite values).
     *
     * <h3>Performance</h3>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  4. pkg/registry/core/service/strategy.go

    	}
    
    	// NOTE: there are other fields like `selector` which we could wipe.
    	// Historically we did not wipe them and they are not allocated from
    	// finite pools, so we are (currently) choosing to leave them alone.
    
    	// Clear the load-balancer status if it is no longer appropriate.  Although
    	// LB de-provisioning is actually asynchronous, we don't need to expose the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:36 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.py

      # Check default quantization option values for weight-only quantization.
      # TODO(b/242805842): Find good minimum_elements_for_weights number for server.
      # please also update default value in tflite converter:
      # tensorflow/compiler/mlir/lite/tf_to_tfl_flatbuffer.cc;l=201
      if quantization_options.min_num_elements_for_weights == 0:
        quantization_options.min_num_elements_for_weights = (
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  6. tensorflow/cc/gradients/nn_grad_test.cc

    TEST_F(NNGradTest, LogSoftmaxGrad) {
      TensorShape shape({5, 3});
      auto x = Placeholder(scope_, DT_FLOAT, Placeholder::Shape(shape));
      auto y = LogSoftmax(scope_, x);
      // Avoid numerical instability when computing finite differences.
      Tensor x_init_value =
          test::AsTensor<float>({-0.9f, -0.7f, -0.5f, -0.3f, -0.1f, 0.1f, 0.3f,
                                 0.5f, 0.7f, 0.8f, -0.1f, 0.1f, 0.1f, 0.1f, 1.2f},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 22 20:45:22 UTC 2022
    - 15K bytes
    - Viewed (0)
  7. src/main/resources/fess_label_de.properties

    labels.facet_filetype_fb2=FictionBook
    labels.facet_filetype_epub=EPUB
    labels.facet_filetype_ibooks=iBooks
    labels.facet_filetype_txt=Einfacher Text
    labels.facet_filetype_rtf=Rich Text Format
    labels.facet_filetype_chm=Kompilierte HTML-Hilfe
    labels.facet_filetype_zip=ZIP-Archiv
    labels.facet_filetype_7z=7z-Archiv
    labels.facet_filetype_bz=Bz-Archiv
    labels.facet_filetype_bz2=Bz2-Archiv
    labels.facet_filetype_tar=TAR-Archiv
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/unidirectional_sequence_lstm.mlir

    // RUN: flatbuffer_translate -mlir-to-tflite-flatbuffer %s -o - | flatbuffer_to_string - | FileCheck %s
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 06 18:55:51 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  9. tensorflow/cc/gradients/math_grad_test.cc

      TensorShape shape({3, 2});
      auto x = Placeholder(scope_, DT_FLOAT, Placeholder::Shape(shape));
      auto y = Maximum(scope_, x, Const(scope_, 1.0f));
      // Select values away from 1.0f to avoid instability when computing
      // finite differences.
      Tensor x_init_value =
          test::AsTensor<float>({0.5f, 1.5f, -1.2f, 3.0f, 0.1f, 2.8f}, {3, 2});
      RunTest(x, x_init_value, y, shape);
    }
    
    TEST_F(NaryGradTest, Minimum) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 36K bytes
    - Viewed (0)
  10. guava/src/com/google/common/io/ByteSource.java

     * </ul>
     *
     * <p><b>Note:</b> In general, {@code ByteSource} is intended to be used for "file-like" sources
     * that provide streams that are:
     *
     * <ul>
     *   <li><b>Finite:</b> Many operations, such as {@link #size()} and {@link #read()}, will either
     *       block indefinitely or fail if the source creates an infinite stream.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 26.2K bytes
    - Viewed (0)
Back to top