Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for indices (0.08 sec)

  1. cmd/storage-rest-server.go

    // After calling this the stream should not be written to.
    func (h *httpStreamResponse) CloseWithError(err error) {
    	if h.done == nil {
    		return
    	}
    	h.done <- err
    	h.err = err
    	// Indicates that the response is done.
    	<-h.done
    	h.done = nil
    }
    
    // streamHTTPResponse can be used to avoid timeouts with long storage
    // operations, such as bitrot verification or data usage scanning.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/server.go

    	// pushes.
    	expected := s.XDSServer.InboundUpdates.Load()
    	return kubelib.WaitForCacheSync("push context", stop, func() bool { return s.pushContextReady(expected) })
    }
    
    // pushContextReady indicates whether pushcontext has processed all inbound config updates.
    func (s *Server) pushContextReady(expected int64) bool {
    	committed := s.XDSServer.CommittedUpdates.Load()
    	if committed < expected {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  3. src/os/exec/exec.go

    			continue
    		}
    		if strings.EqualFold(k, "SYSTEMROOT") {
    			// We already have it.
    			return env
    		}
    	}
    	return append(env, "SYSTEMROOT="+os.Getenv("SYSTEMROOT"))
    }
    
    // ErrDot indicates that a path lookup resolved to an executable
    // in the current directory due to ‘.’ being in the path, either
    // implicitly or explicitly. See the package documentation for details.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  4. src/os/exec/exec_test.go

    			t.Errorf("Wait error = %v; want an error wrapping %v", err, errArbitrary)
    		}
    	})
    
    	// If Cancel returns an error equivalent to ErrProcessDone,
    	// Wait should ignore that error. (ErrProcessDone indicates that the
    	// process was already done before we tried to interrupt it — maybe we
    	// just didn't notice because Wait hadn't been called yet.)
    	t.Run("success after ErrProcessDone", func(t *testing.T) {
    		t.Parallel()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
Back to top