Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 608 for seni (0.09 sec)

  1. docs/de/docs/tutorial/path-params.md

    Indem Sie von `str` erben, weiß die API Dokumentation, dass die Werte des Enums vom Typ `str` sein müssen, und wird in der Lage sein, korrekt zu rendern.
    
    Erstellen Sie dann Klassen-Attribute mit festgelegten Werten, welches die erlaubten Werte sein werden:
    
    ```Python hl_lines="1  6-9"
    {!../../../docs_src/path_params/tutorial005.py!}
    ```
    
    !!! info
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:28:59 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. src/runtime/select.go

    	if raceenabled {
    		raceacquire(c.raceaddr())
    	}
    	goto retc
    
    send:
    	// can send to a sleeping receiver (sg)
    	if raceenabled {
    		raceReadObjectPC(c.elemtype, cas.elem, casePC(casi), chansendpc)
    	}
    	if msanenabled {
    		msanread(cas.elem, c.elemtype.Size_)
    	}
    	if asanenabled {
    		asanread(cas.elem, c.elemtype.Size_)
    	}
    	send(c, sg, cas.elem, func() { selunlock(scases, lockorder) }, 2)
    	if debugSelect {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 13 21:36:04 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. src/net/http/httputil/reverseproxy.go

    	}
    }
    
    // Hop-by-hop headers. These are removed when sent to the backend.
    // As of RFC 7230, hop-by-hop headers are required to appear in the
    // Connection header field. These are the headers defined by the
    // obsoleted RFC 2616 (section 13.5.1) and are used for backward
    // compatibility.
    var hopHeaders = []string{
    	"Connection",
    	"Proxy-Connection", // non-standard but still sent by libcurl and rejected by e.g. google
    	"Keep-Alive",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 23:37:42 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  4. pilot/pkg/xds/discovery.go

    	Generators map[string]model.XdsResourceGenerator
    
    	// ProxyNeedsPush is a function that determines whether a push can be completely skipped. Individual generators
    	// may also choose to not send any updates.
    	ProxyNeedsPush func(proxy *model.Proxy, req *model.PushRequest) bool
    
    	// concurrentPushLimit is a semaphore that limits the amount of concurrent XDS pushes.
    	concurrentPushLimit chan struct{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. pilot/pkg/xds/delta_test.go

    	})
    
    	// Now send initial CDS request
    	res = ads.RequestResponseAck(&discovery.DeltaDiscoveryRequest{
    		TypeUrl: v3.ClusterType,
    		InitialResourceVersions: map[string]string{
    			// This time we include the version map, since it is a reconnect
    			staticCluster: "",
    			updateCluster: "",
    		},
    	})
    
    	// Expect that we send an EDS response even though there was no request
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtranslator_test.go

    		return
    	}
    	// Check the random data sent on STDIN was the same returned on STDOUT.
    	if !bytes.Equal(stdoutBytes, randomData) {
    		t.Errorf("unexpected data received: %d sent: %d", len(stdoutBytes), len(randomData))
    	}
    	stderrBytes, err := io.ReadAll(bytes.NewReader(stderr.Bytes()))
    	if err != nil {
    		t.Errorf("error reading the stream: %v", err)
    		return
    	}
    	// Check the random data sent on STDIN was the same returned on STDERR.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 23:21:55 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  7. pilot/pkg/xds/workload_test.go

    		createService(s, "svc1", "default", map[string]string{"app": "sa"})
    		expect(ads.ExpectResponse(), "Kubernetes//Pod/default/pod2")
    		// Creating a pod in the service should send an update as usual
    		createPod(s, "pod", "sa", "127.0.0.1", "node")
    		expect(ads.ExpectResponse(), "Kubernetes//Pod/default/pod")
    
    		// Make service not select workload should also update things
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  8. docs/en/docs/deployment/https.md

    ### HTTP Response
    
    The application would process the request and send a **plain (unencrypted) HTTP response** to the TLS Termination Proxy.
    
    <img src="/img/deployment/https/https06.svg">
    
    ### HTTPS Response
    
    The TLS Termination Proxy would then **encrypt the response** using the cryptography agreed before (that started with the certificate for `someapp.example.com`), and send it back to the browser.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. docs/zh/docs/tutorial/dependencies/dependencies-with-yield.md

            dep -->> handler: Auto forward exception
        end
        operation ->> client: Return response to client
        Note over client,operation: Response is already sent, can't change it anymore
        opt Tasks
            operation -->> tasks: Send background tasks
        end
        opt Raise other exception
            tasks -->> dep: Raise other exception
        end
        Note over dep: After yield
        opt Handle other exception
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/audit/types.go

    	// It's not guaranteed Audit-Id http header is sent for all requests. When kube-apiserver didn't
    	// audit the events according to the audit policy, no Audit-ID is returned. Also, for request to
    	// pods/exec, pods/attach, pods/proxy, kube-apiserver works like a proxy and redirect the request
    	// to kubelet node, users will only get http headers sent from kubelet node, so no Audit-ID is
    	// sent when users run command like "kubectl exec" or "kubectl attach".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 09:18:23 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top