Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for Continuation (0.21 sec)

  1. src/runtime/stack_test.go

    func testDeferLeafSigpanic1() {
    	// Cause a sigpanic to be injected in this frame.
    	//
    	// This function has to be declared before
    	// TestDeferLeafSigpanic so the runtime will crash if we think
    	// this function's continuation PC is in
    	// TestDeferLeafSigpanic.
    	*(*int)(nil) = 0
    }
    
    // TestDeferLeafSigpanic tests defer matching around leaf functions
    // that sigpanic. This is tricky because on LR machines the outer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/sourceparser/RegexBackedCSourceParserTest.groovy

     # include X(
     # include X( ++
     # include X(a,
    
    """
    
            then:
            includes.size() == 6
            imports.size() == 4
        }
    
        def "detects imports with line=continuation"() {
            when:
            sourceFile << """
    #include \\
    "test1"
    #\\
    include\\
     "test2"
    #incl\\
    ude "te\\
    st3"
    """
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/kernels/xla_ops.cc

          xla_compiler_args, DeviceCompileMode::kStrict,
          /*may_alias_resource_update=*/true, &client, &compilation_result,
          &executable);
      OP_REQUIRES_OK_ASYNC(ctx, status, done);
    
      // Continuation of the execution, may be run in a different thread.
      auto run_xla_cluster = [ctx, client, executable, compilation_result, done,
                              inputs, resources = resources_]() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  4. docs/changelogs/changelog_2x.md

     *  Fix: Always configure NPN headers. This fixes connectivity to
        `https://facebook.com` when SPDY and HTTP/2 are both disabled. Otherwise an
        unexpected NPN response is received and OkHttp crashes.
     *  Fix: Write continuation frames when HPACK data is larger than 16383 bytes.
     *  Fix: Don't drop uncaught exceptions thrown in async calls.
     *  Fix: Throw an exception eagerly when a request body is not legal. Previously
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  5. src/runtime/trace.go

    				throw("unexpected trace reader")
    			}
    
    			return true
    		}, nil, waitReasonTraceReaderBlocked, traceBlockSystemGoroutine, 2)
    		goto top
    	}
    
    	return buf
    }
    
    // readTrace0 is ReadTrace's continuation on g0. This must run on the
    // system stack because it acquires trace.lock.
    //
    //go:systemstack
    func readTrace0() (buf []byte, park bool) {
    	if raceenabled {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
Back to top