Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 470 for Backend (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. okhttp/src/main/kotlin/okhttp3/internal/concurrent/TaskRunner.kt

     */
    class TaskRunner(
      val backend: Backend,
      internal val logger: Logger = TaskRunner.logger,
    ) {
      val lock: ReentrantLock = ReentrantLock()
      val condition: Condition = lock.newCondition()
    
      private var nextQueueName = 10000
      private var coordinatorWaiting = false
      private var coordinatorWakeUpAt = 0L
    
      /**
       * When we need a new thread to run tasks, we call [Backend.execute]. A few microseconds later we
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. plugin/pkg/admission/imagepolicy/admission.go

    			}
    			annotations[api.ImagePolicyFailedOpenKey] = "true"
    			pod.ObjectMeta.SetAnnotations(annotations)
    
    			klog.V(2).Infof("resource allowed in spite of webhook backend failure")
    			return nil
    		}
    		klog.V(2).Infof("resource not allowed due to webhook backend failure ")
    		return admission.NewForbidden(attributes, err)
    	}
    	return nil
    }
    
    // Validate makes an admission decision based on the request attributes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 06:05:06 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/networking/v1/generated.proto

      optional string pathType = 3;
    
      // backend defines the referenced service endpoint to which the traffic
      // will be forwarded to.
      optional IngressBackend backend = 2;
    }
    
    // HTTPIngressRuleValue is a list of http selectors pointing to backends.
    // In the example: http://<host>/<path>?<searchpart> -> backend where
    // where parts of the url correspond to RFC 3986, this resource will be used
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  7. pkg/fieldpath/fieldpath_test.go

    		"Www.k8s.io/test":                                        "1",
    		"foo":                                                    "bar",
    		"flannel.alpha.coreos.com/backend-data":                  `{"VNI":1,"VtepMAC":"ce:f9:c7:a4:de:64"}`,
    		"flannel.alpha.coreos.com/backend-type":                  "vxlan",
    		"flannel.alpha.coreos.com/kube-subnet-manager":           "true",
    		"flannel.alpha.coreos.com/public-ip":                     "192.168.19.160",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 02 06:26:55 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCompilerFacility.kt

    import org.jetbrains.kotlin.fir.analysis.diagnostics.toFirDiagnostics
    import org.jetbrains.kotlin.fir.backend.*
    import org.jetbrains.kotlin.fir.backend.jvm.*
    import org.jetbrains.kotlin.fir.backend.utils.CodeFragmentConversionData
    import org.jetbrains.kotlin.fir.backend.utils.InjectedValue
    import org.jetbrains.kotlin.fir.backend.utils.conversionData
    import org.jetbrains.kotlin.fir.declarations.FirDeclaration
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 08:42:45 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  9. pkg/apis/networking/types.go

    	// or all traffic to the default backend, is left to the controller
    	// fulfilling the Ingress. Http is currently the only supported
    	// IngressRuleValue.
    	// +optional
    	IngressRuleValue
    }
    
    // IngressRuleValue represents a rule to apply against incoming requests. If the
    // rule is satisfied, the request is routed to the specified backend. Currently
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/networking/v1/types.go

    	// backend defines the referenced service endpoint to which the traffic
    	// will be forwarded to.
    	Backend IngressBackend `json:"backend" protobuf:"bytes,2,opt,name=backend"`
    }
    
    // IngressBackend describes all endpoints for a given service and port.
    type IngressBackend struct {
    	// service references a service as a backend.
    	// This is a mutually exclusive setting with "Resource".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
Back to top