Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 953 for Backend (0.14 sec)

  1. staging/src/k8s.io/apiserver/plugin/pkg/audit/webhook/webhook.go

    	}
    
    	w.ShouldRetry = retryOnError
    	return w, nil
    }
    
    type backend struct {
    	w    *webhook.GenericWebhook
    	name string
    }
    
    // NewDynamicBackend returns an audit backend configured from a REST client that
    // sends events over HTTP to an external service.
    func NewDynamicBackend(rc *rest.RESTClient, retryBackoff wait.Backoff) audit.Backend {
    	return &backend{
    		w: &webhook.GenericWebhook{
    			RestClient:   rc,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 21:13:31 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/concurrent/TaskRunnerRealBackendTest.kt

            isDaemon = true
            uncaughtExceptionHandler = loggingUncaughtExceptionHandler
          }
        }
    
      private val backend = TaskRunner.RealBackend(threadFactory)
      private val taskRunner = TaskRunner(backend)
      private val queue = taskRunner.newQueue()
    
      @AfterEach fun tearDown() {
        backend.shutdown()
      }
    
      @Test fun test() {
        val t1 = System.nanoTime() / 1e6
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/cors.md

    So, let's say you have a frontend running in your browser at `http://localhost:8080`, and its JavaScript is trying to communicate with a backend running at `http://localhost` (because we don't specify a port, the browser will assume the default port `80`).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Nov 13 20:28:37 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  4. 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)
  5. pkg/apis/networking/v1beta1/conversion_test.go

    	}{
    		"service-port-number": {
    			external: v1beta1.IngressSpec{
    				Backend: &v1beta1.IngressBackend{
    					ServiceName: "test-backend",
    					ServicePort: intstr.FromInt32(8080),
    				},
    			},
    			internal: networking.IngressSpec{
    				DefaultBackend: &networking.IngressBackend{
    					Service: &networking.IngressServiceBackend{
    						Name: "test-backend",
    						Port: networking.ServiceBackendPort{
    							Name:   "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. 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)
  7. istioctl/pkg/writer/envoy/configdump/testdata/routes/k8s-gateway-http-route-path-prefix/output.txt

    http.80     httpbin.example.com:80     httpbin.example.com     PathPrefix:/get        http-0-istio-autogenerated-k8s-gateway.default
                backend                    *                       /healthz/ready*        
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 404 bytes
    - Viewed (0)
  8. 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)
  9. istioctl/pkg/writer/envoy/configdump/testdata/routes/empty-gateway/output.txt

    NAME     VHOST NAME     DOMAINS     MATCH                  VIRTUAL SERVICE
             backend        *           /healthz/ready*        
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 190 bytes
    - Viewed (0)
  10. pkg/apis/networking/validation/validation_test.go

    			},
    		},
    		"path resource backend and service name are not allowed together": {
    			tweakIngress: func(ing *networking.Ingress) {
    				ing.Spec.Rules[0].IngressRuleValue = networking.IngressRuleValue{
    					HTTP: &networking.HTTPIngressRuleValue{
    						Paths: []networking.HTTPIngressPath{{
    							Path:     "/foo",
    							PathType: &pathTypeImplementationSpecific,
    							Backend: networking.IngressBackend{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
Back to top