Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for encodeValue (0.23 sec)

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

    ) {
        suspend fun WriteContext.encodeProvider(value: ProviderInternal<*>) {
            val state = value.calculateExecutionTimeValue()
            encodeValue(state)
        }
    
        suspend fun WriteContext.encodeValue(value: ValueSupplier.ExecutionTimeValue<*>) {
            val sideEffect = value.sideEffect
            when {
                value.isMissing -> {
    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/encoder.go

    	state.encodeInt(int64(enc.sent[ut.base]))
    }
    
    // EncodeValue transmits the data item represented by the reflection value,
    // guaranteeing that all necessary type information has been transmitted first.
    // Passing a nil pointer to EncodeValue will panic, as they cannot be transmitted by gob.
    func (enc *Encoder) EncodeValue(value reflect.Value) error {
    	if value.Kind() == reflect.Invalid {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/debug.go

    		return
    	}
    
    	// Pack the start/end coordinates into the start/end addresses
    	// of the entry, for decoding by PutLocationList.
    	start, startOK := encodeValue(state.ctxt, pending.startBlock, pending.startValue)
    	end, endOK := encodeValue(state.ctxt, endBlock, endValue)
    	if !startOK || !endOK {
    		// If someone writes a function that uses >65K values,
    		// they get incomplete debug info on 32-bit platforms.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/UrlComponentEncodingTester.kt

        component: Component,
      ) {
        val expected = component.canonicalize(encoding.encode(codePoint))
        val urlString = component.urlString(expected)
        val url = urlString.toHttpUrl()
        val actual = component.encodedValue(url)
        if (actual != expected) {
          fail("Encoding $component $codePoint using $encoding: '$actual' != '$expected'")
        }
      }
    
      private fun testEncodeAndDecode(
        codePoint: Int,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/FormBody.kt

      fun encodedName(index: Int): String = encodedNames[index]
    
      fun name(index: Int): String = encodedName(index).percentDecode(plusIsSpace = true)
    
      fun encodedValue(index: Int): String = encodedValues[index]
    
      fun value(index: Int): String = encodedValue(index).percentDecode(plusIsSpace = true)
    
      override fun contentType(): MediaType = CONTENT_TYPE
    
      override fun contentLength(): Long = writeOrCountBytes(null, true)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/FormBodyTest.kt

        assertThat(body.name(1)).isEqualTo("space, the")
        assertThat(body.name(2)).isEqualTo("%25")
        assertThat(body.encodedValue(0)).isEqualTo("c%2B%3D%26+d")
        assertThat(body.encodedValue(1)).isEqualTo("final+frontier")
        assertThat(body.encodedValue(2)).isEqualTo("%2525")
        assertThat(body.value(0)).isEqualTo("c+=& d")
        assertThat(body.value(1)).isEqualTo("final frontier")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

          addQueryParameter(name, value)
        }
    
        fun setEncodedQueryParameter(
          encodedName: String,
          encodedValue: String?,
        ) = apply {
          removeAllEncodedQueryParameters(encodedName)
          addEncodedQueryParameter(encodedName, encodedValue)
        }
    
        fun removeAllQueryParameters(name: String) =
          apply {
            if (encodedQueryNamesAndValues == null) return this
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/KotlinSourceModernTest.kt

        val formBody: FormBody = FormBody.Builder().build()
        val size: Int = formBody.size
        val encodedName: String = formBody.encodedName(0)
        val name: String = formBody.name(0)
        val encodedValue: String = formBody.encodedValue(0)
        val value: String = formBody.value(0)
        val contentType: MediaType = formBody.contentType()
        val contentLength: Long = formBody.contentLength()
        formBody.writeTo(Buffer())
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 14:21:25 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Writer.UseCRLF", Field, 0},
    	},
    	"encoding/gob": {
    		{"(*Decoder).Decode", Method, 0},
    		{"(*Decoder).DecodeValue", Method, 0},
    		{"(*Encoder).Encode", Method, 0},
    		{"(*Encoder).EncodeValue", Method, 0},
    		{"CommonType", Type, 0},
    		{"CommonType.Id", Field, 0},
    		{"CommonType.Name", Field, 0},
    		{"Decoder", Type, 0},
    		{"Encoder", Type, 0},
    		{"GobDecoder", Type, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  10. okhttp/api/okhttp.api

    	public final fun -deprecated_size ()I
    	public fun contentLength ()J
    	public fun contentType ()Lokhttp3/MediaType;
    	public final fun encodedName (I)Ljava/lang/String;
    	public final fun encodedValue (I)Ljava/lang/String;
    	public final fun name (I)Ljava/lang/String;
    	public final fun size ()I
    	public final fun value (I)Ljava/lang/String;
    	public fun writeTo (Lokio/BufferedSink;)V
    }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 70.2K bytes
    - Viewed (0)
Back to top