Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 196 for Storep (0.13 sec)

  1. src/runtime/malloc.go

    // The heap consists of a set of arenas, which are 64MB on 64-bit and
    // 4MB on 32-bit (heapArenaBytes). Each arena's start address is also
    // aligned to the arena size.
    //
    // Each arena has an associated heapArena object that stores the
    // metadata for that arena: the heap bitmap for all words in the arena
    // and the span map for all pages in the arena. heapArena objects are
    // themselves allocated off-heap.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conversion.go

    	return fmt.Sprintf("%v-%v", name, kgw.GatewayClassName)
    }
    
    func convertGateways(r configContext) ([]config.Config, map[parentKey][]*parentInfo, sets.String) {
    	// result stores our generated Istio Gateways
    	result := []config.Config{}
    	// gwMap stores an index to access parentInfo (which corresponds to a Kubernetes Gateway)
    	gwMap := map[parentKey][]*parentInfo{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. src/syscall/syscall_windows.go

    //sys	CertOpenSystemStore(hprov Handle, name *uint16) (store Handle, err error) = crypt32.CertOpenSystemStoreW
    //sys   CertOpenStore(storeProvider uintptr, msgAndCertEncodingType uint32, cryptProv uintptr, flags uint32, para uintptr) (handle Handle, err error) = crypt32.CertOpenStore
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/CacheBuilder.java

      <K1 extends K, V1 extends V> Weigher<K1, V1> getWeigher() {
        return (Weigher<K1, V1>) MoreObjects.firstNonNull(weigher, OneWeigher.INSTANCE);
      }
    
      /**
       * Specifies that each key (not value) stored in the cache should be wrapped in a {@link
       * WeakReference} (by default, strong references are used).
       *
       * <p><b>Warning:</b> when this method is used, the resulting cache will use identity ({@code ==})
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  5. cluster/gce/windows/k8s-node-setup.psm1

        #
        # storage.metrics on
    
        # storage.path
        # ------------
        # absolute file system path to store filesystem data buffers (chunks).
        #
        # storage.path /tmp/storage
    
        # storage.sync
        # ------------
        # configure the synchronization mode used to store the data into the
        # filesystem. It can take the values normal or full.
        #
        # storage.sync normal
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/xcoff.go

    	C_LSYM    = 129 // Automatic variable allocated on stack
    	C_PSYM    = 130 // Argument to subroutine allocated on stack
    	C_RSYM    = 131 // Register variable
    	C_RPSYM   = 132 // Argument to function or procedure stored in register
    	C_STSYM   = 133 // Statically allocated symbol
    	C_BCOMM   = 135 // Beginning of common block
    	C_ECOML   = 136 // Local member of common block
    	C_ECOMM   = 137 // End of common block
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/regalloc.go

    // of that block. Together with the value ID is a count of how many instructions
    // to the next use of that value. The resulting map is stored in s.live.
    // computeLive also computes the desired register information at the end of each block.
    // This desired register information is stored in s.desired.
    // TODO: this could be quadratic if lots of variables are live across lots of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/init.go

    }
    
    type whichSums int8
    
    const (
    	loadedZipSumsOnly = whichSums(iota)
    	addBuildListZipSums
    )
    
    // modkey returns the module.Version under which the checksum for m's go.mod
    // file is stored in the go.sum file.
    func modkey(m module.Version) module.Version {
    	return module.Version{Path: m.Path, Version: m.Version + "/go.mod"}
    }
    
    func suggestModulePath(path string) string {
    	var m string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  9. docs/changelogs/changelog_3x.md

     *  Fix: Avoid using invalid HTTPS sessions. This prevents OkHttp from crashing
        with the error, `Unexpected TLS version: NONE`.
     *  Fix: Don't corrupt the response cache when a 304 (Not Modified) response
        overrides the stored "Content-Encoding" header.
     *  Fix: Gracefully shut down the HTTP/2 connection before it exhausts the
        namespace of stream IDs (~536 million streams).
     *  Fix: Never pass a null `Route` to `Authenticator`. There was a bug where
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

            auto const_loc = TensorLoc(const_tensor, builder, base_loc);
            StatusOr<Operation*> op_or_err;
            std::vector<uint8_t> buffer;
            // Check if constant tensor is stored outside of the flatbuffers.
            if (IsValidBufferOffset(buffers[const_tensor.buffer]->offset)) {
              const uint8_t* file_begin_ptr =
                  reinterpret_cast<const uint8_t*>(model_ptr->allocation()->base());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
Back to top