Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for Continuation (0.32 sec)

  1. src/cmd/vendor/rsc.io/markdown/para.go

    	return &Paragraph{
    		pos,
    		p.newText(pos, s),
    	}
    }
    
    func newPara(p *parseState, s line) (line, bool) {
    	// Process paragraph continuation text or start new paragraph.
    	b := p.para()
    	indented := p.lineDepth == len(p.stack)-2 // fully indented, not playing "pargraph continuation text" games
    	text := s.trimSpaceString()
    
    	if b != nil && b.table != nil {
    		if indented && text != "" && text != "|" {
    			// Continue table.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/PreprocessingReader.java

     */
    package org.gradle.language.nativeplatform.internal.incremental.sourceparser;
    
    import java.io.IOException;
    import java.io.Reader;
    
    /**
     * Replaces c-style comments with a single space, and removes line-continuation characters.
     * This code is largely adopted from org.apache.tools.ant.filters.StripJavaComments.
     */
    public class PreprocessingReader {
        private final Reader reader;
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/resolver/KotlinBuildScriptModelRepositoryTest.kt

    import org.hamcrest.MatcherAssert.assertThat
    
    import org.junit.Test
    
    import java.io.File
    
    import java.util.concurrent.ArrayBlockingQueue
    import java.util.concurrent.TimeUnit
    
    import kotlin.coroutines.Continuation
    
    
    class KotlinBuildScriptModelRepositoryTest {
    
        @Test
        fun `cancels older requests before returning response to most recent request`() = runBlockingWithTimeout {
    
            // given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. src/encoding/binary/varint.go

    // The encoding is:
    // - unsigned integers are serialized 7 bits at a time, starting with the
    //   least significant bits
    // - the most significant bit (msb) in each output byte indicates if there
    //   is a continuation byte (msb = 1)
    // - signed integers are mapped to unsigned integers using "zig-zag"
    //   encoding: Positive values x are written as 2*x + 0, negative values
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/api/DaemonCommandAction.java

     * <p>
     * Implementations must be multiple use and threadsafe.
     */
    public interface DaemonCommandAction {
    
        /**
         * Executes this action.
         * <p>
         * The execution object is a kind of continuation and also carries the “result” of the action.
         * For example, if an exception arises as part of actioning the command, the exception should be
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/KtFe10TypeSystemCommonBackendContextForTypeMapping.kt

            }
    
            return upperBounds.firstOrNull() ?: builtIns.nullableAnyType
        }
    
        override fun continuationTypeConstructor(): TypeConstructorMarker {
            val continuationFqName = StandardClassIds.Continuation.asSingleFqName()
            val foundClasses = resolveSession.getTopLevelClassifierDescriptors(continuationFqName, NoLookupLocation.FROM_IDE)
            return foundClasses.firstOrNull()?.typeConstructor
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/api/DaemonCommandExecution.java

    import org.gradle.launcher.daemon.context.DaemonContext;
    import org.gradle.launcher.daemon.protocol.Command;
    
    import java.util.LinkedList;
    import java.util.List;
    
    /**
     * A continuation style object used to model the execution of a command.
     * <p>
     * Facilitates processing “chains”, making it easier to break up processing logic into discrete {@link org.gradle.launcher.daemon.server.api.DaemonCommandAction actions}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. src/net/textproto/textproto.go

    // a server.
    //
    // [Pipeline], to manage pipelined requests and responses
    // in a client.
    //
    // [Reader], to read numeric response code lines,
    // key: value headers, lines wrapped with leading spaces
    // on continuation lines, and whole text blocks ending
    // with a dot on a line by itself.
    //
    // [Writer], to write dot-encoded text blocks.
    //
    // [Conn], a convenient packaging of [Reader], [Writer], and [Pipeline] for use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/internal/http2/FrameLogTest.kt

        assertThat(frameLog(true, 3, 10000, TYPE_HEADERS, 0x4))
          .isEqualTo("<< 0x00000003 10000 HEADERS       END_HEADERS")
        assertThat(frameLog(true, 3, 10000, TYPE_CONTINUATION, 0x4))
          .isEqualTo("<< 0x00000003 10000 CONTINUATION  END_HEADERS")
        assertThat(frameLog(true, 4, 10000, TYPE_PUSH_PROMISE, 0x4))
          .isEqualTo("<< 0x00000004 10000 PUSH_PROMISE  END_PUSH_PROMISE")
      }
    
      @Test
      fun flagOverlapOn0x20() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/roundtrip_test.go

    		{
    			name: "nonempty string",
    			obj:  "hello world",
    		},
    		{
    			name: "empty string",
    			obj:  "",
    		},
    		{
    			name: "string containing invalid UTF-8 sequence",
    			obj:  "\x80", // first byte is a continuation byte
    		},
    		{
    			name: "true",
    			obj:  true,
    		},
    		{
    			name: "false",
    			obj:  false,
    		},
    		{
    			name: "int64",
    			obj:  int64(5),
    		},
    		{
    			name: "int64 max",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 21:48:12 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top