Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for encodeRoot (0.23 sec)

  1. platforms/software/resources/src/main/java/org/gradle/internal/resource/ExternalResourceName.java

        }
    
        public ExternalResourceName(URI parent, String path) {
            this(encodeRoot(parent), combine(parent, path), "");
        }
    
        private ExternalResourceName(@Nullable String encodedRoot, String path, String encodedQuery) {
            this.encodedRoot = encodedRoot;
            this.path = path;
            this.encodedQuery = encodedQuery;
        }
    
        @Override
        public String getDisplayName() {
            return getDisplayable();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. src/net/url/url_test.go

    	{'!', encodeHost, false},
    	{'$', encodeHost, false},
    	{'&', encodeHost, false},
    	{'\'', encodeHost, false},
    	{'(', encodeHost, false},
    	{')', encodeHost, false},
    	{'*', encodeHost, false},
    	{'+', encodeHost, false},
    	{',', encodeHost, false},
    	{';', encodeHost, false},
    	{'=', encodeHost, false},
    	{':', encodeHost, false},
    	{'[', encodeHost, false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Combinators.kt

        override suspend fun WriteContext.encode(value: T) {
            when (encodeCall) {
                null -> {
                    encodeCall = EncodeFrame(value, null)
                    encodeLoop(coroutineContext)
                }
    
                else -> suspendCoroutine<Unit> { k ->
                    encodeCall = EncodeFrame(value, k)
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:59:39 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. src/net/url/url.go

    				v := unhex(s[i+1])<<4 | unhex(s[i+2])
    				if s[i:i+3] != "%25" && v != ' ' && shouldEscape(v, encodeHost) {
    					return "", EscapeError(s[i : i+3])
    				}
    			}
    			i += 3
    		case '+':
    			hasPlus = mode == encodeQueryComponent
    			i++
    		default:
    			if (mode == encodeHost || mode == encodeZone) && s[i] < 0x80 && shouldEscape(s[i], mode) {
    				return "", InvalidHostError(s[i : i+1])
    			}
    			i++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  5. src/internal/profile/proto.go

    	for _, s := range x {
    		encodeString(b, tag, s)
    	}
    }
    
    func encodeBool(b *buffer, tag int, x bool) {
    	if x {
    		encodeUint64(b, tag, 1)
    	} else {
    		encodeUint64(b, tag, 0)
    	}
    }
    
    func encodeBoolOpt(b *buffer, tag int, x bool) {
    	if !x {
    		return
    	}
    	encodeBool(b, tag, x)
    }
    
    func encodeMessage(b *buffer, tag int, m message) {
    	n1 := len(b.data)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 17 16:20:57 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/profile/proto.go

    	for _, s := range x {
    		encodeString(b, tag, s)
    	}
    }
    
    func encodeBool(b *buffer, tag int, x bool) {
    	if x {
    		encodeUint64(b, tag, 1)
    	} else {
    		encodeUint64(b, tag, 0)
    	}
    }
    
    func encodeBoolOpt(b *buffer, tag int, x bool) {
    	if x {
    		encodeBool(b, tag, x)
    	}
    }
    
    func encodeMessage(b *buffer, tag int, m message) {
    	n1 := len(b.data)
    	m.encode(b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 7.4K bytes
    - Viewed (0)
Back to top