Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for storeNode (0.08 sec)

  1. pkg/ledger/smt.go

    	if (height)%4 == 0 {
    		if shortcut {
    			batch[0] = []byte{1}
    		} else {
    			batch[0] = []byte{0}
    		}
    
    		s.storeNode(batch, h, oldRoot)
    	}
    	return h
    }
    
    // storeNode stores a batch and deletes the old node from cache
    func (s *smt) storeNode(batch [][]byte, h, oldRoot []byte) {
    	if !bytes.Equal(h, oldRoot) {
    		var node hash
    		copy(node[:], h)
    		// record new node
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 14K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache/src/integTest/groovy/org/gradle/caching/internal/BuildCacheBuildOperationsIntegrationTest.groovy

        void remote(String loadBody, String storeBody) {
            register(remoteCacheClass, loadBody, storeBody)
        }
    
        def setup() {
            executer.beforeExecute { it.withBuildCacheEnabled() }
        }
    
        void register(String className, String loadBody, String storeBody) {
            settingsFile << """
                class ${className} extends AbstractBuildCache {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:14 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequest.java

                    flist.toArray(new FunctionScoreQueryBuilder.FilterFunctionBuilder[flist.size()]));
    
            functionScoreQueryBuilder.boostMode(CombineFunction.REPLACE);
            functionScoreQueryBuilder.scoreMode(FunctionScoreQuery.ScoreMode.MULTIPLY);
    
            return functionScoreQueryBuilder;
        }
    
        protected SuggestResponse createResponse(final SearchResponse searchResponse) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top