Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 688 for restoreAt (0.47 sec)

  1. cluster/images/etcd/migrate/migrate_client.go

    	}
    	return e.runEtcdctlCommand(version,
    		"--endpoints", e.endpoint(),
    		"snapshot", "save", snapshotFile,
    	)
    }
    
    // Restore restores a given snapshotFile into the data directory specified this clients config.
    func (e *CombinedEtcdClient) Restore(version *EtcdVersion, snapshotFile string) error {
    	// We cannot use etcd/clientv3 to make this call. It is implemented in the etcdctl client code.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 15 13:53:06 UTC 2021
    - 6.6K bytes
    - Viewed (0)
  2. cmd/veeam-sos-api.go

    //
    //   - <KbBlockSize>
    //     Veeam Block Size for backup and restore processing before compression is applied. The higher the block size, the more
    //     backup space is needed for incremental backups. Larger block sizes also mean less performance for random read restore
    //     methods like Instant Restore, File Level Recovery, and Database/Application restores. Veeam recommends that vendors
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 20 18:54:52 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h

    CreateDuplicateShapeDeterminingConstantsPass();
    
    // Creates a pass that creates a RestoreV2 op in the initializer function with
    // type "restore_op" that initializes variables from the checkpoint. It finds
    // tf.AssignVariableOp(tf.VarHandleOp, tf.Const) patterns in the initializer
    // function and replaces tf.Consts with the results of RestoreV2.
    std::unique_ptr<OperationPass<ModuleOp>> CreateInsertRestoreOpPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.h

    // attribute matches `initializer_type`. Returns a null op if it doesn't exist.
    func::FuncOp GetInitializerFunction(ModuleOp module_op,
                                        StringRef initializer_type);
    
    // Checks if the module restores variables from a Checkpoint.
    bool IsRestoreGraph(ModuleOp module);
    
    }  // namespace tf_saved_model
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 03:21:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. pkg/scheduler/util/assumecache/assume_cache.go

    	return nil
    }
    
    // Restore the informer cache's version of the object.
    func (c *AssumeCache) Restore(objName string) {
    	c.rwMutex.Lock()
    	defer c.rwMutex.Unlock()
    
    	objInfo, err := c.getObjInfo(objName)
    	if err != nil {
    		// This could be expected if object got deleted
    		c.logger.V(5).Info("Restore object", "description", c.description, "cacheKey", objName, "err", err)
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. docs/bucket/lifecycle/README.md

    ```
    aws s3api restore-object --bucket srcbucket \
    --key object \
    --restore-request Days=3
    ```
    
    ### 4.1 Monitoring transition events
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Aug 26 07:33:25 UTC 2023
    - 9K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/services/DefaultLoggingManager.java

                }
            }
    
            /**
             * Stops this logging system. Restores state from when started.
             */
            @Override
            public void stop() {
                try {
                    if (originalState != null) {
                        loggingSystem.restore(originalState);
                    }
                } finally {
                    enabled = false;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  8. src/runtime/asm_s390x.s

    	CMP	R1, $0
    	BEQ	nocgo
    	MOVD	$_rt0_s390x_lib_go(SB), R2
    	MOVD	$0, R3
    	BL	R1
    	BR	restore
    
    nocgo:
    	MOVD	$0x800000, R1              // stacksize
    	MOVD	R1, 0(R15)
    	MOVD	$_rt0_s390x_lib_go(SB), R1
    	MOVD	R1, 8(R15)                 // fn
    	MOVD	$runtime·newosproc(SB), R1
    	BL	R1
    
    restore:
    	// Restore F8-F15 from our stack frame.
    	FMOVD	16(R15), F8
    	FMOVD	24(R15), F9
    	FMOVD	32(R15), F10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:18:28 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  9. pkg/registry/core/service/ipallocator/bitmap.go

    	}
    	rangeString, data := snapshottable.Snapshot()
    	dst.Range = rangeString
    	dst.Data = data
    	return nil
    }
    
    // Restore restores the pool to the previously captured state. ErrMismatchedNetwork
    // is returned if the provided IPNet range doesn't exactly match the previous range.
    func (r *Range) Restore(net *net.IPNet, data []byte) error {
    	if !net.IP.Equal(r.net.IP) || net.Mask.String() != r.net.Mask.String() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 25 20:32:40 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  10. pkg/registry/core/service/allocator/bitmap.go

    func (r *AllocationBitmap) Snapshot() (string, []byte) {
    	r.lock.Lock()
    	defer r.lock.Unlock()
    
    	return r.rangeSpec, r.allocated.Bytes()
    }
    
    // Restore restores the pool to the previously captured state.
    func (r *AllocationBitmap) Restore(rangeSpec string, data []byte) error {
    	r.lock.Lock()
    	defer r.lock.Unlock()
    
    	if r.rangeSpec != rangeSpec {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 25 20:32:40 UTC 2023
    - 7.6K bytes
    - Viewed (0)
Back to top