Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,212 for Storep (0.14 sec)

  1. 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)
  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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. android/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)
  8. 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)
  9. 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)
  10. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/service/RemoteBuildCacheServiceHandle.java

        boolean canStore();
    
        /**
         * Stores the file to the 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);
    
        @Override
        void close();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top