Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 380 for bodies (0.3 sec)

  1. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/normalization/KotlinApiClassExtractorTest.kt

    import org.objectweb.asm.ClassReader
    import java.net.URLClassLoader
    
    
    class KotlinApiClassExtractorTest : TestWithTempFiles() {
    
        @Test
        fun `API class is unaffected by changes to public method bodies`() {
            givenChangingClass(
                "Foo",
                """
                    fun foo(): String {
                        return "foo"
                    }
                """,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 12K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

                // Backing field declarations use their initializer.
                is KtBackingField ->
                    parent.initializer == child
    
                // Property accessors can use their bodies if not blocks.
                is KtPropertyAccessor ->
                    parent.bodyExpression == child && doesPropertyAccessorUseBody(parent, child)
    
                // Lambdas do not use their expression-blocks if they are inferred
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. docs/changelogs/changelog_2x.md

     *  New: Make the content-type header optional for request bodies.
     *  New: `Response.isSuccessful()` is a convenient API to check response codes.
     *  New: The response body can now be read outside of the callback. Response
        bodies must always be closed, otherwise they will leak connections!
     *  New: APIs to create multipart request bodies (`MultipartBuilder`) and form
        encoding bodies (`FormEncodingBuilder`).
    
    ## Version 2.0.0-RC1
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  4. CHANGELOG.md

        than 63 characters between dots), and empty labels.
     *  New: Don't include the `Content-Length` header in multipart bodies. Servers must delimit
        OkHttp's request bodies using the boundary only. (This change makes OkHttp more consistent with
        browsers and other HTTP clients.)
     *  New: Drop the `tunnelProxy` argument in `MockWebServer.useHttps()`. This change only impacts
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:31:39 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  5. src/net/http/fcgi/fcgi_test.go

    }
    
    func (nopWriteCloser) Write(buf []byte) (int, error) {
    	return len(buf), nil
    }
    
    func (nopWriteCloser) Close() error {
    	return nil
    }
    
    // Test that child.serve closes the bodies of aborted requests and closes the
    // bodies of all requests before returning. Causes deadlock if either condition
    // isn't met. See issue 6934.
    func TestChildServeCleansUp(t *testing.T) {
    	for _, tt := range cleanUpTests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 11 18:51:39 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.proto

      // +optional
      // +listType=atomic
      repeated string omitStages = 3;
    
      // OmitManagedFields indicates whether to omit the managed fields of the request
      // and response bodies from being written to the API audit log.
      // This is used as a global default - a value of 'true' will omit the managed fileds,
      // otherwise the managed fields will be included in the API audit log.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/http1/Http1ExchangeCodec.kt

          if (closed) return
          closed = true
          detachTimeout(timeout)
          state = STATE_READ_RESPONSE_HEADERS
        }
      }
    
      /**
       * An HTTP body with alternating chunk sizes and chunk bodies. It is the caller's responsibility
       * to buffer chunks; typically by using a buffered sink with this sink.
       */
      private inner class ChunkedSink : Sink {
        private val timeout = ForwardingTimeout(sink.timeout())
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/cgocall/cgocall.go

    //	import "C"
    //	import "fmt"
    //	const _ = 3
    //	var _, _ = fmt.Println()
    //	func _() { ... }
    //	func _() { ... C.malloc(k) ... }
    //	func _(T, int) string { ... }
    //
    // In this way, the raw function bodies and const/var initializer
    // expressions are preserved but refer to the "cooked" objects imported
    // from "·this·", and none of the transformed package-level declarations
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/region_control_flow_to_functional.cc

        then_name = tti.callee_names[0].str();
        else_name = tti.callee_names[1].str();
      } else {
        // Collect external values that are used within the else and then bodies.
        extern_values = CollectExternValues(if_region.getRegions());
    
        // These external values need to be added as inputs to the generated If. The
        // order is determined by the order of these values the `extern_vales`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/audit/types.go

    	// be specified per rule in which case the union of both are omitted.
    	// +optional
    	OmitStages []Stage
    
    	// OmitManagedFields indicates whether to omit the managed fields of the request
    	// and response bodies from being written to the API audit log.
    	// This is used as a global default - a value of 'true' will omit the managed fileds,
    	// otherwise the managed fields will be included in the API audit log.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 09:18:23 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top