Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,547 for app3 (0.15 sec)

  1. pilot/pkg/xds/rds_test.go

    	"istio.io/istio/pilot/test/xds"
    )
    
    func TestRDS(t *testing.T) {
    	tests := []struct {
    		name   string
    		node   string
    		routes []string
    	}{
    		{
    			"sidecar_new",
    			sidecarID(app3Ip, "app3"),
    			[]string{"80", "8080"},
    		},
    		{
    			"gateway_new",
    			gatewayID(gatewayIP),
    			[]string{"http.80", "https.443.https.my-gateway.testns"},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. pilot/pkg/xds/eds_sh_test.go

    		{
    			// Verify that EDS from network1 will return 1 local endpoint with local VIP + 2 remote
    			// endpoints weighted accordingly with the IP of the ingress gateway.
    			network:   "network1",
    			sidecarID: sidecarID("10.1.0.1", "app3"),
    			want: expectedResults{
    				weights: map[string]uint32{
    					// 1 local endpoint
    					"10.1.0.1": 2,
    
    					// 2 endopints on network 2, go through single gateway.
    					"159.122.219.2": 4,
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. pilot/pkg/xds/xds_test.go

    apiVersion: v1
    kind: Service
    metadata:
      labels:
        app: echo-app
      name: echo-app
      namespace: default
    spec:
      clusterIP: 1.2.3.4
      selector:
        app: echo-app
      ports:
      - name: grpc
        port: 7070
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        app: echo-app
      name: echo-app-%s
      namespace: default
    ---
    apiVersion: discovery.k8s.io/v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/apps.go

    	dsc, err := daemon.NewDaemonSetsController(
    		ctx,
    		controllerContext.InformerFactory.Apps().V1().DaemonSets(),
    		controllerContext.InformerFactory.Apps().V1().ControllerRevisions(),
    		controllerContext.InformerFactory.Core().V1().Pods(),
    		controllerContext.InformerFactory.Core().V1().Nodes(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. samples/websockets/app.yaml

    metadata:
      name: tornado
      labels:
        app: tornado
        service: tornado
    spec:
      ports:
      - port: 8888
        name: http
      selector:
        app: tornado
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: tornado
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: tornado
          version: v1
      template:
        metadata:
          labels:
            app: tornado
            version: v1
        spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 07 20:03:32 UTC 2020
    - 598 bytes
    - Viewed (0)
  6. samples/custom-bootstrap/example-app.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: helloworld-v1
      labels:
        app: helloworld
        version: v1
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: helloworld
          version: v1
      template:
        metadata:
          annotations:
            sidecar.istio.io/bootstrapOverride: "istio-custom-bootstrap-config"
          labels:
            app: helloworld
            version: v1
        spec:
          containers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 15 15:42:01 UTC 2020
    - 654 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/groovy/incrementalCompilation/kotlin/app/src/main/groovy/App.groovy

    class App {
       void app() {
           new Library().function()
       }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67 bytes
    - Viewed (0)
  8. samples/helloworld/src/app.py

    import os
    import math
    from flask import Flask, request
    app = Flask(__name__)
    
    
    @app.route('/hello')
    def hello():
        version = os.environ.get('SERVICE_VERSION')
    
        # do some cpu intensive computation
        x = 0.0001
        for i in range(0, 1000000):
            x = x + math.sqrt(x)
    
        return 'Hello version: %s, instance: %s\n' % (version, os.environ.get('HOSTNAME'))
    
    
    @app.route('/health')
    def health():
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 20 13:44:21 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/groovy/incrementalCompilation/groovy/app/src/main/groovy/App.groovy

    class App {
       void app() {
           new Library().function()
       }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67 bytes
    - Viewed (0)
  10. maven-core/src/test/projects/lifecycle-executor/project-with-additional-lifecycle-elements/src/main/java/org/apache/maven/lifecycle/test/App.java

    package org.apache.maven.lifecycle.test;
    
    /**
     * Hello world!
     *
     */
    public class App
    {
        public static void main( String[] args )
        {
            System.out.println( "Hello World!" );
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Nov 23 12:04:30 UTC 2014
    - 193 bytes
    - Viewed (0)
Back to top