Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,588 for Storep (0.14 sec)

  1. maven-core/src/main/java/org/apache/maven/toolchain/ToolchainManagerPrivate.java

         */
        ToolchainPrivate[] getToolchainsForType(String type, MavenSession context) throws MisconfiguredToolchainException;
    
        /**
         * Stores the toolchain into build context for later use by toolchain-aware plugins.
         *
         * @param toolchain the toolchain to store, must not be {@code null}
         * @param context the Maven session, must not be {@code null}
         * @since 2.0.9
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_config.h

    #include "absl/strings/string_view.h"
    #include "tensorflow/core/framework/types.pb.h"
    #include "tensorflow/lite/tools/optimize/reduced_precision_support.h"
    
    namespace mlir {
    namespace quant {
    
    // Stores information about how to quantize a user-specified custom operation.
    struct CustomOpInfo {
      std::vector<std::int32_t> quantizable_input_indices;
      bool is_weight_only = false;
      bool no_side_effect = true;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 10:16:19 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top