Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 46 for onFinished (0.22 sec)

  1. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        assertThat(data1.streamId).isEqualTo(3)
        assertArrayEquals("abcdefghi".toByteArray(), data1.data)
        assertThat(data1.inFinished).isFalse()
        val headers2 = peer.takeFrame()
        assertThat(headers2.type).isEqualTo(Http2.TYPE_HEADERS)
        assertThat(headers2.inFinished).isTrue()
      }
    
      @Test fun clientCannotReadTrailersWithoutExhaustingStream() {
        // Write the mocking script.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/ProgressBar.java

                if (current > total) {
                    // progress was reported excessively,
                    // we do not know how much work really is left,
                    // so we at least show one progress bar tick as unfinished
                    completedWidth = progressBarWidth - 1;
                } else {
                    completedWidth = (int) ((double) current / total * progressBarWidth);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/binutils/disasm.go

    	names, start := []string{}, uint64(0)
    
    	buf := bytes.NewBuffer(syms)
    
    	for {
    		symAddr, name, err := nextSymbol(buf)
    		if err == io.EOF {
    			// Done. If there was an unfinished group, append it.
    			if len(names) != 0 {
    				if match := matchSymbol(names, start, symAddr-1, r, address); match != nil {
    					symbols = append(symbols, &plugin.Sym{Name: match, File: file, Start: start, End: symAddr - 1})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheReport.kt

                                + "The build might finish before the report has been completely written."
                        )
                        logger.info("Unfinished tasks: {}", unfinishedTasks)
                    }
                }
    
                private
                fun moveSpoolFileTo(outputDirectory: File): File {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/testing/GcFinalization.java

       * from GC, as with {@link #awaitClear}. Because there are no guarantees for the order of GC
       * finalization processing, there may still be some unfinished work for the GC to do after this
       * method returns.
       *
       * <p>This method does not create any memory pressure as would be required to cause soft
       * references to be processed.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. src/html/template/escape_test.go

    		{
    			`<a onclick="alert('Hello \`,
    			`unfinished escape sequence in JS string: "Hello \\"`,
    		},
    		{
    			`<a onclick='alert("Hello\, World\`,
    			`unfinished escape sequence in JS string: "Hello\\, World\\"`,
    		},
    		{
    			`<a onclick='alert(/x+\`,
    			`unfinished escape sequence in JS string: "x+\\"`,
    		},
    		{
    			`<a onclick="/foo[\]/`,
    			`unfinished JS regexp charset: "foo[\\]/"`,
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/testing/GcFinalization.java

       * from GC, as with {@link #awaitClear}. Because there are no guarantees for the order of GC
       * finalization processing, there may still be some unfinished work for the GC to do after this
       * method returns.
       *
       * <p>This method does not create any memory pressure as would be required to cause soft
       * references to be processed.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dynamic_versions.adoc

    == Declaring a changing version
    
    A team might decide to implement a series of features before releasing a new version of the application or library. A common strategy to allow consumers to integrate an unfinished version of their artifacts early and often is to release a module with a so-called _changing version_.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options.go

    		"and become live. From apiserver's start time to when this amount of time has elapsed, /livez will assume "+
    		"that unfinished post-start hooks will complete successfully and therefore return true.")
    
    	fs.IntVar(&s.MinRequestTimeout, "min-request-timeout", s.MinRequestTimeout, ""+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:53:51 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  10. src/compress/flate/huffman_bit_writer.go

    		}
    		w.nbytes = n
    	}
    }
    
    func (w *huffmanBitWriter) writeBytes(bytes []byte) {
    	if w.err != nil {
    		return
    	}
    	n := w.nbytes
    	if w.nbits&7 != 0 {
    		w.err = InternalError("writeBytes with unfinished bits")
    		return
    	}
    	for w.nbits != 0 {
    		w.bytes[n] = byte(w.bits)
    		w.bits >>= 8
    		w.nbits -= 8
    		n++
    	}
    	if n != 0 {
    		w.write(w.bytes[:n])
    	}
    	w.nbytes = 0
    	w.write(bytes)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:59:14 UTC 2022
    - 18.4K bytes
    - Viewed (0)
Back to top