Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 629 for whatev (0.17 sec)

  1. okhttp/src/test/java/okhttp3/DuplexTest.kt

        assumeNotWindows()
        enableProtocol(Protocol.HTTP_2)
        val body =
          MockStreamHandler()
            .exhaustResponse()
            .receiveRequest("hey\n")
            .receiveRequest("whats going on\n")
            .exhaustRequest()
        server.enqueue(
          MockResponse.Builder()
            .clearHeaders()
            .addHeader("h1", "v1")
            .addHeader("h2", "v2")
            .streamHandler(body)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/native/cpp_application_plugin.adoc

    [[sec:cpp_application_layout]]
    === Project layout
    
    The {cpp} Application Plugin assumes the project layout shown below.
    None of these directories need to exist or have anything in them.
    The {cpp} Application Plugin will compile whatever it finds and ignore anything missing.
    
    `src/main/cpp`::
    {cpp} source with extension of `.cpp`, `.c++` or `.cc`
    
    `src/main/headers`::
    Headers - headers needed to compile the application
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  3. docs/en/docs/async.md

    Next, it 🤖 takes the first task to finish (let's say, our "slow-file" 📝) and continues whatever it had to do with it.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  4. src/strconv/decimal.go

    func shouldRoundUp(a *decimal, nd int) bool {
    	if nd < 0 || nd >= a.nd {
    		return false
    	}
    	if a.d[nd] == '5' && nd+1 == a.nd { // exactly halfway - round to even
    		// if we truncated, a little higher than what's recorded - always round up
    		if a.trunc {
    			return true
    		}
    		return nd > 0 && (a.d[nd-1]-'0')%2 != 0
    	}
    	// not halfway - digit tells all
    	return a.d[nd] >= '5'
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jul 15 19:41:25 UTC 2017
    - 11K bytes
    - Viewed (0)
  5. src/encoding/gob/debug.go

    	n := int(t)
    	if n > len(tabs) {
    		n = len(tabs)
    	}
    	return tabs[0:n]
    }
    
    func (t tab) print() {
    	fmt.Fprint(os.Stderr, t)
    }
    
    // A peekReader wraps an io.Reader, allowing one to peek ahead to see
    // what's coming without stealing the data from the client of the Reader.
    type peekReader struct {
    	r    io.Reader
    	data []byte // read-ahead data
    }
    
    // newPeekReader returns a peekReader that wraps r.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 09:34:41 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  6. okhttp-testing-support/src/main/kotlin/okhttp3/testing/PlatformRule.kt

          const val JDK8_PROPERTY = "jdk8"
          const val OPENJSSE_PROPERTY = "openjsse"
          const val BOUNCYCASTLE_PROPERTY = "bouncycastle"
          const val LOOM_PROPERTY = "loom"
    
          /**
           * For whatever reason our BouncyCastle provider doesn't work with ECDSA keys. Just configure it
           * to use RSA-2048 instead.
           *
           * (We otherwise prefer ECDSA because it's faster.)
           */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. src/net/tcpsock_test.go

    // On 32-bit systems this tests that maxint reads work.
    func TestTCPBig(t *testing.T) {
    	if !*testTCPBig {
    		t.Skip("test disabled; use -tcpbig to enable")
    	}
    
    	for _, writev := range []bool{false, true} {
    		t.Run(fmt.Sprintf("writev=%v", writev), func(t *testing.T) {
    			ln := newLocalListener(t, "tcp")
    			defer ln.Close()
    
    			x := int(1 << 30)
    			x = x*5 + 1<<20 // just over 5 GB on 64-bit, just over 1GB on 32-bit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/net/HttpHeaders.java

      /**
       * The HTTP <a href="http://html.spec.whatwg.org/multipage/semantics.html#hyperlink-auditing">
       * {@code Ping-From}</a> header field name.
       *
       * @since 19.0
       */
      public static final String PING_FROM = "Ping-From";
      /**
       * The HTTP <a href="http://html.spec.whatwg.org/multipage/semantics.html#hyperlink-auditing">
       * {@code Ping-To}</a> header field name.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 01 18:44:57 UTC 2024
    - 34.3K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/userinput/UserInputHandlingIntegrationTest.groovy

                tasks.register("generate", FileProducer) {
                    output = layout.buildDirectory.file("out.txt")
                    content = handler.askUser { it.askQuestion("what?", "<default>") }
                }
            """
            def prompt = "what? (default: <default>):"
    
            when:
            runWithInput("generate", prompt, "value")
    
            then:
            result.assertTaskNotSkipped(":generate")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/cross_project_publications.adoc

    By running both of these reports on the consumer and producer sides of a relationship, respectively, you can see exactly what attributes are involved in matching during dependency resolution and better predict the outcome when configurations are resolved.
    
    Now, we're saying that whenever we're going to resolve the test runtime classpath, what we are looking for is _instrumented classes_.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 18K bytes
    - Viewed (0)
Back to top