Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 688 for restoreAt (0.15 sec)

  1. pkg/kubelet/status/state/state_checkpoint.go

    		//lint:ignore ST1005 user-facing error message
    		return nil, fmt.Errorf("could not restore state from checkpoint: %v, please drain this node and delete pod allocation checkpoint file %q before restarting Kubelet", err, path.Join(stateDir, checkpointName))
    	}
    	return stateCheckpoint, nil
    }
    
    // restores state from a checkpoint and creates it if it doesn't exist
    func (sc *stateCheckpoint) restoreState() error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 00:16:44 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/pointers/KtSymbolPointer.kt

    /**
     * [KaSymbol] is valid only during read action it was created in
     * To pass the symbol from one read action to another the KtSymbolPointer should be used
     *
     * We can restore the symbol
     *  * for symbol which came from Kotlin source it will be restored based on [com.intellij.psi.SmartPsiElementPointer]
     *  * restoring symbols which came from Java source is not supported yet
     *  * for library symbols:
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/services/DefaultLoggingManagerTest.groovy

            0 * javaUtilLoggingSystem._
    
            when:
            loggingManager.stop()
    
            then:
            1 * slf4jLoggingSystem.restore(slf4jSnapshot)
            1 * javaUtilLoggingSystem.restore(javaUtilSnapshot)
            1 * loggingRouter.restore(routerSnapshot)
            0 * loggingRouter._
            0 * slf4jLoggingSystem._
            0 * javaUtilLoggingSystem._
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  4. cmd/bucket-lifecycle.go

    }
    
    // Expiry returns expiry of restored object and true if restore-object has completed.
    // Otherwise returns zero value of time.Time and false.
    func (r restoreObjStatus) Expiry() (time.Time, bool) {
    	if r.Ongoing() {
    		return time.Time{}, false
    	}
    	return r.expiry, true
    }
    
    // Ongoing returns true if restore-object is ongoing.
    func (r restoreObjStatus) Ongoing() bool {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/import_restore_v1.py

    # CHECK-SAME: min_consumer
    # CHECK-SAME: producer
    
    # CHECK: tf_saved_model.session_initializer
    # CHECK-SAME: initializers = [@[[restore:.*]]]
    
    # CHECK: "tf_saved_model.asset"()
    # CHECK-SAME: <{filename = [[filename:.*]], sym_name = "[[sym_name:.*]]"}> : () -> ()
    
    # CHECK:      func @[[restore]](
    # CHECK-SAME:   [[variable_path:%.*]]: tensor<!tf_type.string> {tf_saved_model.bound_input = @[[sym_name]]}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/dra/state/state_checkpoint_test.go

    func assertStateEqual(t *testing.T, restoredState, expectedState ClaimInfoStateList) {
    	assert.Equal(t, expectedState, restoredState, "expected ClaimInfoState does not equal to restored one")
    }
    
    // TODO (https://github.com/kubernetes/kubernetes/issues/123552): reconsider what data gets stored in checkpoints and whether that is really necessary.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/ops/io_ops.h

    #include "tensorflow/c/eager/abstract_context.h"
    #include "tensorflow/c/eager/abstract_tensor_handle.h"
    
    namespace tensorflow {
    namespace ops {
    
    // Restores tensors from a V2 checkpoint.
    Status RestoreV2(AbstractContext* ctx, AbstractTensorHandle* const prefix,
                     AbstractTensorHandle* const tensor_names,
                     AbstractTensorHandle* const shape_and_slices,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 17 17:54:34 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  8. cmd/bucket-lifecycle_test.go

    		restoreStatus restoreObjStatus
    		ondisk        bool
    	}{
    		{
    			// restore in progress
    			restoreStatus: ongoingRestoreObj(),
    			ondisk:        false,
    		},
    		{
    			// restore completed but expired
    			restoreStatus: completedRestoreObj(time.Now().Add(-time.Hour)),
    			ondisk:        false,
    		},
    		{
    			// restore completed
    			restoreStatus: completedRestoreObj(time.Now().Add(time.Hour)),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 31 09:57:57 UTC 2022
    - 7K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/config/LoggingSystem.java

    /**
     * Some configurable logging system, whose state can be snapshot, mutated and restored.
     */
    public interface LoggingSystem {
        /**
         * Snapshots the current configuration state of this logging system.
         */
        Snapshot snapshot();
    
        /**
         * Resets this logging system to some previous configuration state.
         */
        void restore(Snapshot state);
    
        interface Snapshot {
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/saved_model/core/ops/restore_ops.h

    #include "tensorflow/core/framework/types.pb.h"
    #include "tensorflow/core/platform/status.h"
    
    namespace tensorflow {
    namespace internal {
    
    // TODO(bmzhao): Add a function to restore multiple tensors in one call.
    
    // Restores a single non-partioned tensorhandle of dtype `dtype`, using
    // checkpoint at `prefix`, with a value stored in `checkpoint_key`.
    Status SingleRestore(ImmediateExecutionContext* ctx, const std::string& prefix,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 21:44:45 UTC 2022
    - 1.6K bytes
    - Viewed (0)
Back to top