Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 651 for storeVcs (0.11 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/store/ResolutionResultsStoreFactoryTest.groovy

        ResolutionResultsStoreFactory f = new ResolutionResultsStoreFactory(TestFiles.tmpDirTemporaryFileProvider(tmpDir.testDirectory))
    
        def "provides binary stores"() {
            def stores = f.createStoreSet()
            def store1 = stores.nextBinaryStore()
            def store2 = stores.nextBinaryStore()
    
            expect:
            store1 != store2
            store1 == f.createStoreSet().nextBinaryStore()
        }
    
        def "rolls the file"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. src/sync/atomic/doc.go

    // will escape to the heap) can be relied upon to be 64-bit aligned.
    
    // SwapInt32 atomically stores new into *addr and returns the previous *addr value.
    // Consider using the more ergonomic and less error-prone [Int32.Swap] instead.
    func SwapInt32(addr *int32, new int32) (old int32)
    
    // SwapInt64 atomically stores new into *addr and returns the previous *addr value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/store/ResolutionResultsStoreFactory.java

            this.maxSize = maxSize;
        }
    
        private final Map<String, DefaultBinaryStore> stores = new HashMap<>();
        private final CompositeStoppable cleanUpLater = new CompositeStoppable();
    
        private synchronized DefaultBinaryStore createBinaryStore(String storeKey) {
            DefaultBinaryStore store = stores.get(storeKey);
            if (store == null || isFull(store) || store.isInUse()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/memcombine.go

    	defer f.retSparseSet(mark)
    	var order []*Value
    
    	for _, b := range f.Blocks {
    		// Mark all stores which are not last in a store sequence.
    		mark.clear()
    		for _, v := range b.Values {
    			if v.Op == OpStore {
    				mark.add(v.MemoryArg().ID)
    			}
    		}
    
    		// pick an order for visiting stores such that
    		// later stores come earlier in the ordering.
    		order = order[:0]
    		for _, v := range b.Values {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/schedule.go

    		return values
    	}
    
    	f := values[0].Block.Func
    
    	// find all stores
    
    	// Members of values that are store values.
    	// A constant bound allows this to be stack-allocated. 64 is
    	// enough to cover almost every storeOrder call.
    	stores := make([]*Value, 0, 64)
    	hasNilCheck := false
    	sset.clear() // sset is the set of stores that are used in other values
    	for _, v := range values {
    		if v.Type.IsMemory() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. src/math/pow10.go

    package math
    
    // pow10tab stores the pre-computed values 10**i for i < 32.
    var pow10tab = [...]float64{
    	1e00, 1e01, 1e02, 1e03, 1e04, 1e05, 1e06, 1e07, 1e08, 1e09,
    	1e10, 1e11, 1e12, 1e13, 1e14, 1e15, 1e16, 1e17, 1e18, 1e19,
    	1e20, 1e21, 1e22, 1e23, 1e24, 1e25, 1e26, 1e27, 1e28, 1e29,
    	1e30, 1e31,
    }
    
    // pow10postab32 stores the pre-computed value for 10**(i*32) at index i.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.java

                    if (stores == null) {
                        if (_storess < 0 || _storess > 0xFFFF) throw new NdrException( NdrException.INVALID_CONFORMANCE );
                        stores = new DfsStorageInfo[_storess];
                    }
                    _src = _src.derive(_storesi);
                    for (int _i = 0; _i < _storess; _i++) {
                        if (stores[_i] == null) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 15K bytes
    - Viewed (0)
  8. pkg/config/analysis/local/istiod_analyze.go

    )
    
    // IstiodAnalyzer handles local analysis of k8s event sources, both live and file-based
    type IstiodAnalyzer struct {
    	// internalStore stores synthetic configs for analysis (mesh config, etc)
    	internalStore model.ConfigStore
    	// stores contains all the (non file) config sources to analyze
    	stores []model.ConfigStoreController
    	// multiClusterStores contains all the multi-cluster config sources to analyze
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:13 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  9. pkg/config/analysis/local/context.go

    )
    
    // NewContext allows tests to use istiodContext without exporting it.  returned context is not threadsafe.
    func NewContext(stores map[cluster.ID]model.ConfigStore, cancelCh <-chan struct{}, collectionReporter CollectionReporterFn) analysis.Context {
    	return &istiodContext{
    		stores:             stores,
    		cancelCh:           cancelCh,
    		messages:           map[string]*diag.Messages{},
    		collectionReporter: collectionReporter,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resource/cached/DefaultArtifactResolutionCacheTest.groovy

        def setup() {
            index = new DefaultCachedExternalResourceIndex("index", BaseSerializerFactory.STRING_SERIALIZER, timeProvider, cacheAccessCoordinator, fileAccessTracker, tmp.testDirectory.toPath())
        }
    
        def "stores entry - lastModified = #lastModified"() {
            given:
            def key = "key"
            def artifactFile = tmp.createFile("artifact") << "content"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top