Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 141 for resultCh (0.14 sec)

  1. maven-core/src/main/java/org/apache/maven/graph/DefaultGraphBuilder.java

                result = new ArrayList<>(projects);
                result.removeAll(excludedProjects);
    
                if (result.isEmpty()) {
                    boolean isPlural = excludedProjects.size() > 1;
                    String message = String.format(
                            "The project exclusion%s in --projects/-pl resulted in an "
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 09:23:26 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.cc

        }
    
        for (int i = 0; i < op->getNumResults(); ++i) {
          Value result = op->getResult(i);
          // If the result has been quantized, it should only be used by a
          // `quantfork::QuantizeCastOp`. For this case, we uses the quantized
          // result to create the state and mark it immutable.
          if (result.hasOneUse()) {
            Operation* user = result.use_begin().getUser();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tf_tfl_translate.cc

    enum TranslationStatus { kTrSuccess, kTrFailure };
    
    static int PrintFunctionResultMapping(const std::string &result,
                                          ModuleOp module) {
      // Build model from the resultant string to extract the return values from
      // their source of truth.
      auto model =
          tflite::FlatBufferModel::BuildFromBuffer(result.data(), result.size());
      if (!model) return kTrFailure;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 14K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter.go

    func (e *filter) CompilationErrors() []error {
    	compilationErrors := []error{}
    	for _, result := range e.compilationResults {
    		if result.Error != nil {
    			compilationErrors = append(compilationErrors, result.Error)
    		}
    	}
    	return compilationErrors
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 14:46:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  5. src/crypto/cipher/gcm_test.go

    	dst := make([]byte, len(ciphertext)-16)
    	for i := range dst {
    		dst[i] = 42
    	}
    
    	result, err := aesgcm.Open(dst[:0], nonce, ciphertext, nil)
    	if err == nil {
    		t.Fatal("Bad Open still resulted in nil error.")
    	}
    
    	if result != nil {
    		t.Fatal("Failed Open returned non-nil result.")
    	}
    
    	for i := range dst {
    		if dst[i] != 0 {
    			t.Fatal("Failed Open didn't zero dst buffer")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 25 15:27:49 UTC 2023
    - 35K bytes
    - Viewed (0)
  6. docs/fr/docs/tutorial/first-steps.md

    ```hl_lines="4"
    INFO:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    Cette ligne montre l'URL par laquelle l'app est actuellement accessible, sur votre machine locale.
    
    ### Allez voir le résultat
    
    Ouvrez votre navigateur à l'adresse <a href="http://127.0.0.1:8000" class="external-link" target="_blank">http://127.0.0.1:8000</a>.
    
    Vous obtiendrez cette réponse JSON :
    
    ```JSON
    {"message": "Hello World"}
    ```
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Sep 27 20:52:31 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

    		number = append(number, '"')
    		return result[:1+len(number)], nil
    	}
    	// if CanonicalizeBytes needed more space than our slice provided, we may need to allocate again so use
    	// append
    	result = result[:1]
    	result = append(result, number...)
    	result = append(result, suffix...)
    	result = append(result, '"')
    	return result, nil
    }
    
    func (q Quantity) MarshalCBOR() ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/cache/CacheStats.java

       * requests which resulted in either successful or failed loading attempts, and requests which
       * waited for other threads to finish loading. It is thus the case that {@code missCount &gt;=
       * loadSuccessCount + loadExceptionCount}. Multiple concurrent misses for the same key will result
       * in a single load operation.
       */
      public double missRate() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Aug 07 02:38:22 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/CacheStats.java

       * requests which resulted in either successful or failed loading attempts, and requests which
       * waited for other threads to finish loading. It is thus the case that {@code missCount &gt;=
       * loadSuccessCount + loadExceptionCount}. Multiple concurrent misses for the same key will result
       * in a single load operation.
       */
      public double missRate() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Aug 07 02:38:22 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    May be followed by a `because` text.
    
    | By conflict resolution : between versions <version>
    | The dependency appeared multiple times, with different version requests.
    This resulted in <<dependency_resolution#sec:version-conflict, conflict resolution>> to select the most appropriate version.
    
    | By constraint
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top