Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,134 for app3 (0.1 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. 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)
  6. 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)
  7. 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)
  8. maven-embedder/src/examples/simple-project/src/main/java/org/apache/maven/embedder/App.java

    package org.apache.maven.embedder;
    
    /**
     * 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: Tue Nov 22 13:26:01 UTC 2022
    - 187 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/kotlinDsl/multiProjectBuild/kotlin/http/src/main/java/example/App.java

    package example;
    
    import ratpack.server.RatpackServer;
    
    public class App {
    
        public static void main(String[] args) throws Exception {
            RatpackServer.start(server -> server
                .handlers(chain -> chain
                    .get(ctx -> ctx.render("Hello World!"))
                    .get(":name", ctx -> ctx.render("Hello " + ctx.getPathTokens().get("name") + "!"))
                )
            );
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 408 bytes
    - Viewed (0)
  10. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/kotlinapplication/App.kt.template

    ${fileComment.multilineComment}${packageDecl.statement}
    class App {
        val greeting: String
            get() {
                return "Hello World!"
            }
    }
    
    fun main() {
        println(App().greeting)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 199 bytes
    - Viewed (0)
Back to top