Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 37 for Unreserve (0.63 sec)

  1. cmd/object-handlers.go

    	}
    	// Store the preserved compression metadata.
    	for k, v := range compressMetadata {
    		srcInfo.UserDefined[k] = v
    	}
    
    	// We need to preserve the encryption headers set in EncryptRequest,
    	// so we do not want to override them, copy them instead.
    	for k, v := range encMetadata {
    		srcInfo.UserDefined[k] = v
    	}
    
    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/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

      if (is_depthwise) {
        transpose_dims = {2, 0, 1, 3};
      } else {
        transpose_dims = {3, 0, 1, 2};
      }
    
      SmallVector<int64_t> new_filter_shape;
      new_filter_shape.reserve(filter_shape.size());
      for (int i = 0; i < filter_shape.size(); ++i) {
        new_filter_shape.push_back(filter_shape[transpose_dims[i]]);
      }
    
      auto get_array_idx = [](ArrayRef<int64_t> shape, const int i, const int j,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    // setting the Reuse field to true. Normally the module cache provides this
    // kind of reuse automatically; the -reuse flag can be useful on systems that
    // do not preserve the module cache.
    //
    // For more about build flags, see 'go help build'.
    //
    // For more about specifying packages, see 'go help packages'.
    //
    // For more about modules, see https://golang.org/ref/mod.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/asm6.go

    		// whole block, like the presence of long forward jumps.
    		reAssemble := false
    		for i := range s.R[nrelocs0:] {
    			s.R[nrelocs0+i] = obj.Reloc{}
    		}
    		s.R = s.R[:nrelocs0] // preserve marker relocations generated by the compiler
    		s.P = s.P[:0]
    		c = 0
    		var pPrev *obj.Prog
    		nops = nops[:0]
    		for p := s.Func().Text; p != nil; p = p.Link {
    			c0 := c
    			c = pjc.padJump(ctxt, s, p, c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. pkg/controller/daemon/daemon_controller_test.go

    	manager.podStore.Add(oldPodReady)
    
    	// create old ready pods on all other nodes
    	for i := 1; i < 5; i++ {
    		oldPod := newPod(fmt.Sprintf("node-%d-preserve-", i), fmt.Sprintf("node-%d", i), simpleDaemonSetLabel, ds)
    		delete(oldPod.Labels, apps.ControllerRevisionHashLabelKey)
    		oldPod.CreationTimestamp.Time = time.Unix(1, 0)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    //    This would lead to thread state thrashing, as the thread that readied the
    //    goroutine can be out of work the very next moment, we will need to park it.
    //    Also, it would destroy locality of computation as we want to preserve
    //    dependent goroutines on the same thread; and introduce additional latency.
    // 3. Unpark an additional thread whenever we ready a goroutine and there is an
    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. cluster/gce/gci/configure-helper.sh

      systemctl stop "$container_runtime_name"
      # Some images remount the container runtime root dir.
      umount "/var/lib/${container_runtime_name}" || true
      # Move the container runtime's directory to the new location to preserve
      # preloaded images.
      if [ ! -d "${ephemeral_mountpoint}/${container_runtime_name}" ]; then
        mv "/var/lib/${container_runtime_name}" "${ephemeral_mountpoint}/${container_runtime_name}"
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  8. src/net/http/server.go

    				olddir, _ := path.Split(oldpath)
    				url = olddir + url
    			}
    
    			var query string
    			if i := strings.Index(url, "?"); i != -1 {
    				url, query = url[:i], url[i:]
    			}
    
    			// clean up but preserve trailing slash
    			trailing := strings.HasSuffix(url, "/")
    			url = path.Clean(url)
    			if trailing && !strings.HasSuffix(url, "/") {
    				url += "/"
    			}
    			url += query
    		}
    	}
    
    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. src/cmd/link/internal/ld/data.go

    // history here.
    func splitTextSections(ctxt *Link) bool {
    	return (ctxt.IsARM() || ctxt.IsPPC64() || (ctxt.IsARM64() && ctxt.IsDarwin())) && ctxt.IsExternal()
    }
    
    // On Wasm, we reserve 4096 bytes for zero page, then 8192 bytes for wasm_exec.js
    // to store command line args and environment variables.
    // Data sections starts from at least address 12288.
    // Keep in sync with wasm_exec.js.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  10. src/reflect/value.go

    // or slice element in order to call a method that requires a
    // pointer receiver.
    func (v Value) Addr() Value {
    	if v.flag&flagAddr == 0 {
    		panic("reflect.Value.Addr of unaddressable value")
    	}
    	// Preserve flagRO instead of using v.flag.ro() so that
    	// v.Addr().Elem() is equivalent to v (#32772)
    	fl := v.flag & flagRO
    	return Value{ptrTo(v.typ()), v.ptr, fl | flag(Pointer)}
    }
    
    // Bool returns v's underlying value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top