Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 246 for 8002 (0.03 sec)

  1. pkg/config/analysis/analyzers/testdata/gateway-custom-ingressgateway-svcselector.yaml

    kind: Service
    metadata:
      name: my-8002
    spec:
      ports:
      - name: http2
        nodePort: 31380
        port: 8002
        protocol: TCP
        targetPort: 80
      selector:
        myapp: ingressgateway-8002
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: my-8001
    spec:
      ports:
      - name: http2
        port: 8001
        protocol: TCP
      selector:
        myapp: ingressgateway-8001
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/nodeports/node_ports_test.go

    				{
    					ContainerPort: 8001,
    					HostPort:      8001,
    					Protocol:      v1.ProtocolTCP,
    				},
    				{
    					ContainerPort: 8002,
    					HostPort:      8002,
    					Protocol:      v1.ProtocolTCP,
    				},
    				{
    					ContainerPort: 8003,
    					HostPort:      8003,
    					Protocol:      v1.ProtocolTCP,
    				},
    				{
    					ContainerPort: 8004,
    					HostPort:      8004,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 11:02:11 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  3. src/encoding/binary/example_test.go

    	for _, x := range []uint64{1, 2, 127, 128, 255, 256} {
    		n := binary.PutUvarint(buf, x)
    		fmt.Printf("%x\n", buf[:n])
    	}
    	// Output:
    	// 01
    	// 02
    	// 7f
    	// 8001
    	// ff01
    	// 8002
    }
    
    func ExamplePutVarint() {
    	buf := make([]byte, binary.MaxVarintLen64)
    
    	for _, x := range []int64{-65, -64, -2, -1, 0, 1, 2, 63, 64} {
    		n := binary.PutVarint(buf, x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/model/model_test.go

    - source:
        requestPrincipals: ["td-1/ns/foo/sa/sleep-3"]
        notRequestPrincipals: ["td-1/ns/foo/sa/sleep-4"]
    to:
    - operation:
        ports: ["8001"]
        notPorts: ["8002"]
    - operation:
        ports: ["8003"]
        notPorts: ["8004"]
    when:
    - key: "source.principal"
      values: ["td-1/ns/foo/sa/httpbin-1"]
      notValues: ["td-1/ns/foo/sa/httpbin-2"]
    - key: "destination.ip"
      values: ["10.0.0.1"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 22:15:12 UTC 2023
    - 10K bytes
    - Viewed (0)
  5. src/crypto/tls/testdata/Server-TLSv13-ClientAuthRequestedNotGiven

    00000350  ac a8 82 3d f5 ef 17 03  03 00 99 7e 30 4f f1 00  |...=.......~0O..|
    00000360  1e dd eb c6 54 d2 f5 f7  21 aa 6b b0 83 0c fa 8b  |....T...!.k.....|
    00000370  12 af ac 15 3e 54 b6 1c  85 9b 0c 80 02 d8 e3 5f  |....>T........._|
    00000380  36 57 64 fe 7a b8 31 d0  aa 59 f1 e6 af e0 27 c5  |6Wd.z.1..Y....'.|
    00000390  b8 d8 2f ab e0 cc c3 02  18 73 30 36 b5 2a 0d 12  |../......s06.*..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509_test.go

    	                       c3:91:17:30:5d:7b:c4:12:2b:a9:a9:48:ca:a3:14:
    	                       3a:36:ad:23:58:cf:88:b9:30:9a:b4:e6:8a:35:a1:
    	                       ce:80:02:4a:aa:24:2b:7b:79
    	                   Exponent: 65537 (0x10001)
    	           X509v3 extensions:
    	               X509v3 Subject Key Identifier:
    	                   56:A5:55:02:8C:97:FD:1E:A0:B8:DE:EF:5E:95:F0:AC:A6:23:6F:16
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 23:23:03 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  7. architecture/standards/0002-avoid-using-java-serialization.md

    # ADR-0002 - Avoid using Java serialization
    
    ## Date
    
    2012-12-01
    
    ## Context
    
    In Gradle we often need to serialize in-memory objects for caching, or to transmit them across process barriers, etc.
    Java serialization is one way to implement this, however, despite its simplicity of implementation, it has several drawbacks:
    
    - **Performance:**
    Java's built-in serialization mechanism is often slower compared to other serialization solutions.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 22:32:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/audit_test.go

    			func(server string) (*http.Request, error) {
    				return http.NewRequest("GET", server+"/"+prefix+"/"+testGroupVersion.Group+"/"+testGroupVersion.Version+"/namespaces/other/simple/c", bytes.NewBuffer(simpleFooJSON))
    			},
    			200,
    			2,
    			[]eventCheck{
    				noRequestBody(1),
    				responseBodyMatches(1, `{.*"name":"c".*}`),
    				expectedStages(auditinternal.StageRequestReceived, auditinternal.StageResponseComplete),
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 23:04:34 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/peer_authentication_simulation_test.go

    			config: paDisableWithStrictOnPort9000 + sePort8000,
    			calls: []simulation.Expect{
    				{
    					Name:   "plaintext on port 8000",
    					Call:   mkCall(8000, simulation.Plaintext),
    					Result: simulation.Result{ClusterMatched: "inbound|8000||"},
    				},
    				{
    					Name: "mtls on port 8000",
    					Call: mkCall(8000, simulation.MTLS),
    					// This will send an mTLS request to plaintext HTTP port, which is expected to fail
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  10. istioctl/pkg/proxyconfig/testdata/config_dump_summary.txt

    cluster/agent                                                       cluster/agent                         -        -          -               STATIC     
    cluster/inbound-vip|8000|http|httpbin.default.svc.cluster.local     httpbin.default.svc.cluster.local     8000     http       inbound-vip     EDS        
    cluster/prometheus_stats                                            cluster/prometheus_stats              -        -          -               STATIC     
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 23:08:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top