Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for restoreAt (0.2 sec)

  1. cmd/object-handlers.go

    			MTime:     objInfo.ModTime,
    		}); err != nil {
    			writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrInvalidObjectState), r.URL)
    			return
    		}
    		// for previously restored object, just update the restore expiry
    		if alreadyRestored {
    			return
    		}
    	}
    
    	restoreObject := mustGetUUID()
    	if rreq.OutputLocation.S3.BucketName != "" {
    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. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            gcFile.lastModified = daysAgo(2)
    
            and:
            // start as new process so journal is not restored from in-memory cache
            executer.withTasks("help").start().waitForFinish()
    
            then:
            outputDir1.assertDoesNotExist()
            outputDir2.assertExists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K 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. 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)
  5. 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)
  6. 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)
  7. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        fully_connected_op.setOperand(0, reshape_input);
        return success();
      }
    };
    
    // Remove Reshape after FullyConnected when `keep_num_dims=false`, the Reshape
    // does not alter the last dimension and it restores the batch dimensions
    // collapsed by the FullyConnected op due to `keep_num_dims=false`. For example,
    //
    //   // %input: tensor<4x16x32xf32>
    //   %fc = tfl.fully_connected(%input, %filter, %bias)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  8. src/net/http/server.go

    // AllowQuerySemicolons returns a handler that serves requests by converting any
    // unescaped semicolons in the URL query to ampersands, and invoking the handler h.
    //
    // This restores the pre-Go 1.17 behavior of splitting query parameters on both
    // semicolons and ampersands. (See golang.org/issue/25192). Note that this
    // behavior doesn't match that of many proxies, and the mismatch can lead to
    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. 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)
Back to top