Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 339 for Backend (0.21 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 (2)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  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. 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)
Back to top