Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 35 of 35 for Rings (0.07 sec)

  1. src/net/http/h2_bundle.go

    	var p [8]byte
    	for {
    		if _, err := rand.Read(p[:]); err != nil {
    			return err
    		}
    		cc.mu.Lock()
    		// check for dup before insert
    		if _, found := cc.pings[p]; !found {
    			cc.pings[p] = c
    			cc.mu.Unlock()
    			break
    		}
    		cc.mu.Unlock()
    	}
    	var pingError error
    	errc := make(chan struct{})
    	go func() {
    		cc.t.markNewGoroutine()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/vcs/vcs.go

    			if ee, ok := err.(*exec.ExitError); ok && len(ee.Stderr) > 0 {
    				os.Stderr.Write(ee.Stderr)
    			} else {
    				fmt.Fprintln(os.Stderr, err.Error())
    			}
    		}
    	}
    	return out, err
    }
    
    // Ping pings to determine scheme to use.
    func (v *Cmd) Ping(scheme, repo string) error {
    	// Run the ping command in an arbitrary working directory,
    	// but don't let the current working directory pollute the results.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    she found to be nothing but the tops of the trees under which she
    had been wandering, when a sharp hiss made her draw back in a
    hurry:  a large pigeon had flown into her face, and was beating
    her violently with its wings.
    
      `Serpent!' screamed the Pigeon.
    
      `I'm NOT a serpent!' said Alice indignantly.  `Let me alone!'
    
      `Serpent, I say again!' repeated the Pigeon, but in a more
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    she found to be nothing but the tops of the trees under which she
    had been wandering, when a sharp hiss made her draw back in a
    hurry:  a large pigeon had flown into her face, and was beating
    her violently with its wings.
    
      `Serpent!' screamed the Pigeon.
    
      `I'm NOT a serpent!' said Alice indignantly.  `Let me alone!'
    
      `Serpent, I say again!' repeated the Pigeon, but in a more
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.21.md

    - Enable SPDY pings to keep connections alive, so that `kubectl exec` and `kubectl portforward` won't be interrupted. ([#97083](https://github.com/kubernetes/kubernetes/pull/97083), [@knight42](https://github.com/knight42)) [SIG API Machinery and CLI]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
Back to top