Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 140 for checkpoint2 (0.2 sec)

  1. SECURITY.md

    variables from your model are also going to be untrusted. That means that if
    your code interacts with the filesystem, network, etc. and uses checkpointed
    variables as part of those interactions (ex: using a string variable to build a
    filesystem path), a maliciously created checkpoint might be able to change the
    targets of those operations, which could result in arbitrary
    read/write/executions.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Oct 01 06:06:35 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  2. pkg/kubelet/checkpointmanager/README.md

    |kubelet/dockershim | Feb 3, 2017 | [[CRI] Implement Dockershim Checkpoint](https://github.com/kubernetes/kubernetes/pull/39903)
    |devicemanager| Sep 6, 2017 | [Deviceplugin checkpoint](https://github.com/kubernetes/kubernetes/pull/51744)
    | kubelet/pod | Nov 22, 2017 | [Initial basic bootstrap-checkpoint support](https://github.com/kubernetes/kubernetes/pull/50984)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 16 05:30:20 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  3. tensorflow/c/checkpoint_reader.h

    #include "tensorflow/core/util/tensor_bundle/tensor_bundle.h"
    #include "tensorflow/core/util/tensor_slice_reader.h"
    
    namespace tensorflow {
    namespace checkpoint {
    
    class TensorSliceReader;
    
    // A wrapper around BundleReader (for V2 checkpoints) and
    // checkpoint::TensorSliceReader (for V1), that is more easily SWIG wrapped for
    // other languages.
    //
    // The class currently only interacts with single-slice (i.e., non-partitioned)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/dra/state/state_checkpoint_test.go

    	assert.NoError(t, err, "could not store checkpoint data")
    
    	checkpoint := NewDRAManagerCheckpoint()
    	err = cpm.GetCheckpoint(testingCheckpoint, checkpoint)
    	assert.NoError(t, err, "could not restore checkpoint")
    
    	checkpointData, err := checkpoint.MarshalCheckpoint()
    	assert.NoError(t, err, "could not Marshal Checkpoint")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/devicemanager/manager.go

    // depending on whether the node has been recreated. Absence of the checkpoint file strongly indicates the node
    // has been recreated.
    func (m *ManagerImpl) ShouldResetExtendedResourceCapacity() bool {
    	checkpoints, err := m.checkpointManager.ListCheckpoints()
    	if err != nil {
    		return false
    	}
    	return len(checkpoints) == 0
    }
    
    func (m *ManagerImpl) setPodPendingAdmission(pod *v1.Pod) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
  6. pkg/kubelet/status/status_manager.go

    }
    
    // GetPodResizeStatus returns the last checkpointed ResizeStaus value
    // If checkpoint manager has not been initialized, it returns nil, false
    func (m *manager) GetPodResizeStatus(podUID string) (v1.PodResizeStatus, bool) {
    	m.podStatusesLock.RLock()
    	defer m.podStatusesLock.RUnlock()
    	return m.state.GetPodResizeStatus(podUID)
    }
    
    // SetPodAllocation checkpoints the resources allocated to a pod's containers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  7. tensorflow/cc/saved_model/metrics.cc

        "/tensorflow/core/checkpoint/sharding/num_checkpoint_shards_written",
        "Number of checkpoint shard files written during saving.");
    
    // String gauge which describes the callback used to shard the checkpoint during
    // saving.
    auto* sharding_callback_description = monitoring::Gauge<std::string, 0>::New(
        "/tensorflow/core/checkpoint/sharding/callback_description",
        "Describes the callback used to shard the checkpoint during saving.");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.h

      bool duplicate_shape_determining_constants = true;
    
      // If set to `true`, unfreezes constants into variables and saves them to a
      // checkpoint file. Setting this to `true` is an experimental feature that has
      // no stability guarantees.
      bool unfreeze_constants = false;
    
      // Path to the directory where checkpoint files are saved.
      std::string checkpoint_dir = "";
    
      // Name used to identify the ModuleOp this is exporting. Only used for
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/dra/claiminfo.go

    }
    
    // newClaimInfoCache creates a new claim info cache object, pre-populated from a checkpoint (if present).
    func newClaimInfoCache(stateDir, checkpointName string) (*claimInfoCache, error) {
    	stateImpl, err := state.NewCheckpointState(stateDir, checkpointName)
    	if err != nil {
    		return nil, fmt.Errorf("could not initialize checkpoint manager, please drain node and remove dra state file, err: %+v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:30:31 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/saved_model/core/ops/restore_ops_test.cc

      EagerContext* context() { return ctx_.get(); }
    
     private:
      std::unique_ptr<StaticDeviceMgr> device_mgr_;
      EagerContextPtr ctx_;
    };
    
    // One way of obtaining the checkpointa checkpoint's tensor names is:
    // bazel run //tensorflow/python/tools:inspect_checkpoint -- --all_tensors
    // --file_name="$CKPT_PREFIX".
    // Here are the values for VarsAndArithmeticObjectGraph:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 19:16:58 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top