Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,347 for TestAs (0.41 sec)

  1. pkg/kubelet/network/dns/dns_test.go

    			Name:        "test_pod",
    			Namespace:   "testNS",
    			Annotations: map[string]string{},
    		},
    	}
    
    	testCases := []struct {
    		desc         string
    		hostNames    []string
    		resultSearch []string
    		events       []string
    	}{
    		{
    			desc:         "valid: 3 search paths",
    			hostNames:    []string{"testNS.svc.TEST", "svc.TEST", "TEST"},
    			resultSearch: []string{"testNS.svc.TEST", "svc.TEST", "TEST"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  2. tests/testdata/config/rule-weighted-route.yaml

    kind: DestinationRule
    metadata:
      name: c-weighted
      namespace: testns
    spec:
      host: c-weighted.extsvc.com
      subsets:
        - name: v1
          labels:
            version: v1
        - name: v2
          labels:
            version: v2
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: c-weighted
      namespace: testns
    spec:
      hosts:
        - c-weighted.extsvc.com
      http:
        - route:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  3. tests/util/sanitycheck/sanity_check.go

    	var client, server echo.Instance
    	testNs := namespace.NewOrFail(t, ctx, namespace.Config{
    		Prefix:   "default",
    		Revision: revision,
    		Inject:   true,
    	})
    	deployment.New(ctx).
    		With(&client, echo.Config{
    			Service:   "client",
    			Namespace: testNs,
    			Ports:     []echo.Port{},
    		}).
    		With(&server, echo.Config{
    			Service:   "server",
    			Namespace: testNs,
    			Ports: []echo.Port{
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 26 21:20:56 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  4. docs/pt/docs/deployment/versions.md

    ## Atualizando as versões do FastAPI
    
    Você deve adicionar testes para a sua aplicação.
    
    Com **FastAPI** isso é muito fácil (graças a Starlette), verifique a documentação: [Testing](../tutorial/testing.md){.internal-link target=\_blank}
    
    Após a criação dos testes, você pode atualizar a sua versão do **FastAPI** para uma mais recente, execute os testes para se certificar de que todo o seu código está funcionando corretamente.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 29 20:14:40 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  5. tests/testdata/config/rule-default-route.yaml

    kind: ServiceEntry
    metadata:
      name: c
      namespace: testns
    spec:
       hosts:
       - c.foo
       ports:
       - number: 80
         name: http
         protocol: HTTP
       resolution: STATIC
       endpoints:
        - address: 127.0.0.1
          ports:
            http: 7072
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: default-route-1
      namespace: testns
    spec:
      hosts:
        - c.foo
      gateways:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 964 bytes
    - Viewed (0)
  6. docs/iam/policies/pbac-tests.sh

    Poorna <******@****.***> 1716056341 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. requirements-tests.txt

    -e .[all]
    -r requirements-docs-tests.txt
    pytest >=7.1.3,<8.0.0
    coverage[toml] >= 6.5.0,< 8.0
    mypy ==1.8.0
    ruff ==0.2.0
    dirty-equals ==0.6.0
    # TODO: once removing databases from tutorial, upgrade SQLAlchemy
    # probably when including SQLModel
    sqlalchemy >=1.3.18,<1.4.43
    databases[sqlite] >=0.3.2,<0.7.0
    flask >=1.1.2,<3.0.0
    anyio[trio] >=3.2.1,<4.0.0
    PyJWT==2.8.0
    pyyaml >=5.3.1,<7.0.0
    passlib[bcrypt] >=1.7.2,<2.0.0
    
    # types
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 468 bytes
    - Viewed (0)
  8. tests/testdata/config/destination-rule-ssl.yaml

    metadata:
      name: ssl-simple
      namespace: testns
    spec:
      host: ssl1.webinf.info
      trafficPolicy:
        loadBalancer:
          simple: LEAST_CONN
        tls:
          mode: SIMPLE
    ---
    # This will not work: myCA not found, results in rejecting all clusters if the
    # service exists.
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: drprefix
      namespace: testns
    spec:
      host: "random.webinf.info"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 598 bytes
    - Viewed (0)
  9. pilot/pkg/model/push_context_test.go

    					},
    				},
    			},
    		},
    	}
    
    	expectedns := []string{
    		"testns/super-high-priority", "testns/high-priority", "testns/default-priority", "testns/a-medium-priority",
    		"testns/b-medium-priority", "testns/b-low-priority", "testns/a-low-priority",
    	}
    
    	expectedns1 := []string{"testns-1/default-priority", "testns-1/a-medium-priority", "testns-1/b-medium-priority"}
    
    	for _, cfg := range envoyFilters {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  10. pilot/pkg/xds/rds_test.go

    // envoy.
    
    func sidecarID(ip, deployment string) string { // nolint: unparam
    	return fmt.Sprintf("sidecar~%s~%s-644fc65469-96dza.testns~testns.svc.cluster.local", ip, deployment)
    }
    
    func gatewayID(ip string) string { //nolint: unparam
    	return fmt.Sprintf("router~%s~istio-gateway-644fc65469-96dzt.istio-system~istio-system.svc.cluster.local", ip)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top