Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of about 10,000 for http3 (0.08 sec)

  1. cmd/kubeadm/app/discovery/https/https.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package https
    
    import (
    	"io"
    	"net/http"
    	"time"
    
    	netutil "k8s.io/apimachinery/pkg/util/net"
    	"k8s.io/client-go/tools/clientcmd"
    	clientcmdapi "k8s.io/client-go/tools/clientcmd/api"
    
    	"k8s.io/kubernetes/cmd/kubeadm/app/discovery/file"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 24 04:29:10 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package okhttp3.internal.http2
    
    import okhttp3.internal.format
    import okio.ByteString.Companion.encodeUtf8
    
    object Http2 {
      @JvmField
      val CONNECTION_PREFACE = "PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n".encodeUtf8()
    
      /** The initial max frame size, applied independently writing to, or reading from the peer. */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/web/http.go

    			URL:        u.Redacted(),
    			Status:     http.StatusText(http.StatusNotFound),
    			StatusCode: http.StatusNotFound,
    			Body:       http.NoBody,
    			fileErr:    err,
    		}, nil
    	}
    
    	if os.IsPermission(err) {
    		return &Response{
    			URL:        u.Redacted(),
    			Status:     http.StatusText(http.StatusForbidden),
    			StatusCode: http.StatusForbidden,
    			Body:       http.NoBody,
    			fileErr:    err,
    		}, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 17:34:27 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  4. src/net/http/http.go

    // license that can be found in the LICENSE file.
    
    //go:generate bundle -o=h2_bundle.go -prefix=http2 -tags=!nethttpomithttp2 golang.org/x/net/http2
    
    package http
    
    import (
    	"io"
    	"strconv"
    	"strings"
    	"time"
    	"unicode/utf8"
    
    	"golang.org/x/net/http/httpguts"
    )
    
    // incomparable is a zero-width, non-comparable type. Adding it to a struct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. pkg/test/echo/server/endpoint/http.go

    	defer onReady()
    
    	client := http.Client{}
    	var url string
    	if s.isUDS() {
    		url = "http://unix/" + s.UDSServer
    		client.Transport = &http.Transport{
    			DialContext: func(_ context.Context, _, _ string) (net.Conn, error) {
    				return net.Dial("unix", s.UDSServer)
    			},
    		}
    	} else if s.Port.TLS {
    		url = fmt.Sprintf("https://%s", address)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 16:20:31 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  6. src/internal/trace/traceviewer/http.go

    import (
    	"embed"
    	"fmt"
    	"html/template"
    	"net/http"
    	"strings"
    )
    
    func MainHandler(views []View) http.Handler {
    	return http.HandlerFunc(func(w http.ResponseWriter, _ *http.Request) {
    		if err := templMain.Execute(w, views); err != nil {
    			http.Error(w, err.Error(), http.StatusInternalServerError)
    			return
    		}
    	})
    }
    
    const CommonStyle = `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  7. docs/en/docs/img/deployment/https/https.svg

    https.svg...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 39.5K bytes
    - Viewed (0)
  8. pkg/probe/http/http.go

    type Prober interface {
    	Probe(req *http.Request, timeout time.Duration) (probe.Result, string, error)
    }
    
    type httpProber struct {
    	transport               *http.Transport
    	followNonLocalRedirects bool
    }
    
    // Probe returns a ProbeRunner capable of running an HTTP check.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 10 00:37:32 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. docs/en/docs/img/deployment/https/https.drawio

                    </mxCell>
                    <mxCell id="29" value="&lt;font face=&quot;Roboto&quot; data-font-src=&quot;https://fonts.googleapis.com/css?family=Roboto&quot; style=&quot;font-size: 24px&quot;&gt;https://someapp.example.com&lt;/font&gt;" style="rounded=0;whiteSpace=wrap;html=1;fontStyle=1;strokeWidth=4;" vertex="1" parent="33">
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 25.7K bytes
    - Viewed (0)
  10. fastapi/security/http.py

    class HTTPBasicCredentials(BaseModel):
        """
        The HTTP Basic credentials given as the result of using `HTTPBasic` in a
        dependency.
    
        Read more about it in the
        [FastAPI docs for HTTP Basic Auth](https://fastapi.tiangolo.com/advanced/security/http-basic-auth/).
        """
    
        username: Annotated[str, Doc("The HTTP Basic username.")]
        password: Annotated[str, Doc("The HTTP Basic password.")]
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Apr 19 15:29:38 UTC 2024
    - 13.2K bytes
    - Viewed (0)
Back to top