Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,498 for runActions (0.17 sec)

  1. tensorflow/c/experimental/saved_model/core/tf_saved_model_api.cc

          context, bundle.saved_object_graph(), &revived_objects));
    
      // Revive function library functions as concrete functions without captures.
      // This is necessary because object graph functions may refer to functions
      // _not_ in the object graph: A while loop, for example, will create two
      // auxiliary `while_cond` and `while_body` functions that are only present in
      // the graph def function library.
      for (const FunctionDef& function :
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 09:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/grad_op_registry.h

                               const std::vector<Output>& grad_inputs,
                               std::vector<Output>* grad_outputs);
    
    /// GradOpRegistry maintains a static registry of gradient functions.
    /// Gradient functions are indexed in the registry by the forward op name (i.e.
    /// "MatMul" -> MatMulGrad func).
    class GradOpRegistry {
     public:
      /// Registers 'func' as the gradient function for 'op'.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 15:33:58 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  3. test/live_uintptrkeepalive.go

    // Test escape analysis and liveness inferred for uintptrkeepalive functions.
    //
    // This behavior is enabled automatically for function declarations with no
    // bodies (assembly, linkname), as well as explicitly on complete functions
    // with //go:uintptrkeepalive.
    //
    // This is most important for syscall.Syscall (and similar functions), so we
    // test it explicitly.
    
    package p
    
    import (
    	"syscall"
    	"unsafe"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/saved_model/core/revived_types/restored_resource.h

    // "_destroy_resource" functions:
    // https://github.com/tensorflow/tensorflow/blob/139ba9c5284799beafdd1d7f895127cf00e7c48f/tensorflow/python/training/tracking/tracking.py#L262-L281
    class RestoredResource : TensorHandleConvertible {
     public:
      // Note(bmzhao): RestoredResource stores non-owning pointers to its associated
      // functions because SavedModel internally owns all functions and objects in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 23 04:49:47 UTC 2020
    - 4.6K bytes
    - Viewed (0)
  5. pkg/apis/abac/v0/register.go

    	AddToScheme = localSchemeBuilder.AddToScheme
    )
    
    func init() {
    	// We only register manually written functions here. The registration of the
    	// generated functions takes place in the generated files. The separation
    	// makes the code compile even when the generated files are missing.
    	localSchemeBuilder.Register(addKnownTypes)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 28 20:14:20 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  6. pkg/apis/abac/v1beta1/register.go

    	AddToScheme = localSchemeBuilder.AddToScheme
    )
    
    func init() {
    	// We only register manually written functions here. The registration of the
    	// generated functions takes place in the generated files. The separation
    	// makes the code compile even when the generated files are missing.
    	localSchemeBuilder.Register(addKnownTypes, RegisterDefaults)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 28 20:14:20 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  7. pkg/controller/daemon/config/v1alpha1/conversion.go

    )
    
    // Important! The public back-and-forth conversion functions for the types in this package
    // with DaemonSetControllerConfiguration types need to be manually exposed like this in order for
    // other packages that reference this package to be able to call these conversion functions
    // in an autogenerated manner.
    // TODO: Fix the bug in conversion-gen so it automatically discovers these Convert_* functions
    // in autogenerated code as well.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 26 15:15:33 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  8. pkg/controller/garbagecollector/config/v1alpha1/conversion.go

    )
    
    // Important! The public back-and-forth conversion functions for the types in this package
    // with GarbageCollectorControllerConfiguration types need to be manually exposed like this in order for
    // other packages that reference this package to be able to call these conversion functions
    // in an autogenerated manner.
    // TODO: Fix the bug in conversion-gen so it automatically discovers these Convert_* functions
    // in autogenerated code as well.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  9. pkg/controller/resourcequota/config/v1alpha1/conversion.go

    )
    
    // Important! The public back-and-forth conversion functions for the types in this package
    // with ResourceQuotaControllerConfiguration types need to be manually exposed like this in order for
    // other packages that reference this package to be able to call these conversion functions
    // in an autogenerated manner.
    // TODO: Fix the bug in conversion-gen so it automatically discovers these Convert_* functions
    // in autogenerated code as well.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  10. src/go/doc/testdata/b.2.golden

    	var MaxInt int	// MaxInt
    
    	// 
    	var V notExported
    
    	// 
    	var V1, V2, V4, V5 notExported
    
    
    FUNCTIONS
    	// Associated with comparable type if AllDecls is set. 
    	func ComparableFactory() comparable
    
    	// 
    	func F(x int) int
    
    	// 
    	func F1() notExported
    
    	// Always under the package functions list. 
    	func NotAFactory() int
    
    	// Associated with uint type if AllDecls is set. 
    	func UintFactory() uint
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 11 16:05:02 UTC 2022
    - 766 bytes
    - Viewed (0)
Back to top