Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 68 for Unreserve (2.66 sec)

  1. src/net/url/url_test.go

    	{
    		"http://[fe80::1%25%65%6e%301-._~]/", // percent-encoded+unreserved zone identifier
    		&URL{
    			Scheme: "http",
    			Host:   "[fe80::1%en01-._~]",
    			Path:   "/",
    		},
    		"http://[fe80::1%25en01-._~]/",
    	},
    	// host and port subcomponents; IPv6 address with zone identifier in RFC 6874
    	{
    		"http://[fe80::1%25%65%6e%301-._~]:8080/", // percent-encoded+unreserved zone identifier
    		&URL{
    			Scheme: "http",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  2. cmd/xl-storage.go

    			return res, osErrToFileErr(err)
    		}
    		diskHealthCheckOK(ctx, err)
    	}
    
    	// If we have oldDataDir then we must preserve current xl.meta
    	// as backup, in-case needing renames().
    	if res.OldDataDir != "" {
    		if contextCanceled(ctx) {
    			return res, ctx.Err()
    		}
    
    		// preserve current xl.meta inside the oldDataDir.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  3. kotlin-js-store/yarn.lock

      dependencies:
        has-flag "^4.0.0"
    
    supports-preserve-symlinks-flag@^1.0.0:
      version "1.0.0"
      resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09"
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 87.4K bytes
    - Viewed (0)
  4. cmd/kubelet/app/server.go

    			if len(kubeletFlags.KubeletConfigFile) > 0 || len(kubeletFlags.KubeletDropinConfigDirectory) > 0 {
    				// We must enforce flag precedence by re-parsing the command line into the new object.
    				// This is necessary to preserve backwards-compatibility across binary upgrades.
    				// See issue #56171 for more details.
    				if err := kubeletConfigFlagPrecedence(kubeletConfig, args); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  5. pkg/kubelet/status/status_manager_test.go

    		{Name: "init-test-3"},
    	}
    	testPod.Spec.Containers = []v1.Container{
    		{Name: "test-1"},
    		{Name: "test-2"},
    		{Name: "test-3"},
    	}
    	t.Logf("update the pod's status to Failed.  TerminatePod should preserve this status update.")
    	firstStatus := getRandomPodStatus()
    	firstStatus.Phase = v1.PodFailed
    	firstStatus.InitContainerStatuses = []v1.ContainerStatus{
    		{Name: "init-test-1"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  6. cmd/erasure-object.go

    	versionID := srcInfo.VersionID
    	if srcInfo.versionOnly {
    		versionID = dstOpts.VersionID
    		// preserve destination versionId if specified.
    		if versionID == "" {
    			versionID = mustGetUUID()
    			fi.IsLatest = true // we are creating a new version so this is latest.
    		}
    	}
    
    	modTime = UTCNow() // We only preserve modTime if dstOpts.MTime is true.
    	// in all other cases mtime is latest.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/buildlist.go

    	rs.graphOnce.Do(func() {
    		roots := MainModules.Versions()
    		if inWorkspaceMode() {
    			// Use rs.rootModules to pull in the go and toolchain roots
    			// from the go.work file and preserve the invariant that all
    			// of rs.rootModules are in mg.g.
    			roots = rs.rootModules
    		}
    		mg := &ModuleGraph{
    			g: mvs.NewGraph(cmpVersion, roots),
    		}
    
    		if rs.pruning == pruned {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. src/runtime/malloc.go

    	} else {
    		// On a 32-bit machine, we're much more concerned
    		// about keeping the usable heap contiguous.
    		// Hence:
    		//
    		// 1. We reserve space for all heapArenas up front so
    		// they don't get interleaved with the heap. They're
    		// ~258MB, so this isn't too bad. (We could reserve a
    		// smaller amount of space up front if this is a
    		// problem.)
    		//
    		// 2. We hint the heap to start right above the end of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        // Extract out all the constant indices' attributes and verify that data
        // types are static.
        SmallVector<DenseIntElementsAttr, 4> indices;
        indices.reserve(op.getN());
        for (auto it : llvm::zip(op.getIndices(), op.getData())) {
          Value index = std::get<0>(it);
          Value data = std::get<1>(it);
    
          DenseIntElementsAttr index_attr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

      TensorType zero_point_type = scale_type.clone(rewriter.getI32Type());
    
      llvm::SmallVector<float, 4> float_scales;
      llvm::SmallVector<int32_t, 4> int32_zero_points;
      float_scales.reserve(num_channels);
      int32_zero_points.reserve(num_channels);
      for (int i = 0; i < num_channels; ++i) {
        float_scales.push_back(scales[i]);
        int32_zero_points.push_back(zero_points[i]);
      }
      scale = rewriter.create<TF::ConstOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
Back to top