Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,236 for store1 (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. pilot/pkg/config/aggregate/config.go

    	for _, store := range cr.stores[typ] {
    		config := store.Get(typ, name, namespace)
    		if config != nil {
    			return config
    		}
    	}
    	return nil
    }
    
    // List all configs in the stores.
    func (cr *store) List(typ config.GroupVersionKind, namespace string) []config.Config {
    	stores := cr.stores[typ]
    	if len(stores) == 0 {
    		return nil
    	}
    
    	var (
    		configs      []config.Config
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 26 01:14:27 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/volumebinding/scorer.go

    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/helper"
    )
    
    // classResourceMap holds a map of storage class to resource.
    type classResourceMap map[string]*StorageResource
    
    // volumeCapacityScorer calculates the score based on class storage resource information.
    type volumeCapacityScorer func(classResourceMap) int64
    
    // buildScorerFunction builds volumeCapacityScorer from the scoring function shape.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 13 11:08:45 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/memorymanager/state/state_mem.go

    	s.RLock()
    	defer s.RUnlock()
    
    	return s.assignments.Clone()
    }
    
    // SetMachineState stores NUMANodeMap in State
    func (s *stateMemory) SetMachineState(nodeMap NUMANodeMap) {
    	s.Lock()
    	defer s.Unlock()
    
    	s.machineState = nodeMap.Clone()
    	klog.InfoS("Updated machine memory state")
    }
    
    // SetMemoryBlocks stores memory assignments of container
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 15 19:51:19 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/deadstore.go

    			}
    		}
    	}
    
    	// Eliminate stores to unread autos.
    	for _, store := range stores {
    		n, _ := store.Aux.(*ir.Name)
    		if seen.Has(n) {
    			continue
    		}
    
    		// replace store with OpCopy
    		store.SetArgs1(store.MemoryArg())
    		store.Aux = nil
    		store.AuxInt = 0
    		store.Op = OpCopy
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CompositeResultsStore.java

    import java.util.stream.Collectors;
    
    public class CompositeResultsStore implements ResultsStore {
        private final List<ResultsStore> stores;
        private Map<PerformanceExperiment, ResultsStore> tests;
    
        public CompositeResultsStore(ResultsStore... stores) {
            this.stores = Arrays.asList(stores);
        }
    
        @Override
        public List<PerformanceExperiment> getPerformanceExperiments() {
            buildTests();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/store/ResolutionResultsStoreFactory.java

            DefaultBinaryStore store = stores.get(storeKey);
            if (store == null || isFull(store) || store.isInUse()) {
                File storeFile = temp.createTemporaryFile("gradle", ".bin");
                storeFile.deleteOnExit();
                store = new DefaultBinaryStore(storeFile);
                stores.put(storeKey, store);
                cleanUpLater.add(store);
            }
            return store;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top