Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for encodedName (0.35 sec)

  1. src/main/java/org/codelibs/fess/helper/ViewHelper.java

                } else {
                    contentDispositionType = "attachment";
                }
    
                final String encodedName = URLEncoder.encode(name, Constants.UTF_8).replace("+", "%20");
                final String contentDispositionValue;
                if (name.equals(encodedName)) {
                    contentDispositionValue = contentDispositionType + "; filename=\"" + name + "\"";
                } else {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:58:45 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Combinators.kt

    
    fun <T : Any> reentrant(codec: Codec<T>): Codec<T> = object : Codec<T> {
    
        var encodeCall: EncodeFrame<T>? = null
    
        var decodeCall: DecodeFrame<T?>? = null
    
        override suspend fun WriteContext.encode(value: T) {
            when (encodeCall) {
                null -> {
                    encodeCall = EncodeFrame(value, null)
                    encodeLoop(coroutineContext)
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:59:39 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top