Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,747 for Store2 (0.24 sec)

  1. 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)
  2. 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)
  3. 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)
  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. 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)
  6. 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)
  7. pkg/config/analysis/local/context.go

    )
    
    // NewContext allows tests to use istiodContext without exporting it.  returned context is not threadsafe.
    func NewContext(stores map[cluster.ID]model.ConfigStore, cancelCh <-chan struct{}, collectionReporter CollectionReporterFn) analysis.Context {
    	return &istiodContext{
    		stores:             stores,
    		cancelCh:           cancelCh,
    		messages:           map[string]*diag.Messages{},
    		collectionReporter: collectionReporter,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/test/testdata/loadstore_test.go

    // testDeadStorePanic_ssa ensures that we don't optimize away stores
    // that could be read by after recover().  Modeled after fixedbugs/issue1304.
    //
    //go:noinline
    func testDeadStorePanic_ssa(a int) (r int) {
    	defer func() {
    		recover()
    		r = a
    	}()
    	a = 2      // store
    	b := a - a // optimized to zero
    	c := 4
    	a = c / b // store, but panics
    	a = 3     // store
    	r = a
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  9. src/flag/flag.go

    // The return value is the address of a bool variable that stores the value of the flag.
    func (f *FlagSet) Bool(name string, value bool, usage string) *bool {
    	p := new(bool)
    	f.BoolVar(p, name, value, usage)
    	return p
    }
    
    // Bool defines a bool flag with specified name, default value, and usage string.
    // The return value is the address of a bool variable that stores the value of the flag.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  10. src/sync/map.go

    	// read contains the portion of the map's contents that are safe for
    	// concurrent access (with or without mu held).
    	//
    	// The read field itself is always safe to load, but must only be stored with
    	// mu held.
    	//
    	// Entries stored in read may be updated concurrently without mu, but updating
    	// a previously-expunged entry requires that the entry be copied to the dirty
    	// map and unexpunged with mu held.
    	read atomic.Pointer[readOnly]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top