Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,745 for Store2 (0.1 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/DefaultConfigurationResolver.java

        }
    
        @Override
        public ResolverResults resolveGraph(ResolveContext resolveContext) {
            StoreSet stores = storeFactory.createStoreSet();
    
            BinaryStore oldModelStore = stores.nextBinaryStore();
            Store<TransientConfigurationResults> oldModelCache = stores.oldModelCache();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/internal/configurationcache/ConfigurationCacheLoadBuildOperationType.java

        public interface Details {
        }
    
        public interface Result {
            /**
             * The number of bytes of the stored configuration cache entry.
             *
             * @since 8.6
             */
            long getCacheEntrySize();
    
            /**
             * The ID of the build that store the configuration cache entry.
             *
             * `null` when unknown, e.g. when loading models and not a task graph.
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 14 17:02:45 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. src/mime/type.go

    	extLower := strings.ToLower(extension)
    
    	mimeTypes.Store(extension, mimeType)
    	mimeTypesLower.Store(extLower, mimeType)
    
    	extensionsMu.Lock()
    	defer extensionsMu.Unlock()
    	var exts []string
    	if ei, ok := extensions.Load(justType); ok {
    		exts = ei.([]string)
    	}
    	for _, v := range exts {
    		if v == extLower {
    			return nil
    		}
    	}
    	extensions.Store(justType, append(exts, extLower))
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/internal/classpath/InPlaceClasspathBuilderTest.groovy

            def file = tmpDir.file("thing.zip")
    
            when:
            builder.jar(file) {
                it.put("store.txt", "bytes".bytes, ClasspathEntryVisitor.Entry.CompressionMethod.STORED)
                it.put("undefined.txt", "bytes".bytes, ClasspathEntryVisitor.Entry.CompressionMethod.UNDEFINED)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 14:05:09 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. pkg/controller/endpointslicemirroring/metrics/cache.go

    	maxEndpointsPerSlice int32
    
    	// lock protects changes to numEndpoints and cache.
    	lock sync.Mutex
    	// numEndpoints represents the total number of endpoints stored in
    	// EndpointSlices.
    	numEndpoints int
    	// cache stores a EndpointPortCache grouped by NamespacedNames representing
    	// Services.
    	cache map[types.NamespacedName]*EndpointPortCache
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/loopreschedchecks.go

    				continue
    			}
    			if v.Type.IsMemory() {
    				stores = append(stores, v)
    				for _, a := range v.Args {
    					if a.Block == b && a.Type.IsMemory() {
    						storeUse.add(a.ID)
    					}
    				}
    			}
    		}
    		if len(stores) == 0 {
    			lastMems[b.ID] = memPhi
    			continue
    		}
    
    		// find last store in the block
    		var last *Value
    		for _, v := range stores {
    			if storeUse.contains(v.ID) {
    				continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 21:17:10 UTC 2023
    - 16K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/WeakIdentityHashMap.java

    import java.lang.ref.WeakReference;
    import java.util.HashMap;
    import java.util.Set;
    
    /**
     * A specialized map wrapper, that uses weak references for keys and stores
     * values as strong references. It allows the garbage collector to collect keys when they are no longer in use.
     *
     * Keys are stored wrapped in {@code WeakIdentityHashMap.WeakKey} weak reference implementation, that uses {@code System.identityHashCode}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/service/LocalBuildCacheServiceHandle.java

        boolean canStore();
    
        /**
         * Stores the file to the local cache.
         *
         * If canStore() returns false, then this method will do nothing and will return false.
         *
         * Returns true if store was completed.
         */
        boolean maybeStore(BuildCacheKey key, File file);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 16:23:39 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. pkg/kubelet/util/store/filestore.go

    limitations under the License.
    */
    
    package store
    
    import (
    	"fmt"
    	"os"
    	"path/filepath"
    	"strings"
    
    	utilfs "k8s.io/kubernetes/pkg/util/filesystem"
    )
    
    const (
    	// Name prefix for the temporary files.
    	tmpPrefix = "."
    )
    
    // FileStore is an implementation of the Store interface which stores data in files.
    type FileStore struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 18 15:08:27 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/generator/XmlPersistableConfigurationObject.java

        @Override
        public void load(InputStream inputStream) throws Exception {
            xml = new XmlParser().parse(inputStream);
            load(xml);
        }
    
        @Override
        public void store(OutputStream outputStream) {
            store(xml);
            xmlTransformer.transform(xml, outputStream);
        }
    
        public Node getXml() {
            return xml;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top