Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 298 for 8004 (0.1 sec)

  1. pkg/config/analysis/analyzers/testdata/gateway-no-port.yaml

    metadata:
      name: httpbin-gateway
    spec:
      selector:
        istio: ingressgateway
      servers:
      - port:
          number: 80
          name: http
          protocol: HTTP
        hosts:
        - "*"
      - port:
          number: 8004
          name: http2
          protocol: HTTP
        hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 347 bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/gateway-custom-ingressgateway-badport-notarget.yaml

    #
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: httpbin-gateway
    spec:
      selector:
        myapp: private-ingressgateway
      servers:
      - port:
          number: 8004
          name: http2
          protocol: HTTP
        hosts:
        - "*"
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        myapp: private-ingressgateway
      name: my-ingressgateway-1234
    spec:
      containers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 08:48:06 UTC 2024
    - 653 bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/nodeports/node_ports_test.go

    					HostPort:      8002,
    					Protocol:      v1.ProtocolTCP,
    				},
    				{
    					ContainerPort: 8003,
    					HostPort:      8003,
    					Protocol:      v1.ProtocolTCP,
    				},
    				{
    					ContainerPort: 8004,
    					HostPort:      8004,
    					Protocol:      v1.ProtocolTCP,
    				},
    				{
    					ContainerPort: 8011,
    					HostPort:      8011,
    					Protocol:      v1.ProtocolTCP,
    				},
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 11:02:11 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/gateway-custom-ingressgateway-badport.yaml

    #
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: httpbin-gateway
    spec:
      selector:
        myapp: private-ingressgateway
      servers:
      - port:
          number: 8004
          name: http2
          protocol: HTTP
        hosts:
        - "*"
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        myapp: private-ingressgateway
      name: my-ingressgateway-1234
    spec:
      containers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 08:48:06 UTC 2024
    - 674 bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultDependencyManagementImporter.java

                        if (present != null && !equals(dependency, present) && !directDependencies.contains(key)) {
                            // TODO: https://issues.apache.org/jira/browse/MNG-8004
                            problems.add(
                                    Severity.WARNING,
                                    Version.V40,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 06:13:27 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/composition/DefaultDependencyManagementImporter.java

                        if (present != null && !equals(dependency, present) && !directDependencies.contains(key)) {
                            // TODO: https://issues.apache.org/jira/browse/MNG-8004
                            problems.add(new ModelProblemCollectorRequest(
                                            ModelProblem.Severity.WARNING, ModelProblem.Version.V40)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 06:13:27 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. 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)
  8. architecture/standards/0004-use-a-platform-architecture.md

    # ADR-0004 - Use a platform-oriented architecture for Gradle
    
    ## Date
    
    2024-02-07
    
    ## Context
    
    The Gradle code base is essentially a large monolith, without strong internal boundaries.
    This has a number of negative effects on productivity, including:
    
    - Unclear ownership of code.
    - Difficult to focus on one particular area.
    - Unintended coupling between areas of the code, including tests.
    
    ## Decision
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 22:19:29 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top