Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,929 for Store2 (0.3 sec)

  1. pkg/ledger/smt.go

    	if shortcut {
    		store = false    // stop storing only after the shortcut node.
    		shortcut = false // remove shortcut node flag
    	}
    	if len(lnode) == 0 && len(rnode) == 0 && len(keys) == 1 && store {
    		if !bytes.Equal(values[0], defaultLeaf) {
    			shortcut = true
    		} else {
    			// if the subtree contains only one key, store the key/value in a shortcut node
    			store = false
    		}
    	}
    	switch {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 14K bytes
    - Viewed (0)
  2. testing/architecture-test/build.gradle.kts

            return listOf(
                "-Darchunit.freeze.store.default.path=${location.absolutePath}",
                "-Darchunit.freeze.refreeze=${refreezeBoolean}",
                "-Darchunit.freeze.store.default.allowStoreUpdate=${refreezeBoolean}"
            )
        }
    }
    
    /**
     * Sorts the stored rules, so we keep a deterministic order when we add new rules.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache/src/test/groovy/org/gradle/caching/internal/controller/DefaultBuildCacheControllerTest.groovy

        }
    
        def "does suppress exceptions from store"() {
            given:
            1 * remote.store(key, _) >> { throw new RuntimeException() }
    
            when:
            controller.store(key, cacheableEntity, snapshots, executionTime)
    
            then:
            noExceptionThrown()
    
            and:
            1 * local.storeLocally(key, _)
        }
    
        def "does not store to local if local push is disabled"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/metadata/MetadataFileSource.java

    import org.gradle.internal.hash.HashCode;
    
    import java.io.File;
    
    /**
     * This module source stores information about the metadata file
     * from which a module resolve metadata has been built. In particular,
     * it stores the artifact id corresponding to the metadata file and
     * gives access to the file stored in the local artifact cache.
     *
     * This information is used during dependency verification (either
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/store/DefaultBinaryStoreTest.groovy

            when:
            store.write({ it.writeInt(10) } as BinaryStore.WriteAction)
            store.write({ it.writeString("x") } as BinaryStore.WriteAction)
            def data1 = store.done()
            store.write({ it.writeString("y") } as BinaryStore.WriteAction)
            def data2 = store.done()
    
            then:
            data1.read({ it.readInt() } as BinaryStore.ReadAction) == 10
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Serialization.java

        for (int i = 0; i < size; i++) {
          @SuppressWarnings("unchecked") // reading data stored by writeMap
          K key = (K) stream.readObject();
          @SuppressWarnings("unchecked") // reading data stored by writeMap
          V value = (V) stream.readObject();
          map.put(key, value);
        }
      }
    
      /**
       * Stores the contents of a multiset in an output stream, as part of serialization. It does not
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 06 16:06:58 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/analyzers_bench_test.go

    					Namespace:        name.Namespace.String(),
    				},
    				Spec: s.MustNewInstance(),
    			})
    		}
    
    		return false
    	})
    	stores := map[cluster.ID]model.ConfigStore{
    		"fake": store,
    	}
    	ctx := local.NewContext(stores, make(chan struct{}), func(name config.GroupVersionKind) {})
    
    	b.ResetTimer()
    	for _, a := range All() {
    		b.Run(a.Metadata().Name+"-bench", func(b *testing.B) {
    			a.Analyze(ctx)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. src/internal/runtime/atomic/atomic_arm.s

    	B	·Load(SB)
    
    TEXT ·Storeint32(SB),NOSPLIT,$0-8
    	B	·Store(SB)
    
    TEXT ·Storeint64(SB),NOSPLIT,$0-12
    	B	·Store64(SB)
    
    TEXT ·Storeuintptr(SB),NOSPLIT,$0-8
    	B	·Store(SB)
    
    TEXT ·StorepNoWB(SB),NOSPLIT,$0-8
    	B	·Store(SB)
    
    TEXT ·StoreRel(SB),NOSPLIT,$0-8
    	B	·Store(SB)
    
    TEXT ·StoreReluintptr(SB),NOSPLIT,$0-8
    	B	·Store(SB)
    
    TEXT ·Xaddint32(SB),NOSPLIT,$0-12
    	B	·Xadd(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/StoreExecutionStateStepTest.groovy

    
        def setup() {
            _ * context.history >> Optional.of(executionHistoryStore)
            _ * context.cacheKey >> Optional.of(TestHashCodes.hashCodeFrom(1234))
        }
    
        def "output snapshots are stored after successful execution"() {
            when:
            def result = step.execute(work, context)
    
            then:
            result == delegateResult
            1 * delegate.execute(work, context) >> delegateResult
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. pkg/scheduler/util/assumecache/assume_cache.go

    	// The logger that was chosen when setting up the cache.
    	// Will be used for all operations.
    	logger klog.Logger
    
    	// Synchronizes updates to store
    	rwMutex sync.RWMutex
    
    	// describes the object stored
    	description string
    
    	// Stores objInfo pointers
    	store cache.Indexer
    
    	// Index function for object
    	indexFunc cache.IndexFunc
    	indexName string
    }
    
    type objInfo struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top