Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,929 for Store2 (0.31 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblems.kt

                    cacheAction == STORE && !hasProblems -> log("Configuration cache entry stored.")
                    cacheAction == STORE -> log("Configuration cache entry stored with {}.", problemCountString)
                    cacheAction == UPDATE && !hasProblems -> log("Configuration cache entry updated for {}, {} up-to-date.", updatedProjectsString, reusedProjectsString)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. docs/extensions/s3zip/examples/aws-js/main.js

        accessKeyId: 'YOUR-ACCESSKEYID' ,
        secretAccessKey: 'YOUR-SECRETACCESSKEY' ,
        endpoint: 'http://127.0.0.1:9000' ,
        s3ForcePathStyle: true,
        signatureVersion: 'v4'
    });
    
    // List all contents stored in the zip archive
    s3.listObjectsV2({Bucket : 'your-bucket', Prefix: 'path/to/file.zip/'}).
        on('build', function(req) { req.httpRequest.headers['X-Minio-Extract'] = 'true'; }).
        send(function(err, data) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 10 15:17:03 UTC 2021
    - 1K bytes
    - Viewed (0)
  3. src/sync/atomic/value.go

    	vlp.typ = typ
    	vlp.data = data
    	return
    }
    
    var firstStoreInProgress byte
    
    // Store sets the value of the [Value] v to val.
    // All calls to Store for a given Value must use values of the same concrete type.
    // Store of an inconsistent type panics, as does Store(nil).
    func (v *Value) Store(val any) {
    	if val == nil {
    		panic("sync/atomic: store of nil value into Value")
    	}
    	vp := (*efaceWords)(unsafe.Pointer(v))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:48:55 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/saved_model/core/revived_types/revived_objects.h

    // those objects this container provides a map from node id to the revived
    // objects.
    //
    // For objects that have to be revived but are not part of the object graph,
    // this container provides a place where the objects can be stored so they are
    // available to the runtime.
    template <typename T>
    class RevivedObjectContainer {
     public:
      // Insert an object that is not related to a node id. This usually means the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 05 23:10:04 UTC 2020
    - 4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/schema/schema.fbs

      //     example, a 2-D matrix with 2-D blocks, both stored in row-major order
      //     would have traversal_order = (d0, d1, d2, d3).
      traversal_order:[int];
      // For an n-dimensional tensor with a k-dimensional block (0 <= k <= n),
      // stores how a block dimension in (dn, ..., dn+k-1) maps to the original
      // tensor dimension in (d0, ..., dn).
      // It's stored in the order of (dn, ..., dn+k-1).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top