Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for Restore (0.13 sec)

  1. cmd/object-handlers.go

    			statusCode = http.StatusAccepted
    			alreadyRestored = true
    		}
    	}
    	// set or upgrade restore expiry
    	restoreExpiry := lifecycle.ExpectedExpiryTime(time.Now().UTC(), rreq.Days)
    	metadata := cloneMSS(objInfo.UserDefined)
    
    	// update self with restore metadata
    	if rreq.Type != SelectRestoreRequest {
    		objInfo.metadataOnly = true // Perform only metadata updates.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      //
      // `import_restore` is introduced to control whether restore graph
      // is imported in eg. SavedModelSignatureDefImporter. Ideally, we don't need
      // this option to control this as restore graph should be always imported.
      // However, right now, SavedModelSignatureDefImporter cannot handle restore
      // graph correctly.
      //
      // TODO(chky): Remove import_restore once the restore graph is correctly
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. cluster/gce/gci/configure-helper.sh

       addockeropt "\"mtu\": 1460,"
       addockeropt "\"storage-driver\": \"overlay2\","
       echo "setting live restore"
       # Disable live-restore if the environment variable is set.
       if [[ "${DISABLE_DOCKER_LIVE_RESTORE:-false}" == "true" ]]; then
          addockeropt "\"live-restore\": false,"
       else
          addockeropt "\"live-restore\": true,"
       fi
    }
    
    function assemble-docker-flags {
      echo "Assemble docker options"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      }
    
      return changed;
    }
    
    // Infer the shape of `Restore` and `RestoreV2` op based on the first
    // `AssignVariableOp` that uses the result. This requires that the resource
    // subtype inference is completed.
    bool ShapeInference::InferShapeForRestore(Operation* op) {
      DCOMMENT_OP(op, "Inferring shape for Restore,RestoreV2");
      // Currently only support single output.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    // since the g stored in the TLS by Go might be cleared in some platforms,
    // before the destructor invoked, so, we restore g by the stored g, before dropm.
    //
    // We store g0 instead of m, to make the assembly code simpler,
    // since we need to restore g0 in runtime.cgocallback.
    //
    // On systems without pthreads, like Windows, bindm shouldn't be used.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

                self._input_saved_model_path,
                quantization_options=options,
                representative_dataset=self._simple_model_data_gen(),
            )
          finally:
            # Restore the logger verbosity.
            logging.set_verbosity(prev_log_level)
    
          self.assertNotEmpty(info_logs.records)
          self.assertTrue(
              self._any_log_contains(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

        %3 = "tf.VarHandleOp"() {container = "", shared_name = "bar"} : () -> tensor<!tf_type.resource<tensor<128xbf16>>>
        // CHECK: "tf.Restore"({{.*}}) {device = ""} : (tensor<!tf_type.string>, tensor<1x!tf_type.string>) -> tensor<128xf32>
        %4 = "tf.Restore"(%arg0, %cst_0) {device = ""} : (tensor<!tf_type.string>, tensor<1x!tf_type.string>) -> tensor<*xf32>
        %5 = "tf.Identity"(%4) : (tensor<*xf32>) -> tensor<*xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  8. src/net/http/server.go

    			w.conn.bufw.WriteString("HTTP/1.1 100 Continue\r\n\r\n")
    			w.conn.bufw.Flush()
    			w.canWriteContinue.Store(false)
    		}
    		w.writeContinueMu.Unlock()
    	}
    	n, err = ecr.readCloser.Read(p)
    	if err == io.EOF {
    		ecr.sawEOF.Store(true)
    	}
    	return
    }
    
    func (ecr *expectContinueReader) Close() error {
    	ecr.closed.Store(true)
    	return ecr.readCloser.Close()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  9. pkg/proxy/nftables/proxier_test.go

    	if !expectedStaleChains.Equal(gotStaleChains) {
    		t.Errorf("expected stale chains %v, got %v", expectedStaleChains, gotStaleChains)
    	}
    	// Restore endpoints to non-empty immediately; its chains will be restored, and deleted from staleChains.
    	fp.OnEndpointSliceUpdate(eps3update3, eps3update2)
    	fp.syncProxyRules()
    	expected = baseRules + dedent.Dedent(`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  10. pkg/volume/util/operationexecutor/operation_generator.go

    	if err != nil {
    		msg := fmt.Errorf("error marking pvc %s for node expansion: %v", util.GetPersistentVolumeClaimQualifiedName(pvc), err)
    		return pvc, msg
    	}
    	// store old PVC capacity in pv, so as if PVC gets deleted while node expansion was pending
    	// we can restore size of pvc from PV annotation and still perform expansion on the node
    	oldCapacity := pvc.Status.Capacity[v1.ResourceStorage]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
Back to top