Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,929 for Store2 (0.14 sec)

  1. guava/src/com/google/common/collect/AbstractSetMultimap.java

       * values.
       */
      @Override
      public Map<K, Collection<V>> asMap() {
        return super.asMap();
      }
    
      /**
       * Stores a key-value pair in the multimap.
       *
       * @param key key to store in the multimap
       * @param value value to store in the multimap
       * @return {@code true} if the method increased the size of the multimap, or {@code false} if the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 21:08:00 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/store/ResolutionResultsStoreFactory.java

            DefaultBinaryStore store = stores.get(storeKey);
            if (store == null || isFull(store) || store.isInUse()) {
                File storeFile = temp.createTemporaryFile("gradle", ".bin");
                storeFile.deleteOnExit();
                store = new DefaultBinaryStore(storeFile);
                stores.put(storeKey, store);
                cleanUpLater.add(store);
            }
            return store;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. docs/kms/IAM.md

    - Run MinIO without a KMS. In this case all IAM data will be stored in plain-text.
    - Run MinIO with a single secret key. MinIO supports a static cryptographic key
      that can act as minimal KMS. With this method all IAM data will be stored
      encrypted. The encryption key has to be passed as environment variable.
    - Run MinIO with KES (minio/kes) in combination with any supported KMS as
      secure key store. For example, you can run MinIO + KES + Hashicorp Vault.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.3K 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/internal/coverage/defs.go

    // stored/represented in the counter section of the file.
    type CounterFlavor uint8
    
    const (
    	// "Raw" representation: all values (pkg ID, func ID, num counters,
    	// and counters themselves) are stored as uint32's.
    	CtrRaw CounterFlavor = iota + 1
    
    	// "ULeb" representation: all values (pkg ID, func ID, num counters,
    	// and counters themselves) are stored with ULEB128 encoding.
    	CtrULeb128
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 12:51:16 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/caching/internal/operations/BuildCacheLocalStoreBuildOperationType.java

     * limitations under the License.
     */
    
    package org.gradle.caching.internal.operations;
    
    import org.gradle.internal.operations.BuildOperationType;
    
    /**
     * A store operation to a local build cache.
     *
     * A store operation may actually store or fail.
     * Store operation results and failures are mutually exclusive.
     *
     *  @since 8.6
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 09:42:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/internal/resource/local/DefaultPathKeyFileStoreTest.groovy

            when:
            store.move("a", a)
    
            then:
            def stored = store.get("a")
            stored.file.directory
            stored.file == fsBase.file("a")
            fsBase.file("a").assertHasDescendants("child-1", "dir/child-2")
            !a.exists()
        }
    
        def "can add file to filestore"() {
            when:
            store.add("a", { File f -> f.text = "abc"} as Action<File>)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 20 09:57:05 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  8. maven-artifact/src/main/java/org/apache/maven/repository/legacy/metadata/ArtifactMetadata.java

    /**
     * Contains metadata about an artifact, and methods to retrieve/store it from an artifact repository.
     * TODO merge with artifactmetadatasource
     * TODO retrieval exception not appropriate for store
     *
     */
    public interface ArtifactMetadata {
        /**
         * Whether this metadata should be stored alongside the artifact.
         *
         * @return whether this metadata should be stored alongside the artifact
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/memorymanager/state/state.go

    	// GetMachineState returns Memory Map stored in the State
    	GetMachineState() NUMANodeMap
    	// GetMemoryBlocks returns memory assignments of a container
    	GetMemoryBlocks(podUID string, containerName string) []Block
    	// GetMemoryAssignments returns ContainerMemoryAssignments
    	GetMemoryAssignments() ContainerMemoryAssignments
    }
    
    type writer interface {
    	// SetMachineState stores NUMANodeMap in State
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 08 23:10:00 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  10. pkg/config/analysis/local/istiod_analyze.go

    	for _, store := range sa.stores {
    		store.RegisterEventHandler(kind, handler)
    	}
    }
    
    func (sa *IstiodAnalyzer) Schemas() collection.Schemas {
    	result := collection.NewSchemasBuilder()
    	for _, store := range sa.stores {
    		for _, schema := range store.Schemas().All() {
    			result.MustAdd(schema)
    		}
    	}
    	return result.Build()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:13 UTC 2024
    - 21.6K bytes
    - Viewed (0)
Back to top