Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 613 for Backend (0.1 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10CompilerFacility.kt

    import org.jetbrains.kotlin.backend.common.phaser.PhaseConfig
    import org.jetbrains.kotlin.backend.jvm.FacadeClassSourceShimForFragmentCompilation
    import org.jetbrains.kotlin.backend.jvm.JvmGeneratorExtensionsImpl
    import org.jetbrains.kotlin.backend.jvm.JvmIrCodegenFactory
    import org.jetbrains.kotlin.backend.jvm.jvmPhases
    import org.jetbrains.kotlin.codegen.KotlinCodegenFacade
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. src/net/http/httputil/reverseproxy_test.go

    	const backendResponse = "I am the backend"
    	const backendStatus = 200
    	var requestBody = bytes.Repeat([]byte("a"), 1<<20)
    	backend := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		slurp, err := io.ReadAll(r.Body)
    		if err != nil {
    			t.Errorf("Backend body read = %v", err)
    		}
    		if len(slurp) != len(requestBody) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/isolation.status.yaml.golden

      - conditions:
        - lastTransitionTime: fake
          message: Route was valid
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: backend(infra-backend-v1.gateway-conformance-infra.svc.domain.suffix)
            not found
          reason: BackendNotFound
          status: "False"
          type: ResolvedRefs
        controllerName: istio.io/gateway-controller
        parentRef:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 6.4K 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. staging/src/k8s.io/api/testdata/v1.30.0/networking.k8s.io.v1beta1.Ingress.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.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: Thu Apr 18 08:52:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apiserverinternal/v1alpha1/generated.proto

    // encodes objects to when persisting objects in the backend.
    message ServerStorageVersion {
      // The ID of the reporting API server.
      optional string apiServerID = 1;
    
      // The API server encodes the object to this version when persisting it in
      // the backend (e.g., etcd).
      optional string encodingVersion = 2;
    
      // The API server can decode objects encoded in these versions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. pkg/apis/apiserverinternal/types.go

    	// encode objects to when persisting objects in the backend.
    	Status StorageVersionStatus
    }
    
    // StorageVersionSpec is an empty spec.
    type StorageVersionSpec struct{}
    
    // StorageVersionStatus API server instances report the versions they can decode and the version they
    // encode objects to when persisting objects in the backend.
    type StorageVersionStatus struct {
    	// The reported versions per API server instance.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top