Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for createLong (0.08 sec)

  1. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryConcurrencyTest.groovy

                    return value.toString()
                }
    
                @Provides
                Integer createInteger() {
                    return 12
                }
    
                @Provides
                Long createLong(BigDecimal value) {
                    return value.longValue()
                }
    
                @Provides
                BigDecimal createBigDecimal() {
                    return 123
                }
            })
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. tensorflow/cc/ops/while_loop.cc

      TF_RETURN_IF_ERROR(scope.DoShapeInference(merge_node));
      *merge_output = Output(merge_node, 0);
      return absl::OkStatus();
    }
    
    // Creates the condition subgraph defined by `cond`.
    Status CreateCond(const Scope& scope, const CondGraphBuilderFn& cond,
                      const std::vector<Output>& inputs, Output* output) {
      // The control dependency is for constants in the cond graph, and other ops
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 01:01:21 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top