Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,747 for Store2 (0.11 sec)

  1. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/VirtualFileSystem.java

        /**
         * Snapshots and stores the result in the VFS.
         *
         * If the snapshotted location is invalidated while snapshotting,
         * then the snapshot is not stored in the VFS to avoid inconsistent state.
         */
        FileSystemLocationSnapshot store(String absolutePath, Supplier<FileSystemLocationSnapshot> snapshotSupplier);
    
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/memorymanager/state/state_checkpoint.go

    }
    
    // SetMachineState stores NUMANodeMap in State
    func (sc *stateCheckpoint) SetMachineState(memoryMap NUMANodeMap) {
    	sc.Lock()
    	defer sc.Unlock()
    
    	sc.cache.SetMachineState(memoryMap)
    	err := sc.storeState()
    	if err != nil {
    		klog.InfoS("Store state to checkpoint error", "err", err)
    	}
    }
    
    // SetMemoryBlocks stores memory assignments of container
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 16:05:48 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  3. src/internal/zstd/window.go

    }
    
    // reset clears stored data and configures window size.
    func (w *window) reset(size int) {
    	b := w.data[:0]
    	if cap(b) < size {
    		b = make([]byte, 0, size)
    	}
    	w.data = b
    	w.off = 0
    	w.size = size
    }
    
    // len returns the number of stored bytes.
    func (w *window) len() uint32 {
    	return uint32(len(w.data))
    }
    
    // save stores up to size last bytes from the buf.
    func (w *window) save(buf []byte) {
    	if w.size == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:49:23 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. src/mime/multipart/formdata.go

    // ReadForm parses an entire multipart message whose parts have
    // a Content-Disposition of "form-data".
    // It stores up to maxMemory bytes + 10MB (reserved for non-file parts)
    // in memory. File parts which can't be stored in memory will be stored on
    // disk in temporary files.
    // It returns [ErrMessageTooLarge] if all non-file parts can't be stored in
    // memory.
    func (r *Reader) ReadForm(maxMemory int64) (*Form, error) {
    	return r.readForm(maxMemory)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. src/sync/atomic/doc.go

    func LoadPointer(addr *unsafe.Pointer) (val unsafe.Pointer)
    
    // StoreInt32 atomically stores val into *addr.
    // Consider using the more ergonomic and less error-prone [Int32.Store] instead.
    func StoreInt32(addr *int32, val int32)
    
    // StoreInt64 atomically stores val into *addr.
    // Consider using the more ergonomic and less error-prone [Int64.Store] instead
    // (particularly if you target 32-bit platforms; see the bugs section).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/Store.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.cache.internal;
    
    import java.util.function.Supplier;
    
    public interface Store<T> {
        T load(Supplier<T> createIfNotPresent);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 763 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/configurationCache/noProblem/tests/store.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 79 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/configurationCache/problemsFixedReuse/tests/store.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 154 bytes
    - Viewed (0)
  9. pilot/pkg/autoregistration/internal/state/store.go

    	IsControllerOf(wle *config.Config) bool
    }
    
    // NewStore returns a new Store instance.
    func NewStore(store model.ConfigStoreController, cb StoreCallbacks) *Store {
    	return &Store{
    		store: store,
    		cb:    cb,
    	}
    }
    
    // UpdateHealth updates the associated WorkloadEntries health status
    // based on the corresponding health check performed by istio-agent.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. pilot/pkg/config/memory/store.go

    )
    
    const ResourceVersion string = "ResourceVersion"
    
    // Make creates an in-memory config store from a config schemas
    // It is with validation
    func Make(schemas collection.Schemas) model.ConfigStore {
    	return newStore(schemas, false)
    }
    
    // MakeSkipValidation creates an in-memory config store from a config schemas
    // It is without validation
    func MakeSkipValidation(schemas collection.Schemas) model.ConfigStore {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 26 01:14:27 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top