Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,128 for continues (0.41 sec)

  1. src/io/multi_test.go

    		t.Fatal(err)
    	}
    	const want = "ab"
    	if string(got) != want {
    		t.Errorf("got %q; want %q", got, want)
    	}
    }
    
    // Test that a reader returning (n, EOF) at the end of a MultiReader
    // chain continues to return EOF on its final read, rather than
    // yielding a (0, EOF).
    func TestMultiReaderFinalEOF(t *testing.T) {
    	r := MultiReader(bytes.NewReader(nil), byteAndEOFReader('a'))
    	buf := make([]byte, 2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:49:32 UTC 2022
    - 10K bytes
    - Viewed (0)
  2. docs/changelogs/changelog_2x.md

        for OkHttp 2.0 and 2.1 will continue to work with this update.
    
     *  **`COMPATIBLE_TLS` no longer supports SSLv3.** In response to the
        [POODLE](https://googleonlinesecurity.blogspot.ca/2014/10/this-poodle-bites-exploiting-ssl-30.html)
        vulnerability, OkHttp no longer offers SSLv3 when negotiation an
        HTTPS connection. If you continue to need to connect to webservers
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/base/FinalizableReferenceQueueClassLoaderUnloadingTest.java

      /*
       * The following tests check that the use of FinalizableReferenceQueue does not prevent the
       * ClassLoader that loaded that class from later being garbage-collected. If anything continues
       * to reference the FinalizableReferenceQueue class then its ClassLoader cannot be
       * garbage-collected, even if there are no more instances of FinalizableReferenceQueue itself.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/AbstractFileWatcherUpdaterTest.groovy

            ifNonHierarchical * watcher.startWatching({ equalIgnoringOrder(it, [probeRegistry.getProbeDirectory(unsupportedFileSystemMountPoint)]) })
            0 * _
        }
    
        def "watching continues for watched hierarchies that are confirmed by watch probe"() {
            def watchableHierarchy = file("watchable").createDir()
            def watchableHierarchyProbeDir = watchableHierarchy.file(".gradle")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  5. src/os/signal/signal_cgo_test.go

    	// 3. Stop the child with ^Z.
    	// 4. Take over as foreground process group of the PTY from the parent.
    	// 5. Make the child foreground process group again.
    	// 6. Continue the child.
    	//
    	// On Darwin, step 4 results in the read() returning EINTR once the
    	// process continues. internal/poll should automatically retry the
    	// read.
    	//
    	// These steps are complicated by the rules around foreground process
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 10:09:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_download.txt

    stdout '^golang\.org/x/text v0.0.0-20170915032832-14c0d48ead0c$'
    ! exists $GOPATH/pkg/mod/cache/download/golang.org/x/text/@v/v0.0.0-20170915032832-14c0d48ead0c.zip
    cmp go.mod go.mod.go117
    
    # However, 'go mod download all' continues to download the selected version
    # of every module reported by 'go list -m all'.
    
    cp go.mod.orig go.mod
    go mod edit -go=1.17
    go clean -modcache
    go mod download all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 04 20:42:35 UTC 2021
    - 8.5K bytes
    - Viewed (0)
  7. src/go/doc/testdata/testing.go

    }
    
    // Fail marks the function as having failed but continues execution.
    func (c *common) Fail() { c.failed = true }
    
    // Failed reports whether the function has failed.
    func (c *common) Failed() bool { return c.failed }
    
    // FailNow marks the function as having failed and stops its execution.
    // Execution will continue at the next Test.
    func (c *common) FailNow() {
    	c.Fail()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/Uninterruptibles.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Utilities for treating interruptible operations as uninterruptible. In all cases, if a thread is
     * interrupted during such a call, the call continues to block until the result is available or the
     * timeout elapses, and only then re-interrupts the thread.
     *
     * @author Anthony Zana
     * @since 10.0
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanTest.groovy

            then:
            failures.size() == 1
            failures[0] instanceof BuildCancelledException
        }
    
        def "continues to return tasks and rethrows failure on completion when failure handler indicates that execution should continue"() {
            def failures = []
            RuntimeException failure = new RuntimeException()
            Task a = task("a", failure: failure)
            Task b = task("b")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/pcln.go

    		// and the pc deltas are unsigned. Both kinds of deltas are sent
    		// as variable-length little-endian base-128 integers,
    		// where the 0x80 bit indicates that the integer continues.
    
    		if dbg {
    			ctxt.Logf("%6x %6d %v\n", uint64(p.Pc), val, p)
    		}
    
    		if started {
    			pcdelta := (p.Pc - pc) / int64(ctxt.Arch.MinLC)
    			n := binary.PutUvarint(buf, uint64(pcdelta))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 20:45:15 UTC 2022
    - 11.8K bytes
    - Viewed (0)
Back to top