Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for 80 (0.14 sec)

  1. istioctl/pkg/describe/describe_test.go

    						Selector: map[string]string{
    							"istio": "ingressgateway",
    						},
    						Ports: []corev1.ServicePort{
    							{
    								Name:       "http",
    								Port:       80,
    								TargetPort: intstr.FromInt32(80),
    							},
    						},
    					},
    				},
    				&corev1.Pod{
    					ObjectMeta: metav1.ObjectMeta{
    						Name:      "productpage-v1-1234567890",
    						Namespace: "default",
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Mar 28 09:54:01 GMT 2024
    - 30.4K bytes
    - Viewed (0)
  2. cmd/net_test.go

    		globalMinioHost, globalMinioPort = host, port
    	}()
    	testCases := []struct {
    		host, port     string
    		expectedResult string
    	}{
    		{"", "80", "http://127.0.0.1:80"},
    		{"127.0.0.1", "80", "http://127.0.0.1:80"},
    		{"localhost", "80", "http://localhost:80"},
    	}
    
    	for i, testCase := range testCases {
    		globalMinioHost, globalMinioPort = testCase.host, testCase.port
    		apiEndpoints := getAPIEndpoints()
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 19 08:43:09 GMT 2024
    - 9.3K bytes
    - Viewed (0)
  3. cmd/endpoint_test.go

    	case3Endpoint1 := "http://" + nonLoopBackIP + "/d1"
    	args = []string{
    		"http://" + nonLoopBackIP + ":80/d1",
    		"http://example.org:9000/d2",
    		"http://example.com:80/d3",
    		"http://example.net:80/d4",
    	}
    	case3URLs, case3LocalFlags := getExpectedEndpoints(args, "http://"+nonLoopBackIP+":80/")
    
    	case4Endpoint1 := "http://" + nonLoopBackIP + "/d1"
    	args = []string{
    		"http://" + nonLoopBackIP + ":9000/d1",
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Jan 13 07:53:03 GMT 2024
    - 18.9K bytes
    - Viewed (1)
  4. internal/etag/etag_test.go

    	{String: "ceb8853ddc5086cc4ab9e149f8f09c88-1", ETag: ETag{206, 184, 133, 61, 220, 80, 134, 204, 74, 185, 225, 73, 248, 240, 156, 136, 45, 49}},   // 3
    	{String: `"ceb8853ddc5086cc4ab9e149f8f09c88-2"`, ETag: ETag{206, 184, 133, 61, 220, 80, 134, 204, 74, 185, 225, 73, 248, 240, 156, 136, 45, 50}}, // 4
    	{ // 5
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Sep 18 17:00:54 GMT 2023
    - 12.6K bytes
    - Viewed (0)
  5. cmd/server-startup-msg.go

    	h, _, err := net.SplitHostPort(host)
    	if err != nil {
    		h = host
    	}
    	ip := net.ParseIP(h)
    	return ip.To16() != nil && ip.To4() == nil
    }
    
    // strip api endpoints list with standard ports such as
    // port "80" and "443" before displaying on the startup
    // banner.  Returns a new list of API endpoints.
    func stripStandardPorts(apiEndpoints []string, host string) (newAPIEndpoints []string) {
    	if len(apiEndpoints) == 1 {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Mar 09 03:07:08 GMT 2024
    - 6.8K bytes
    - Viewed (0)
  6. cmd/server-startup-msg_test.go

    	}
    }
    
    // Tests stripping standard ports from apiEndpoints.
    func TestStripStandardPorts(t *testing.T) {
    	apiEndpoints := []string{"http://127.0.0.1:9000", "http://127.0.0.2:80", "https://127.0.0.3:443"}
    	expectedAPIEndpoints := []string{"http://127.0.0.1:9000", "http://127.0.0.2", "https://127.0.0.3"}
    	newAPIEndpoints := stripStandardPorts(apiEndpoints, "")
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Jun 20 00:53:08 GMT 2023
    - 4K bytes
    - Viewed (0)
  7. internal/handlers/forwarder.go

    	if req == nil {
    		return ""
    	}
    
    	if _, port, err := net.SplitHostPort(req.Host); err == nil && port != "" {
    		return port
    	}
    
    	if req.TLS != nil {
    		return "443"
    	}
    
    	return "80"
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Fri Apr 07 05:42:10 GMT 2023
    - 5.6K bytes
    - Viewed (0)
  8. internal/bucket/lifecycle/action_string.go

    const _Action_name = "NoneActionDeleteActionDeleteVersionActionTransitionActionTransitionVersionActionDeleteRestoredActionDeleteRestoredVersionActionDeleteAllVersionsActionActionCount"
    
    var _Action_index = [...]uint8{0, 10, 22, 41, 57, 80, 100, 127, 150, 161}
    
    func (i Action) String() string {
    	if i < 0 || i >= Action(len(_Action_index)-1) {
    		return "Action(" + strconv.FormatInt(int64(i), 10) + ")"
    	}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Jun 29 05:12:28 GMT 2023
    - 1018 bytes
    - Viewed (0)
  9. cmd/apierrorcode_string.go

    	_ = x[ErrMissingPart-75]
    	_ = x[ErrAuthorizationHeaderMalformed-76]
    	_ = x[ErrMalformedPOSTRequest-77]
    	_ = x[ErrPOSTFileRequired-78]
    	_ = x[ErrSignatureVersionNotSupported-79]
    	_ = x[ErrBucketNotEmpty-80]
    	_ = x[ErrAllAccessDisabled-81]
    	_ = x[ErrPolicyInvalidVersion-82]
    	_ = x[ErrMissingFields-83]
    	_ = x[ErrMissingCredTag-84]
    	_ = x[ErrCredMalformed-85]
    	_ = x[ErrInvalidRegion-86]
    	_ = x[ErrInvalidServiceS3-87]
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 21.2K bytes
    - Viewed (0)
  10. istioctl/pkg/validate/validate_test.go

          ports:
            -
              name: details
              port: 9080
      -
        apiVersion: v1
        kind: Service
        metadata:
          name: hello
        spec:
          ports:
            -
              port: 80
              protocol: TCP
    kind: List
    metadata:
      resourceVersion: ""`
    	udpService = `
    kind: Service
    metadata:
      name: hello
    spec:
      ports:
        -
          protocol: udp`
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Jul 25 08:08:36 GMT 2023
    - 21.5K bytes
    - Viewed (0)
Back to top