Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for destroys (0.61 sec)

  1. tensorflow/c/c_api.h

    TF_CAPI_EXPORT extern void TF_SetConfig(TF_SessionOptions* options,
                                            const void* proto, size_t proto_len,
                                            TF_Status* status);
    
    // Destroy an options object.
    TF_CAPI_EXPORT extern void TF_DeleteSessionOptions(TF_SessionOptions*);
    
    // TODO(jeff,sanjay):
    // - export functions to set Config fields
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  2. src/internal/trace/order.go

    	// GoSwitch and GoSwitchDestroy represent a trio of events:
    	// - Unblock of the goroutine to switch to.
    	// - Block or destroy of the current goroutine.
    	// - Start executing the next goroutine.
    	//
    	// Because it acts like a GoStart for the next goroutine, we can
    	// only advance it if the sequence numbers line up.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/proxier.go

    	// Clear iptables created by ipvs Proxier.
    	encounteredError = cleanupIptablesLeftovers(ctx, ipt) || encounteredError
    	// Destroy ip sets created by ipvs Proxier.  We should call it after cleaning up
    	// iptables since we can NOT delete ip set which is still referenced by iptables.
    	for _, set := range ipsetInfo {
    		err = ipset.DestroySet(set.name)
    		if err != nil {
    			if !utilipset.IsNotFoundError(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	}
    	key := prefix + "/" + name
    	return key, nil
    }
    
    // New implements RESTStorage.New.
    func (e *Store) New() runtime.Object {
    	return e.NewFunc()
    }
    
    // Destroy cleans up its resources on shutdown.
    func (e *Store) Destroy() {
    	if e.DestroyFunc != nil {
    		e.DestroyFunc()
    	}
    }
    
    // NewList implements rest.Lister.
    func (e *Store) NewList() runtime.Object {
    	return e.NewListFunc()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/filesystem/filesystem_interface.h

      ///
      /// NOTE: TensorFlow does not unload DSOs. Thus, the only way a filesystem
      /// won't be registered anymore is if this function gets called by core
      /// TensorFlow and the `TF_Filesystem*` object is destroyed. However, due to
      /// registration being done in a static instance of `Env`, the destructor of
      /// `FileSystem` is never called (see
      /// https://github.com/tensorflow/tensorflow/issues/27535). In turn, this
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
Back to top