Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for encodeLoop (0.13 sec)

  1. 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)
  2. platforms/software/resources/src/main/java/org/gradle/internal/resource/ExternalResourceName.java

            this(encodeRoot(uri), extractPath(uri), extractQuery(uri));
        }
    
        public ExternalResourceName(String path) {
            this(null, path, "");
        }
    
        private ExternalResourceName(@Nullable String encodedRoot, String path) {
            this(encodedRoot, path, "");
        }
    
        public ExternalResourceName(URI parent, String path) {
            this(encodeRoot(parent), combine(parent, path), "");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. 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)
  4. 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