Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 470 for Backend (0.23 sec)

  1. .space/CODEOWNERS

    /compiler/ir/backend.common/ "Kotlin JVM" "Kotlin Native" "Kotlin Wasm" "Kotlin Common Backend"
    /compiler/ir/backend.js/ "Kotlin Common Backend"
    /compiler/ir/backend.jvm/ "Kotlin JVM"
    /compiler/ir/backend.wasm/ "Kotlin Wasm"
    /compiler/ir/ir.actualization/ "Kotlin Compiler Core" "Kotlin Common Backend" Simon.Ogorodnik
    /compiler/ir/ir.interpreter/ "Kotlin Common Backend"
    /compiler/ir/ir.psi2ir/ "Kotlin JVM"
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:55:49 UTC 2024
    - 24K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/audit.go

    }
    
    type ignoreErrorsBackend struct {
    	audit.Backend
    }
    
    func (i *ignoreErrorsBackend) ProcessEvents(ev ...*auditinternal.Event) bool {
    	i.Backend.ProcessEvents(ev...)
    	return true
    }
    
    func (i *ignoreErrorsBackend) String() string {
    	return fmt.Sprintf("ignoreErrors<%s>", i.Backend)
    }
    
    func (o *AuditBatchOptions) wrapBackend(delegate audit.Backend) audit.Backend {
    	if o.Mode == ModeBlockingStrict {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 24 06:30:04 UTC 2022
    - 20.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_device.cc

        } else {
          // TODO(b/78468222): This can fail, at least when the backend is GPU and
          // there is no GPU on the host.
          xla::Backend* backend = GetOrCreateClient().value()->mutable_backend();
          xla_allocator_ = XlaDeviceAllocatorState::GetOrCreateXlaDeviceAllocator(
              backend, device_ordinal_);
        }
      }
      return xla_allocator_;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/ingress/conversion.go

    }
    
    func ingressBackendToHTTPRoute(backend *knetworking.IngressBackend, namespace string,
    	domainSuffix string, services kclient.Client[*corev1.Service],
    ) *networking.HTTPRoute {
    	if backend == nil {
    		return nil
    	}
    
    	port := &networking.PortSelector{}
    
    	if backend.Service == nil {
    		log.Infof("backend service must be specified")
    		return nil
    	}
    	if backend.Service.Port.Number > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 07:19:43 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/ingress/controller_test.go

    		ObjectMeta: metav1.ObjectMeta{
    			Namespace: "mock", // goes into backend full name
    			Name:      "test",
    		},
    		Spec: net.IngressSpec{
    			Rules: []net.IngressRule{
    				{
    					Host: "my.host.com",
    					IngressRuleValue: net.IngressRuleValue{
    						HTTP: &net.HTTPIngressRuleValue{
    							Paths: []net.HTTPIngressPath{
    								{
    									Path: "/test",
    									Backend: net.IngressBackend{
    										Service: &net.IngressServiceBackend{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 18:34:32 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/proxy/upgradeaware_test.go

    	for _, code := range []int{400, 500} {
    		t.Run(fmt.Sprintf("code=%v", code), func(t *testing.T) {
    			// Set up a backend server
    			backend := http.NewServeMux()
    			backend.Handle("/hello", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    				w.WriteHeader(code)
    				w.Write([]byte(`some data`))
    			}))
    			backend.Handle("/there", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    				t.Error("request to /there")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 39.4K bytes
    - Viewed (0)
  7. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top