Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 156 for 8082 (0.03 sec)

  1. cluster/addons/cluster-loadbalancing/glbc/default-svc-controller.yaml

            livenessProbe:
              httpGet:
                path: /healthz
                port: 8080
                scheme: HTTP
              initialDelaySeconds: 30
              timeoutSeconds: 5
            ports:
            - containerPort: 8080
            resources:
              limits:
                cpu: 10m
                memory: 20Mi
              requests:
                cpu: 10m
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  2. tests/testdata/config/rule-fault-injection.yaml

      namespace: testns
    spec:
       hosts:
       - fault.test.istio.io
       ports:
       - number: 8080
         name: http
         protocol: HTTP
       resolution: STATIC
       endpoints:
        - address: 127.0.0.2
          ports:
            http: 8080
          labels:
            version: v1
        - address: 127.0.0.3
          ports:
            http: 8081
          labels:
            version: v2
    ---
    apiVersion: networking.istio.io/v1alpha3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 28 21:38:06 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  3. src/runtime/metrics/description_test.go

    func formatDesc(t *testing.T) string {
    	var b strings.Builder
    	for i, d := range metrics.All() {
    		if i > 0 {
    			fmt.Fprintf(&b, "\n")
    		}
    		fmt.Fprintf(&b, "%s\n", d.Name)
    		fmt.Fprintf(&b, "%s", wrap("\t", d.Description, 80-2*8))
    	}
    	return b.String()
    }
    
    var generate = flag.Bool("generate", false, "update doc.go for go generate")
    
    func TestDocs(t *testing.T) {
    	want := formatDesc(t)
    
    	src, err := os.ReadFile("doc.go")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 20 22:54:22 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. operator/pkg/translate/strategic_port_merge_test.go

    	}
    	httpPort = &v1.ServicePort{
    		Name:       "http-port",
    		Protocol:   v1.ProtocolTCP,
    		Port:       80,
    		TargetPort: intstr.IntOrString{IntVal: 8080},
    	}
    	httpNoProtoPort = &v1.ServicePort{
    		Name:       "http-port",
    		Port:       80,
    		TargetPort: intstr.IntOrString{IntVal: 8080},
    	}
    	mysqlPort = &v1.ServicePort{
    		Name:     "mysql-port",
    		Protocol: v1.ProtocolTCP,
    		Port:     3306,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 21 03:06:37 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/relative-envoy-filter-operation.yaml

      configPatches:
        # The first patch adds the Lua filter to the listener/http connection manager
      - applyTo: HTTP_FILTER
        match:
          context: SIDECAR_INBOUND
          listener:
            portNumber: 8080
            filterChain:
              filter:
                name: "envoy.filters.network.http_connection_manager"
                subFilter:
                  name: "envoy.filters.http.router"
        patch:
          operation: INSERT_BEFORE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  6. src/crypto/ed25519/ed25519.go

    // https://ed25519.cr.yp.to/.
    //
    // These functions are also compatible with the โ€œEd25519โ€ function defined in
    // RFC 8032. However, unlike RFC 8032's formulation, this package's private key
    // representation includes a public key suffix to make multiple signing
    // operations with the same key more efficient. This package refers to the RFC
    // 8032 private key as the โ€œseedโ€.
    //
    // Operations involving private keys are implemented using constant-time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/serviceentry/conversion_test.go

    					map[string]int{"http-port": 80, "http-alt-port": 8080}, true, model.ClientSideLB),
    			},
    		},
    		{
    			// service entry DNS with no endpoints
    			externalSvc: httpDNSnoEndpoints,
    			services: []*model.Service{
    				makeService("google.com", "httpDNSnoEndpoints", constants.UnspecifiedIP,
    					map[string]int{"http-port": 80, "http-alt-port": 8080}, true, model.DNSLB, "google.com"),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 39K bytes
    - Viewed (0)
  8. tests/integration/security/mtls_healthcheck_test.go

    	var healthcheck echo.Instance
    	cfg := echo.Config{
    		Namespace: ns,
    		Service:   name,
    		Ports: []echo.Port{{
    			Name:         "http-8080",
    			Protocol:     protocol.HTTP,
    			ServicePort:  8080,
    			WorkloadPort: 8080,
    		}},
    		Subsets: []echo.SubsetConfig{
    			{
    				Annotations: map[string]string{annotation.SidecarRewriteAppHTTPProbers.Name: strconv.FormatBool(rewrite)},
    			},
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. docs/iam/access-manager-plugin.go

    }
    
    func main() {
    	flag.Parse()
    	serveFunc := func() error {
    		return http.ListenAndServe(":8080", nil)
    	}
    
    	if certFile != "" || keyFile != "" {
    		if certFile == "" || keyFile == "" {
    			log.Fatal("Please provide both a key file and a cert file to enable TLS.")
    		}
    		serveFunc = func() error {
    			return http.ListenAndServeTLS(":8080", certFile, keyFile, nil)
    		}
    	}
    
    	http.HandleFunc("/", mainHandler)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 08 17:15:20 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. docs/em/docs/tutorial/cors.md

    * `http://localhost`
    * `https://localhost`
    * `http://localhost:8080`
    
    ๐Ÿšฅ ๐Ÿ‘ซ ๐ŸŒ `localhost`, ๐Ÿ‘ซ โš™๏ธ ๐ŸŽ ๐Ÿ› ๏ธ โš–๏ธ โ›ด,, ๐Ÿ‘ซ ๐ŸŽ "๐Ÿ‡จ๐Ÿ‡ณ".
    
    ## ๐Ÿ”
    
    , โžก๏ธ ๐Ÿ’ฌ ๐Ÿ‘† โœ”๏ธ ๐Ÿ•ธ ๐Ÿƒ ๐Ÿ‘† ๐Ÿ–ฅ `http://localhost:8080`, & ๐Ÿšฎ ๐Ÿ•ธ ๐Ÿ”„ ๐Ÿ”— โฎ๏ธ ๐Ÿ‘ฉโ€๐Ÿ’ป ๐Ÿƒ `http://localhost` (โ†ฉ๏ธ ๐Ÿ‘ฅ ๐Ÿšซ โœ” โ›ด, ๐Ÿ–ฅ ๐Ÿ”œ ๐Ÿค” ๐Ÿ”ข โ›ด `80`).
    
    โคด๏ธ, ๐Ÿ–ฅ ๐Ÿ”œ ๐Ÿ“จ ๐Ÿ‡บ๐Ÿ‡ธ๐Ÿ” `OPTIONS` ๐Ÿ“จ ๐Ÿ‘ฉโ€๐Ÿ’ป, & ๐Ÿšฅ ๐Ÿ‘ฉโ€๐Ÿ’ป ๐Ÿ“จ โ˜‘ ๐ŸŽš โœ” ๐Ÿ“ป โšช๏ธโžก๏ธ ๐Ÿ‘‰ ๐ŸŽ ๐Ÿ‡จ๐Ÿ‡ณ (`http://localhost:8080`) โคด๏ธ ๐Ÿ–ฅ ๐Ÿ”œ โžก๏ธ ๐Ÿ•ธ ๐Ÿ•ธ ๐Ÿ“จ ๐Ÿšฎ ๐Ÿ“จ ๐Ÿ‘ฉโ€๐Ÿ’ป.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Apr 01 09:26:04 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top