Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 510 for restoreAt (0.23 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/restore_function_name.cc

    // The stablehlo-restore-function-name Pass.
    //===----------------------------------------------------------------------===//
    
    namespace mlir::quant::stablehlo {
    
    #define GEN_PASS_DEF_RESTOREFUNCTIONNAMEPASS
    #include "tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.h.inc"
    
    namespace {
    
    // Restores entry function name from XlaCallModuleOp attribute.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 08:32:43 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/builder/testdata/append-insert-multi-restore.golden

    Leonardo Sarra <******@****.***> 1718116194 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 94 bytes
    - Viewed (0)
  3. src/cmd/compile/internal/typecheck/dcl.go

    // constructing fn, it must call FinishFuncBody to restore CurFunc.
    func DeclFunc(fn *ir.Func) {
    	fn.DeclareParams(true)
    	fn.Nname.Defn = fn
    	Target.Funcs = append(Target.Funcs, fn)
    
    	funcStack = append(funcStack, ir.CurFunc)
    	ir.CurFunc = fn
    }
    
    // FinishFuncBody restores ir.CurFunc to its state before the last
    // call to DeclFunc.
    func FinishFuncBody() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:15:50 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. pkg/registry/core/service/portallocator/allocator.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 port range doesn't exactly match the previous range.
    func (r *PortAllocator) Restore(pr net.PortRange, data []byte) error {
    	if pr.String() != r.portRange.String() {
    		return ErrMismatchedNetwork
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 07:15:02 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskSerializationIntegrationTest.groovy

                totalProblemsCount = 1
                problemsWithStackTraceCount = 0
            }
        }
    
        def "restores task fields whose value is an object graph with cycles"() {
            buildFile << """
                class SomeBean {
                    String value
                    SomeBean parent
                    SomeBean child
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top