Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,588 for Storep (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/internal/fuzz/mem.go

    }
    
    // valueRef returns the value currently stored in shared memory. The returned
    // slice points to shared memory; it is not a copy.
    func (m *sharedMem) valueRef() []byte {
    	length := m.header().valueLen
    	valueOffset := int(unsafe.Sizeof(sharedMemHeader{}))
    	return m.region[valueOffset : valueOffset+length]
    }
    
    // valueCopy returns a copy of the value stored in shared memory.
    func (m *sharedMem) valueCopy() []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 03:44:27 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  8. platforms/core-execution/build-cache/src/integTest/groovy/org/gradle/caching/internal/BuildCacheBuildOperationsIntegrationTest.groovy

            packOp.details.cacheKey == cacheKey
    
            packOp.result.archiveSize == archiveSize
            packOp.result.archiveEntryCount == 5
    
            storeOp.details.cacheKey == cacheKey
            storeOp.details.archiveSize == archiveSize
            storeOp.result.stored
    
            when:
            succeeds("clean", "t")
    
            then:
            operations.none(BuildCacheRemoteStoreBuildOperationType)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:14 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. pkg/apis/apps/register.go

    import (
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/kubernetes/pkg/apis/autoscaling"
    )
    
    var (
    	// SchemeBuilder stores functions to add things to a scheme.
    	SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes)
    	// AddToScheme applies all stored functions t oa scheme.
    	AddToScheme = SchemeBuilder.AddToScheme
    )
    
    // GroupName is the group name use in this package
    const GroupName = "apps"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 22 19:26:49 UTC 2019
    - 2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/authentication/authenticator/audiences.go

    	audiencesKey key = iota
    )
    
    // WithAudiences returns a context that stores a request's expected audiences.
    func WithAudiences(ctx context.Context, auds Audiences) context.Context {
    	return context.WithValue(ctx, audiencesKey, auds)
    }
    
    // AudiencesFrom returns a request's expected audiences stored in the request context.
    func AudiencesFrom(ctx context.Context) (Audiences, bool) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 31 21:50:11 UTC 2018
    - 1.7K bytes
    - Viewed (0)
Back to top