Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,588 for Storep (0.14 sec)

  1. src/internal/runtime/atomic/atomic_s390x.go

    //go:noinline
    func LoadAcq64(ptr *uint64) uint64 {
    	return *ptr
    }
    
    //go:nosplit
    //go:noinline
    func LoadAcquintptr(ptr *uintptr) uintptr {
    	return *ptr
    }
    
    //go:noescape
    func Store(ptr *uint32, val uint32)
    
    //go:noescape
    func Store8(ptr *uint8, val uint8)
    
    //go:noescape
    func Store64(ptr *uint64, val uint64)
    
    // NO go:noescape annotation; see atomic_pointer.go.
    func StorepNoWB(ptr unsafe.Pointer, val unsafe.Pointer)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. src/runtime/mcheckmark.go

    package runtime
    
    import (
    	"internal/goarch"
    	"internal/runtime/atomic"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    // A checkmarksMap stores the GC marks in "checkmarks" mode. It is a
    // per-arena bitmap with a bit for every word in the arena. The mark
    // is stored on the bit corresponding to the first word of the marked
    // allocation.
    type checkmarksMap struct {
    	_ sys.NotInHeap
    	b [heapArenaBytes / goarch.PtrSize / 8]uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_utils.h

    // Given a DictionaryAttr, checks if it has a DenseIntElementsAttr attribute
    // with the name attr_name. If so, extracts its values and stores as a vector
    // of int32_t elements.
    // Note: This assumes the DenseIntElementsAttr has its values stored as int64_t.
    bool GetI32VectorFromDenseI64CompositeAttr(
        const DictionaryAttr& composite_attrs, const std::string& attr_name,
        std::vector<int32_t>* out_vec);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 18:33:05 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. pilot/pkg/model/typed_xds_cache.go

    	}
    	cache.store = newLru(cache.onEvict)
    	return cache
    }
    
    type evictKeyConfigs[K comparable] struct {
    	key              K
    	dependentConfigs []ConfigHash
    }
    
    type lruCache[K comparable] struct {
    	enableAssertions bool
    	store            simplelru.LRUCache[K, cacheValue]
    	// token stores the latest token of the store, used to prevent stale data overwrite.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. src/runtime/cgo/gcc_linux_ppc64x.S

    .file "gcc_linux_ppc64x.S"
    
    // Define a frame which has no argument space, but is compatible with
    // a call into a Go ABI. We allocate 32B to match FIXED_FRAME with
    // similar semantics, except we store the backchain pointer, not the
    // LR at offset 0. R2 is stored in the Go TOC save slot (offset 24).
    .set GPR_OFFSET, 32
    .set FPR_OFFSET, GPR_OFFSET + 18*8
    .set VR_OFFSET, FPR_OFFSET + 18*8
    .set FRAME_SIZE, VR_OFFSET + 12*16
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 18:03:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/constants/constants.go

    	KubeadmConfigConfigMap = "kubeadm-config"
    
    	// ClusterConfigurationConfigMapKey specifies in what ConfigMap key the cluster configuration should be stored
    	ClusterConfigurationConfigMapKey = "ClusterConfiguration"
    
    	// KubeProxyConfigMap specifies in what ConfigMap in the kube-system namespace the kube-proxy configuration should be stored
    	KubeProxyConfigMap = "kube-proxy"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  7. src/compress/flate/huffman_bit_writer.go

    	// Always use dynamic Huffman or Store
    	var numCodegens int
    
    	// Generate codegen and codegenFrequencies, which indicates how to encode
    	// the literalEncoding and the offsetEncoding.
    	w.generateCodegen(numLiterals, numOffsets, w.literalEncoding, huffOffset)
    	w.codegenEncoding.generate(w.codegenFreq[:], 7)
    	size, numCodegens := w.dynamicSize(w.literalEncoding, huffOffset, 0)
    
    	// Store bytes, if we don't get a reasonable improvement.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:59:14 UTC 2022
    - 18.4K bytes
    - Viewed (0)
  8. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/operations/StoreOperationResult.java

        public static final BuildCacheRemoteStoreBuildOperationType.Result NOT_STORED = new StoreOperationResult(false);
    
        private final boolean stored;
    
        private StoreOperationResult(boolean stored) {
            this.stored = stored;
        }
    
        @Override
        public boolean isStored() {
            return stored;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. src/internal/concurrent/hashtriemap.go

    	if oldEntry == nil {
    		// Easy case: create a new entry and store it.
    		slot.Store(&newEntry.node)
    	} else {
    		// We possibly need to expand the entry already there into one or more new nodes.
    		//
    		// Publish the node last, which will make both oldEntry and newEntry visible. We
    		// don't want readers to be able to observe that oldEntry isn't in the tree.
    		slot.Store(ht.expand(oldEntry, newEntry, hash, hashShift, i))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. src/internal/runtime/atomic/atomic_s390x.s

    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    
    // func Store(ptr *uint32, val uint32)
    TEXT ·Store(SB), NOSPLIT, $0
    	MOVD	ptr+0(FP), R2
    	MOVWZ	val+8(FP), R3
    	MOVW	R3, 0(R2)
    	SYNC
    	RET
    
    // func Store8(ptr *uint8, val uint8)
    TEXT ·Store8(SB), NOSPLIT, $0
    	MOVD	ptr+0(FP), R2
    	MOVB	val+8(FP), R3
    	MOVB	R3, 0(R2)
    	SYNC
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top