Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 273 for Backend (0.43 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. 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. 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)
  4. 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)
  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. 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)
  7. 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)
  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. 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)
  10. pkg/apis/networking/validation/validation.go

    	}
    	allErrs = append(allErrs, validateIngressBackend(&path.Backend, fldPath.Child("backend"), opts)...)
    	return allErrs
    }
    
    // validateIngressBackend tests if a given backend is valid.
    func validateIngressBackend(backend *networking.IngressBackend, fldPath *field.Path, opts IngressValidationOptions) field.ErrorList {
    	allErrs := field.ErrorList{}
    
    	hasResourceBackend := backend.Resource != nil
    	hasServiceBackend := backend.Service != nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 07 14:48:01 UTC 2024
    - 31.5K bytes
    - Viewed (0)
Back to top