Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for DataBlock (0.22 sec)

  1. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/BTreePersistentIndexedCache.java

                DataBlock newBlock = null;
                if (lookup.entry != null) {
                    DataBlock block = store.read(lookup.entry.dataBlock, DataBlock.class);
                    DataBlockUpdateResult updateResult = block.useNewValue(value);
                    if (updateResult.isFailed()) {
                        store.remove(block);
                        newBlock = new DataBlock(value, updateResult.getSerializedValue());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  2. src/compress/flate/inflate.go

    	for f.nb < 1+2 {
    		if f.err = f.moreBits(); f.err != nil {
    			return
    		}
    	}
    	f.final = f.b&1 == 1
    	f.b >>= 1
    	typ := f.b & 3
    	f.b >>= 2
    	f.nb -= 1 + 2
    	switch typ {
    	case 0:
    		f.dataBlock()
    	case 1:
    		// compressed, fixed Huffman tables
    		f.hl = &fixedHuffmanDecoder
    		f.hd = nil
    		f.huffmanBlock()
    	case 2:
    		// compressed, dynamic Huffman tables
    		if f.err = f.readHuffman(); f.err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    		datalock.Lock()
    		numCompiles += 1
    		datalock.Unlock()
    		return validating.ValidateResult{
    			Decisions: []validating.PolicyDecision{
    				{
    					Action:  validating.ActionDeny,
    					Message: "Denied",
    				},
    			},
    		}
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.cache.internal.btree.BTreePersistentIndexedCache$DataBlock> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (BTreePersistentIndexedCache.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top