Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,066 for Backend (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/apiserver/plugin/pkg/audit/webhook/webhook_test.go

    		Duration: 500 * time.Millisecond,
    		Factor:   1.5,
    		Jitter:   0.2,
    		Steps:    5,
    	}
    	b, err := NewBackend(f.Name(), groupVersion, retryBackoff, nil)
    	require.NoError(t, err, "initializing backend")
    
    	return b.(*backend)
    }
    
    func TestWebhook(t *testing.T) {
    	versions := []schema.GroupVersion{auditv1.SchemeGroupVersion}
    	for _, version := range versions {
    		gotEvents := false
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 08 06:37:26 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  7. 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)
  8. pkg/kube/inject/testdata/inject/hello-host-network-with-ns.yaml.injected

      namespace: sample
    spec:
      replicas: 7
      selector:
        matchLabels:
          app: hello-host-network
          tier: backend
          track: stable
      strategy: {}
      template:
        metadata:
          creationTimestamp: null
          labels:
            app: hello-host-network
            tier: backend
            track: stable
        spec:
          containers:
          - image: fake.docker.io/google-samples/hello-go-gke:1.0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 14 17:26:47 UTC 2021
    - 648 bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.29.0/networking.k8s.io.v1beta1.Ingress.yaml

      selfLink: selfLinkValue
      uid: uidValue
    spec:
      backend:
        resource:
          apiGroup: apiGroupValue
          kind: kindValue
          name: nameValue
        serviceName: serviceNameValue
        servicePort: servicePortValue
      ingressClassName: ingressClassNameValue
      rules:
      - host: hostValue
        http:
          paths:
          - backend:
              resource:
                apiGroup: apiGroupValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/networking/v1beta1/types_swagger_doc_generated.go

    	"backend":          "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.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 14.3K bytes
    - Viewed (0)
Back to top