Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,066 for Backend (0.12 sec)

  1. istioctl/pkg/writer/envoy/configdump/testdata/routes/k8s-gateway-http-route-path-prefix/output.txt

    http.80     httpbin.example.com:80     httpbin.example.com     PathPrefix:/get        http-0-istio-autogenerated-k8s-gateway.default
                backend                    *                       /healthz/ready*        
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 404 bytes
    - Viewed (0)
  2. src/net/http/httputil/reverseproxy_test.go

    	const backendResponse = "I am the backend"
    	const backendStatus = 200
    	var requestBody = bytes.Repeat([]byte("a"), 1<<20)
    	backend := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		slurp, err := io.ReadAll(r.Body)
    		if err != nil {
    			t.Errorf("Backend body read = %v", err)
    		}
    		if len(slurp) != len(requestBody) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/envoy/configdump/testdata/routes/empty-gateway/output.txt

    NAME     VHOST NAME     DOMAINS     MATCH                  VIRTUAL SERVICE
             backend        *           /healthz/ready*        
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 190 bytes
    - Viewed (0)
  4. pkg/apis/networking/validation/validation_test.go

    			},
    		},
    		"path resource backend and service name are not allowed together": {
    			tweakIngress: func(ing *networking.Ingress) {
    				ing.Spec.Rules[0].IngressRuleValue = networking.IngressRuleValue{
    					HTTP: &networking.HTTPIngressRuleValue{
    						Paths: []networking.HTTPIngressPath{{
    							Path:     "/foo",
    							PathType: &pathTypeImplementationSpecific,
    							Backend: networking.IngressBackend{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/artifacts/redis-master-controller.yaml

    apiVersion: v1
    kind: ReplicationController
    metadata:
      name: redis-master
      labels:
        app: redis
        role: master
        tier: backend
    spec:
      replicas: 1
      template:
        metadata:
          labels:
            app: redis
            role: master
            tier: backend
        spec:
          containers:
          - name: master
            image: registry.k8s.io/redis:e2e  # or just image: redis
            resources:
              requests:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 502 bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/ingress/testdata/overlay.yaml

          http:
            paths:
              - backend:
                  service:
                    name: service1
                    port:
                      number: 4200
    ---
    apiVersion: networking.k8s.io/v1
    kind: Ingress
    metadata:
      name: foo2
      namespace: ns
    spec:
      rules:
        - host: foohost.bar.com
          http:
            paths:
              - path: /second
                backend:
                  service:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 10 16:43:09 UTC 2023
    - 596 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/storage/storage_factory.go

    			tlsConfig.InsecureSkipVerify = false
    		}
    	}
    
    	backends := []Backend{}
    	for server := range servers {
    		backends = append(backends, Backend{
    			Server: server,
    			// We can't share TLSConfig across different backends to avoid races.
    			// For more details see: https://pr.k8s.io/59338
    			TLSConfig: tlsConfig.Clone(),
    		})
    	}
    	return backends
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 13:35:58 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  8. cmd/notification-summary.go

    	for _, disk := range diskInfo {
    		// Ignore invalid.
    		if disk.PoolIndex < 0 || len(s.Backend.StandardSCData) <= disk.PoolIndex {
    			// https://github.com/minio/minio/issues/16500
    			continue
    		}
    		// Ignore parity disks
    		if disk.DiskIndex < s.Backend.StandardSCData[disk.PoolIndex] {
    			capacity += disk.TotalSpace
    		}
    	}
    	return
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 20 00:53:08 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/testdata/isolation.status.yaml.golden

      - conditions:
        - lastTransitionTime: fake
          message: Route was valid
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: backend(infra-backend-v1.gateway-conformance-infra.svc.domain.suffix)
            not found
          reason: BackendNotFound
          status: "False"
          type: ResolvedRefs
        controllerName: istio.io/gateway-controller
        parentRef:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inject/tcp-probes.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: hello
    spec:
      replicas: 7
      selector:
        matchLabels:
          app: hello
          tier: backend
          track: stable
      template:
        metadata:
          labels:
            app: hello
            tier: backend
            track: stable
        spec:
          containers:
            - name: hello
              image: "fake.docker.io/google-samples/hello-go-gke:1.0"
              ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 26 08:44:57 UTC 2021
    - 607 bytes
    - Viewed (0)
Back to top