Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DecodeValue (0.53 sec)

  1. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/ProviderCodecs.kt

                }
            }
        }
    
        suspend fun ReadContext.decodeProvider(): ProviderInternal<*> {
            return decodeValue().toProvider()
        }
    
        suspend fun ReadContext.decodeValue(): ValueSupplier.ExecutionTimeValue<*> =
            when (readByte()) {
                1.toByte() -> ValueSupplier.ExecutionTimeValue.missing<Any>()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. src/encoding/gob/decode.go

    			*enginePtr = dec.compileIgnoreSingle(wireId)
    		}
    		if err != nil {
    			delete(dec.ignorerCache, wireId)
    		}
    	}
    	return
    }
    
    // decodeValue decodes the data stream representing a value and stores it in value.
    func (dec *Decoder) decodeValue(wireId typeId, value reflect.Value) {
    	defer catchError(&dec.err)
    	// If the value is nil, it means we should just ignore this item.
    	if !value.IsValid() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:10:23 UTC 2023
    - 40.1K bytes
    - Viewed (0)
Back to top