Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 949 for Backend (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. cmd/benchmark-utils_test.go

    	if err != nil {
    		b.Fatalf("Failed obtaining Temp Backend: <ERROR> %s", err)
    	}
    	// cleaning up the backend by removing all the directories and files created on function return.
    	defer removeRoots(disks)
    
    	// uses *testing.B and the object Layer to run the benchmark.
    	runPutObjectPartBenchmark(b, objLayer, objSize)
    }
    
    // creates Erasure/FS backend setup, obtains the object layer and calls the runPutObjectBenchmark function.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Dec 23 15:46:00 UTC 2022
    - 8.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/networking/v1beta1/generated.proto

      // +optional
      optional string ingressClassName = 4;
    
      // backend is the default backend capable of servicing requests that don't match any
      // rule. At least one of 'backend' or 'rules' must be specified. This field
      // is optional to allow the loadbalancer controller or defaulting logic to
      // specify a global default.
      // +optional
      optional IngressBackend backend = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/networking/v1beta1/types.go

    	// backend is the default backend capable of servicing requests that don't match any
    	// rule. At least one of 'backend' or 'rules' must be specified. This field
    	// is optional to allow the loadbalancer controller or defaulting logic to
    	// specify a global default.
    	// +optional
    	Backend *IngressBackend `json:"backend,omitempty" protobuf:"bytes,1,opt,name=backend"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:30 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/ingress/conversion_test.go

    			Namespace: "mock", // goes into backend full name
    		},
    		Spec: knetworking.IngressSpec{
    			Rules: []knetworking.IngressRule{
    				{
    					Host: "my.host.com",
    					IngressRuleValue: knetworking.IngressRuleValue{
    						HTTP: &knetworking.HTTPIngressRuleValue{
    							Paths: []knetworking.HTTPIngressPath{
    								{
    									Path: "/test",
    									Backend: knetworking.IngressBackend{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 19 18:20:34 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/proxy/upgradeaware.go

    	WrapTransport bool
    	// UseRequestLocation will use the incoming request URL when talking to the backend server.
    	UseRequestLocation bool
    	// UseLocationHost overrides the HTTP host header in requests to the backend server to use the Host from Location.
    	// This will override the req.Host field of a request, while UseRequestLocation will override the req.URL field
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  10. pilot/pkg/model/kstatus/helper_test.go

    	statusChanged := metav1.Condition{
    		Type:               string(k8s.RouteConditionResolvedRefs),
    		Reason:             string(k8s.RouteReasonResolvedRefs),
    		Status:             StatusFalse,
    		Message:            "invalid backend",
    		LastTransitionTime: transitionTime,
    	}
    	messageChanged := metav1.Condition{
    		Type:               string(k8s.RouteConditionResolvedRefs),
    		Reason:             string(k8s.RouteReasonResolvedRefs),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 18:11:40 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top