Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,236 for store1 (0.18 sec)

  1. platforms/documentation/docs/src/snippets/configurationCache/problemsFixed/tests/store-another.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 189 bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/writebarrier.go

    				if last == nil {
    					continue
    				}
    				break FindSeq
    			}
    		}
    		stores = append(stores[:0], b.Values[start:end]...) // copy to avoid aliasing
    		after = append(after[:0], b.Values[end:]...)
    		b.Values = b.Values[:start]
    
    		// find the memory before the WB stores
    		mem := stores[0].MemoryArg()
    		pos := stores[0].Pos
    
    		// If the source of a MoveWB is volatile (will be clobbered by a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  3. maven-artifact/src/main/java/org/apache/maven/repository/legacy/metadata/ArtifactMetadata.java

    /**
     * Contains metadata about an artifact, and methods to retrieve/store it from an artifact repository.
     * TODO merge with artifactmetadatasource
     * TODO retrieval exception not appropriate for store
     *
     */
    public interface ArtifactMetadata {
        /**
         * Whether this metadata should be stored alongside the artifact.
         *
         * @return whether this metadata should be stored alongside the artifact
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/AbstractVirtualFileSystemTest.groovy

        }
    
         def "only stores non-invalidated children when using store action"() {
            def location = '/my/location/new'
            when:
            start {
                vfs.store(location, { vfsStore ->
                    instant.snapshottingStarted
                    vfsStore.store(regularFile("${location}/some/child"))
                    vfsStore.store(regularFile("${location}/other/child"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. pkg/config/analysis/local/istiod_analyze.go

    	for _, store := range sa.stores {
    		store.RegisterEventHandler(kind, handler)
    	}
    }
    
    func (sa *IstiodAnalyzer) Schemas() collection.Schemas {
    	result := collection.NewSchemasBuilder()
    	for _, store := range sa.stores {
    		for _, schema := range store.Schemas().All() {
    			result.MustAdd(schema)
    		}
    	}
    	return result.Build()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:13 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  6. 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)
  7. pkg/volume/util/attach_limit.go

    	// DefaultMaxEBSNitroVolumeLimit is default EBS volume limit on m5 and c5 instances
    	DefaultMaxEBSNitroVolumeLimit = 25
    	// AzureVolumeLimitKey stores resource name that will store volume limits for Azure
    	AzureVolumeLimitKey = "attachable-volumes-azure-disk"
    	// GCEVolumeLimitKey stores resource name that will store volume limits for GCE node
    	GCEVolumeLimitKey = "attachable-volumes-gce-pd"
    
    	// CinderVolumeLimitKey contains Volume limit key for Cinder
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 17:25:30 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  8. src/internal/fuzz/mem.go

    }
    
    // valueRef returns the value currently stored in shared memory. The returned
    // slice points to shared memory; it is not a copy.
    func (m *sharedMem) valueRef() []byte {
    	length := m.header().valueLen
    	valueOffset := int(unsafe.Sizeof(sharedMemHeader{}))
    	return m.region[valueOffset : valueOffset+length]
    }
    
    // valueCopy returns a copy of the value stored in shared memory.
    func (m *sharedMem) valueCopy() []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 03:44:27 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/BuildCacheStep.java

            try {
                buildCache.store(cacheKey, work, outputFilesProducedByWork, executionTime);
                if (LOGGER.isInfoEnabled()) {
                    LOGGER.info("Stored cache entry for {} with cache key {}",
                        work.getDisplayName(), cacheKey.getHashCode());
                }
            } catch (Exception e) {
                throw new RuntimeException(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 13:41:13 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	// and outputs are stored immediately with OpStore.
    	//
    	// After call expansion, Calls have the same fixed-middle-memory arrangement of inputs,
    	// with the difference that the "middle" is only the register-resident inputs,
    	// and the non-register inputs are instead stored at ABI-defined offsets from SP
    	// (and the stores thread through the memory that is ultimately an input to the call).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top