Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for refStore (0.25 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/net/http/server.go

    			} else {
    				reason = err.Error()
    			}
    			c.server.logf("http: TLS handshake error from %s: %v", c.rwc.RemoteAddr(), reason)
    			return
    		}
    		// Restore Conn-level deadlines.
    		if tlsTO > 0 {
    			c.rwc.SetReadDeadline(time.Time{})
    			c.rwc.SetWriteDeadline(time.Time{})
    		}
    		c.tlsState = new(tls.ConnectionState)
    		*c.tlsState = tlsConn.ConnectionState()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  7. pkg/volume/util/operationexecutor/operation_generator.go

    		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]
    	err = util.AddAnnPreResizeCapacity(pv, oldCapacity, og.kubeClient)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  8. src/net/http/serve_test.go

    func TestServerKeepAlivesEnabled(t *testing.T) { run(t, testServerKeepAlivesEnabled, testNotParallel) }
    func testServerKeepAlivesEnabled(t *testing.T, mode testMode) {
    	if mode == http2Mode {
    		restore := ExportSetH2GoawayTimeout(10 * time.Millisecond)
    		defer restore()
    	}
    	// Not parallel: messes with global variable. (http2goAwayTimeout)
    	cst := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {}))
    	defer cst.close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

       * roughly) 2.5s longer. (2.5s is also the maximum length of time we will wait for a timed get
       * that is expected to succeed; the fact that the numbers match is only a coincidence.) See the
       * comment below for how to restore the fast but hang-y version.
       */
      @J2ktIncompatible
      @GwtIncompatible // used only in GwtIncompatible tests
      private static List<String> conditionalPseudoTimedGetUninterruptibly(
          TestFutureBatch inputs,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

       * roughly) 2.5s longer. (2.5s is also the maximum length of time we will wait for a timed get
       * that is expected to succeed; the fact that the numbers match is only a coincidence.) See the
       * comment below for how to restore the fast but hang-y version.
       */
      @J2ktIncompatible
      @GwtIncompatible // used only in GwtIncompatible tests
      private static List<String> conditionalPseudoTimedGetUninterruptibly(
          TestFutureBatch inputs,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
Back to top