Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 70 for 20something (0.27 sec)

  1. src/net/url/url_test.go

    	const url = "%gh&%ij"
    	_, err := ParseQuery(url)
    	errStr := fmt.Sprint(err)
    	if !strings.Contains(errStr, "%gh") {
    		t.Errorf(`ParseQuery(%q) returned error %q, want something containing %q"`, url, errStr, "%gh")
    	}
    }
    
    func TestParseErrors(t *testing.T) {
    	tests := []struct {
    		in      string
    		wantErr bool
    	}{
    		{"http://[::1]", false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  2. src/runtime/mprof.go

    			// This goroutine is already in the profile (or is new since the
    			// start of collection, so shouldn't appear in the profile).
    			break
    		}
    		if prev == goroutineProfileInProgress {
    			// Something else is adding gp1 to the goroutine profile right now.
    			// Give that a moment to finish.
    			yield()
    			continue
    		}
    
    		// While we have gp1.goroutineProfiled set to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

      }
    
      /**
       * When writing a set of headers fails due to an `IOException`, make sure the writer is left
       * in a consistent state so the next writer also gets an `IOException` also instead of
       * something worse (like an [IllegalStateException].
       *
       *
       * See https://github.com/square/okhttp/issues/1651
       */
      @Test fun socketExceptionWhileWritingHeaders() {
        peer.acceptFrame() // SYN_STREAM.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    =====
    [.multi-language-sample]
    =====
    .build.gradle.kts
    [source,kotlin]
    ----
    tasks.create("foo") {
        tasks.create("bar")
    }
    ----
    =====
    ====
    
    When converting this to use the new API, something surprising happens: `bar` doesn't exist.
    The new API only executes configuration actions when necessary,
    so the `register()` for task `bar` only executes when `foo` is configured.
    
    ====
    [.multi-language-sample]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    [[kotdsl:limitations]]
    == Limitations
    
    * The Kotlin DSL is link:{gradle-issues}15886[known to be slower than the Groovy DSL] on first use, for example with clean checkouts or on ephemeral continuous integration agents.
    Changing something in the _buildSrc_ directory also has an impact as it invalidates build-script caching.
    The main reason for this is the slower script compilation for Kotlin DSL.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. src/cmd/internal/testdir/testdir_test.go

    				// compile -S output after we strip file/line info) to avoid
    				// trivial bugs such as "ADD" matching "FADD". This
    				// doesn't remove genericity: it's still possible to write
    				// something like "F?ADD", but we make common cases simpler
    				// to get right.
    				oprx, err := regexp.Compile("^" + rxsrc)
    				if err != nil {
    					t.Fatalf("%s:%d: %v", t.goFileName(), i+1, err)
    				}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/debug.go

    //	  v5 = ArgIntReg <int> {used} [0] : CX
    //
    // While this is an accurate picture of the live incoming params,
    // we also want to have debug locations for non-live params (or
    // their non-live pieces), e.g. something like
    //
    //	b1:
    //	  v9 = ArgIntReg <*uint8> {s+0} [0] : AX
    //	  v4 = ArgIntReg <uintptr> {s+8} [0] : BX
    //	  v5 = ArgIntReg <int> {used} [0] : CX
    //	  v10 = ArgIntReg <int> {unused} [0] : DI
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  8. src/net/http/client_test.go

    	"sync"
    	"sync/atomic"
    	"testing"
    	"time"
    )
    
    var robotsTxtHandler = HandlerFunc(func(w ResponseWriter, r *Request) {
    	w.Header().Set("Last-Modified", "sometime")
    	fmt.Fprintf(w, "User-agent: go\nDisallow: /something/")
    })
    
    // pedanticReadAll works like io.ReadAll but additionally
    // verifies that r obeys the documented io.Reader contract.
    func pedanticReadAll(r io.Reader) (b []byte, err error) {
    	var bufa [64]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  9. src/runtime/mgc.go

    				"work.nwait=", incnwait, "work.nproc=", work.nproc)
    			throw("work.nwait > work.nproc")
    		}
    
    		// We'll releasem after this point and thus this P may run
    		// something else. We must clear the worker mode to avoid
    		// attributing the mode to a different (non-worker) G in
    		// traceGoStart.
    		pp.gcMarkWorkerMode = gcMarkWorkerNotWorker
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  10. src/runtime/traceback.go

    			// Note: this may perhaps keep return variables alive longer than
    			// strictly necessary, as we are using "function has a defer statement"
    			// as a proxy for "function actually deferred something". It seems
    			// to be a minor drawback. (We used to actually look through the
    			// gp._defer for a defer corresponding to this function, but that
    			// is hard to do with defer records on the stack during a stack copy.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top