Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for decodeLoop (0.28 sec)

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

            when {
                immediateMode -> {
                    codec.run { decode() }
                }
    
                decodeCall == null -> {
                    decodeCall = DecodeFrame(null)
                    decodeLoop(coroutineContext)
                }
    
                else -> suspendCoroutine { k ->
                    decodeCall = DecodeFrame(k)
                }
            }
    
        private
    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/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/PropertyResourceBundleFallbackCharset.java

                buffer.mark();
            }
    
            static void reset(Buffer buffer) {
                buffer.reset();
            }
    
            @Override
            protected CoderResult decodeLoop(ByteBuffer in, CharBuffer out) {
                mark(in);
                mark(out);
    
                CoderResult coderResult = decoder.decode(in, out, false);
    
                if (coderResult.isError() && utf8) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. src/internal/profile/encode.go

    	func(b *buffer, m message) error { return decodeBool(b, &m.(*Mapping).HasFunctions) },    // optional bool has_functions = 7
    	func(b *buffer, m message) error { return decodeBool(b, &m.(*Mapping).HasFilenames) },    // optional bool has_filenames = 8
    	func(b *buffer, m message) error { return decodeBool(b, &m.(*Mapping).HasLineNumbers) },  // optional bool has_line_numbers = 9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:52:28 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/profile/encode.go

    	func(b *buffer, m message) error { return decodeBool(b, &m.(*Mapping).HasFunctions) },    // optional bool has_functions = 7
    	func(b *buffer, m message) error { return decodeBool(b, &m.(*Mapping).HasFilenames) },    // optional bool has_filenames = 8
    	func(b *buffer, m message) error { return decodeBool(b, &m.(*Mapping).HasLineNumbers) },  // optional bool has_line_numbers = 9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/x86/x86asm/decode.go

    // since we don't care about, say, the distinction between m80dec and m80bcd.
    // Similarly, mm and mm1 have identical meaning, as do xmm and xmm1.
    
    type decodeOp uint16
    
    const (
    	xFail  decodeOp = iota // invalid instruction (return)
    	xMatch                 // completed match
    	xJump                  // jump to pc
    
    	xCondByte     // switch on instruction byte value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/profile/proto.go

    	return nil
    }
    
    func decodeStrings(b *buffer, x *[]string) error {
    	var s string
    	if err := decodeString(b, &s); err != nil {
    		return err
    	}
    	*x = append(*x, s)
    	return nil
    }
    
    func decodeBool(b *buffer, x *bool) error {
    	if err := checkType(b, 0); err != nil {
    		return err
    	}
    	if int64(b.u64) == 0 {
    		*x = false
    	} else {
    		*x = true
    	}
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  7. src/internal/profile/proto.go

    	return nil
    }
    
    func decodeStrings(b *buffer, x *[]string) error {
    	var s string
    	if err := decodeString(b, &s); err != nil {
    		return err
    	}
    	*x = append(*x, s)
    	return nil
    }
    
    func decodeBool(b *buffer, x *bool) error {
    	if err := checkType(b, 0); err != nil {
    		return err
    	}
    	if int64(b.u64) == 0 {
    		*x = false
    	} else {
    		*x = true
    	}
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 17 16:20:57 UTC 2022
    - 6.8K bytes
    - Viewed (0)
Back to top