Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for VarLive (0.42 sec)

  1. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    the top of the Bubble, I found that they were sensibly dilated by increasing the obliquity, but yet not so much by far as those made by thinn'd Air in the seventh Observation. For there they were dilated so much as, when view'd most obliquely, to arrive at a part of the Plate more than twelve times thicker than that where they appear'd when viewed perpendicularly; whereas in this case the thickness of the Water, at which they arrived when viewed most obliquely, was to that thickness which exhibited...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  2. src/net/http/serve_test.go

    		if err != nil {
    			errCh <- err
    			return
    		}
    		// And now just block, making the server block on our
    		// 100000 bytes of body that will never arrive.
    		<-closeConn
    	}()
    	select {
    	case err := <-readErrCh:
    		if err == nil {
    			t.Error("Read was nil. Expected error.")
    		}
    	case err := <-errCh:
    		t.Error(err)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  3. src/net/http/transport_test.go

    		if !errors.Is(err, context.Canceled) {
    			t.Errorf("request 2: got err %v, want Canceled", err)
    		}
    
    		// Unblock the first request.
    		close(idlec)
    	}()
    
    	// Wait for the second request to arrive at the server, and then cancel
    	// the request context.
    	r2c := <-reqc
    	cancel()
    
    	<-idlec
    
    	close(r2c)
    	wg.Wait()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    		// a C-created thread and need to create a new thread.
    		startTemplateThread()
    		cgocall(_cgo_notify_runtime_init_done, nil)
    	}
    
    	// Run the initializing tasks. Depending on build mode this
    	// list can arrive a few different ways, but it will always
    	// contain the init tasks computed by the linker for all the
    	// packages in the program (excluding those added at runtime
    	// by package plugin). Run through the modules in dependency
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top