Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 360 for Result (0.11 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

        result->old_to_new_output_indices.push_back(-1);
      }
    
      if (failed(FindResourceArgUseInfo(callee, &result->use_info))) {
        return failure();
      }
      if (result->use_info.empty()) {
        result->lifted_callee = nullptr;
        return success();
      }
    
      // Clone the callee before making changes.
      SmallString<64> name_base = callee.getName();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

            DefaultModelBuilderResult result = new DefaultModelBuilderResult();
    
            DefaultModelProblemCollector problems = new DefaultModelProblemCollector(result);
    
            // read and validate raw model
            Model fileModel = readFileModel(request, problems);
            result.setFileModel(fileModel);
    
            Model activatedFileModel = activateFileModel(fileModel, request, result, problems);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        Value result =
            rewriter.create<SelectV2Op>(loc, need_to_reflect, reflection, log_y);
    
        // lgamma(+/-inf) = +inf.
        Value is_inf = rewriter.create<IsInfOp>(loc, tensor_bool_type, input);
        result = rewriter.create<SelectV2Op>(loc, is_inf, infinity, result);
    
        if (needs_cast) {
          result = rewriter.create<CastOp>(loc, original_tensor_type, result);
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  4. cmd/object-api-multipart_test.go

    		// Test case with keyMarker less than 0. (Test number 20).
    		// {bucketNames[0], "", "min", "", "", -1, listMultipartResults[7], nil, true},
    		// The result contains only one entry. The  KeyPrefix is set to the object name in the result.
    		// Expecting the result to skip the KeyPrefix entry in the result (Test number 21).
    		{bucketNames[0], "", "minio-object", "", "", 2, listMultipartResults[8], nil, true},
    		// Test case containing prefix values.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

            // phase 1
            DefaultModelBuildingResult result = new DefaultModelBuildingResult();
    
            DefaultModelProblemCollector problems = new DefaultModelProblemCollector(result);
    
            // read and validate raw model
            Model fileModel = readFileModel(request, problems);
    
            request.setFileModel(fileModel);
            result.setFileModel(fileModel.clone());
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/Futures.java

      }
    
      /**
       * Returns a new {@code Future} whose result is asynchronously derived from the result of the
       * given {@code Future}. If the given {@code Future} fails, the returned {@code Future} fails with
       * the same exception (and the function is not invoked).
       *
       * <p>More precisely, the returned {@code Future} takes its result from a {@code Future} produced
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. pkg/kubelet/eviction/helpers.go

    	if len(statements) == 0 {
    		return nil, nil
    	}
    	results := []evictionapi.Threshold{}
    	for signal, val := range statements {
    		result, err := parseThresholdStatement(evictionapi.Signal(signal), val)
    		if err != nil {
    			return nil, err
    		}
    		if result != nil {
    			results = append(results, *result)
    		}
    	}
    	return results, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

       */
      fun newBuilder(): Builder {
        val result = Builder()
        result.scheme = scheme
        result.encodedUsername = encodedUsername
        result.encodedPassword = encodedPassword
        result.host = host
        // If we're set to a default port, unset it in case of a scheme change.
        result.port = if (port != defaultPort(scheme)) port else -1
        result.encodedPathSegments.clear()
        result.encodedPathSegments.addAll(encodedPathSegments)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/lower_tf.mlir

    // CHECK-SAME: %[[ARG0:.*]]: tensor<4xf32>
    func.func @_UnaryOpsComposition(%arg0: tensor<4xf32>) -> tensor<4xf32> {
    
      // CHECK: %[[RESULT0:.*]] = "tf.Asin"(%[[ARG0]])
      // CHECK: %[[RESULT1:.*]] = "tf.Abs"(%[[RESULT0]])
      // CHECK: %[[RESULT2:.*]] = "tf.Log"(%[[RESULT1]])
      // CHECK: return %[[RESULT2]]
    
      %0 = "tf._UnaryOpsComposition"(%arg0) {op_names = ["Asin", "Abs", "Log"]} : (tensor<4xf32>) -> tensor<4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 92K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

      (TFL_LogicalAndOp:$result $lhs, (Arith_ConstantOp:$rhs $constant)),
      (replaceWithValue $lhs),
      [(AllElementsAreBool<"true"> $constant), (HaveSameType $lhs, $result)]>;
    
    def EliminateLogicalAndFalse : Pat<
      (TFL_LogicalAndOp:$result $lhs, (Arith_ConstantOp:$rhs $constant)),
      (replaceWithValue $rhs),
      [(AllElementsAreBool<"false"> $constant), (HaveSameType $rhs, $result)]>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
Back to top