Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 243 for Function1 (0.14 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
    
    // Implements the helper function for {ASSERT|EXPECT}_NE
    GTEST_IMPL_CMP_HELPER_(NE, !=);
    // Implements the helper function for {ASSERT|EXPECT}_LE
    GTEST_IMPL_CMP_HELPER_(LE, <=);
    // Implements the helper function for {ASSERT|EXPECT}_LT
    GTEST_IMPL_CMP_HELPER_(LT, <);
    // Implements the helper function for {ASSERT|EXPECT}_GE
    GTEST_IMPL_CMP_HELPER_(GE, >=);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  2. src/cmd/cgo/out.go

    	if init != "" {
    		// The init function does nothing but simple
    		// assignments, so it won't use much stack space, so
    		// it's OK to not split the stack. Splitting the stack
    		// can run into a bug in clang (as of 2018-11-09):
    		// this is a leaf function, and when clang sees a leaf
    		// function it won't emit the split stack prologue for
    		// the function. However, if this function refers to a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let summary =
        "returns `f(inputs)`, where `f` is a function.";
    
      let description = [{
        The LegacyCall operation represents a direct call to a function that is
        within the same symbol scope as the call and is mapped to a GraphDef node
        with the function name as the op name. Unlike a PartitionedCall which
        represents asynchronously executing a function across multiple devices, a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    To call a Kotlin extension function from Groovy, call it as a static function, passing the receiver as the first parameter:
    
    .Calling a Kotlin extension from Groovy
    ====
    include::sample[dir="snippets/kotlinDsl/interoperability-static-extensions/kotlin",files="build.gradle[tags=kotlin-from-groovy]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/zz_generated.conversion.go

    	runtime "k8s.io/apimachinery/pkg/runtime"
    	apiserver "k8s.io/apiserver/pkg/apis/apiserver"
    )
    
    func init() {
    	localSchemeBuilder.Register(RegisterConversions)
    }
    
    // RegisterConversions adds conversion functions to the given scheme.
    // Public to allow building arbitrary schemes.
    func RegisterConversions(s *runtime.Scheme) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 50K bytes
    - Viewed (0)
  6. pkg/apis/flowcontrol/v1beta3/zz_generated.conversion.go

    	runtime "k8s.io/apimachinery/pkg/runtime"
    	flowcontrol "k8s.io/kubernetes/pkg/apis/flowcontrol"
    )
    
    func init() {
    	localSchemeBuilder.Register(RegisterConversions)
    }
    
    // RegisterConversions adds conversion functions to the given scheme.
    // Public to allow building arbitrary schemes.
    func RegisterConversions(s *runtime.Scheme) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:41 UTC 2023
    - 53.1K bytes
    - Viewed (0)
  7. pkg/apis/flowcontrol/v1beta1/zz_generated.conversion.go

    	runtime "k8s.io/apimachinery/pkg/runtime"
    	flowcontrol "k8s.io/kubernetes/pkg/apis/flowcontrol"
    )
    
    func init() {
    	localSchemeBuilder.Register(RegisterConversions)
    }
    
    // RegisterConversions adds conversion functions to the given scheme.
    // Public to allow building arbitrary schemes.
    func RegisterConversions(s *runtime.Scheme) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 53.5K bytes
    - Viewed (0)
  8. pkg/apis/flowcontrol/v1beta2/zz_generated.conversion.go

    	runtime "k8s.io/apimachinery/pkg/runtime"
    	flowcontrol "k8s.io/kubernetes/pkg/apis/flowcontrol"
    )
    
    func init() {
    	localSchemeBuilder.Register(RegisterConversions)
    }
    
    // RegisterConversions adds conversion functions to the given scheme.
    // Public to allow building arbitrary schemes.
    func RegisterConversions(s *runtime.Scheme) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 53.5K bytes
    - Viewed (0)
  9. pkg/apis/flowcontrol/v1/zz_generated.conversion.go

    	runtime "k8s.io/apimachinery/pkg/runtime"
    	flowcontrol "k8s.io/kubernetes/pkg/apis/flowcontrol"
    )
    
    func init() {
    	localSchemeBuilder.Register(RegisterConversions)
    }
    
    // RegisterConversions adds conversion functions to the given scheme.
    // Public to allow building arbitrary schemes.
    func RegisterConversions(s *runtime.Scheme) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:41 UTC 2023
    - 52.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

          self, graphdef: graph_pb2.GraphDef
      ) -> bool:
        """Determines if the graph def has quantized function call.
    
        Args:
          graphdef: A GraphDef object.
    
        Returns:
          True if and only if the graph def contains a quantized function call.
        """
        return any(map(self._is_quantized_function, graphdef.library.function))
    
      def _contains_composite_function_call(
          self, graphdef: graph_pb2.GraphDef
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
Back to top