Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for OP (0.03 sec)

  1. android/guava/src/com/google/common/cache/LocalCache.java

                ValueReference<K, V> valueReference = e.getValueReference();
                if (valueReference.isLoading()
                    || (checkTime && (now - e.getWriteTime() < map.refreshNanos))) {
                  // refresh is a no-op if loading is pending
                  // if checkTime, we want to check *after* acquiring the lock if refresh still needs
                  // to be scheduled
                  return null;
                }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-helper.sh

        echo "Mounting /var/lib/kubelet/pki on tmpfs"
        mount -t tmpfs tmpfs /var/lib/kubelet/pki
    }
    
    # Override for GKE custom master setup scripts (no-op outside of GKE).
    function gke-master-start {
      if [[ -e "${KUBE_HOME}/bin/gke-internal-configure-helper.sh" ]]; then
        echo "Running GKE internal configuration script"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  3. src/net/http/server.go

    func isCommonNetReadError(err error) bool {
    	if err == io.EOF {
    		return true
    	}
    	if neterr, ok := err.(net.Error); ok && neterr.Timeout() {
    		return true
    	}
    	if oe, ok := err.(*net.OpError); ok && oe.Op == "read" {
    		return true
    	}
    	return false
    }
    
    // Serve a new connection.
    func (c *conn) serve(ctx context.Context) {
    	if ra := c.rwc.RemoteAddr(); ra != nil {
    		c.remoteAddr = ra.String()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  4. src/net/http/transport_test.go

    	if !ok {
    		t.Fatalf("got %T, want *url.Error", err)
    	}
    	oe, ok := uerr.Err.(*net.OpError)
    	if !ok {
    		t.Fatalf("url.Error.Err =  %T; want *net.OpError", uerr.Err)
    	}
    	want := &net.OpError{
    		Op:  "proxyconnect",
    		Net: "tcp",
    		Err: errDial, // original error, unwrapped.
    	}
    	if !reflect.DeepEqual(oe, want) {
    		t.Errorf("Got error %#v; want %#v", oe, want)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  5. src/net/http/serve_test.go

    func (l *errorListener) Addr() net.Addr {
    	return dummyAddr("test-address")
    }
    
    func TestAcceptMaxFds(t *testing.T) {
    	setParallel(t)
    
    	ln := &errorListener{[]error{
    		&net.OpError{
    			Op:  "accept",
    			Err: syscall.EMFILE,
    		}}}
    	server := &Server{
    		Handler:  HandlerFunc(HandlerFunc(func(ResponseWriter, *Request) {})),
    		ErrorLog: log.New(io.Discard, "", 0), // noisy otherwise
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    // If this drops the number of active LockOSThread calls on the
    // calling goroutine to zero, it unwires the calling goroutine from
    // its fixed operating system thread.
    // If there are no active LockOSThread calls, this is a no-op.
    //
    // Before calling UnlockOSThread, the caller must ensure that the OS
    // thread is suitable for running other goroutines. If the caller made
    // any permanent changes to the state of the thread that would affect
    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