Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 589 for seni (5.32 sec)

  1. 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)
  2. fastapi/security/http.py

        The HTTP authorization header value is split by the first space.
    
        The first part is the `scheme`, the second part is the `credentials`.
    
        For example, in an HTTP Bearer token scheme, the client will send a header
        like:
    
        ```
        Authorization: Bearer deadbeef12346
        ```
    
        In this case:
    
        * `scheme` will have the value `"Bearer"`
        * `credentials` will have the value `"deadbeef12346"`
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Apr 19 15:29:38 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  3. internal/grid/connection.go

    var ErrDone = errors.New("done for now")
    
    var ErrRemoteRestart = errors.New("remote restarted")
    
    
    // Stateless connects to the remote handler and return all packets sent back.
    // If the remote is restarted will return ErrRemoteRestart.
    // If nil will be returned remote call sent EOF or ErrDone is returned by the callback.
    // If ErrDone is returned on cb nil will be returned.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_device_ops.td

      let assemblyFormat = [{
          $host $callee `(` $callee_args `)` attr-dict `:` functional-type ( $callee_args , $results )
      }];
    }
    
    def TfDevice_SendOp : TfDevice_Op<"send", []> {
      let summary = "Send a value to a host.";
    
      let description = [{
        Send the value to the given host with the given rendezvous key.
      }];
    
      let arguments = (ins
        AnyType:$value,
        StrAttr:$key,
        StrAttr:$dst_host
      );
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/admissionregistration/v1/generated.proto

    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/admissionregistration/v1";
    
    // MatchCondition represents a condition which must by fulfilled for a request to be sent to a webhook.
    message MatchCondition {
      // Name is an identifier for this match condition, used for strategic merging of MatchConditions,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/printer.go

    	for i := len(p.pending) - 1; i >= 0; i-- {
    		switch p.pending[i].kind {
    		case semi:
    			k := semi
    			if sawParen {
    				sawParen = false
    				k = none // eliminate semi
    			} else if sawNewline && impliesSemi(p.pending[i].last) {
    				sawNewline = false
    				k = none // eliminate semi
    			}
    			p.pending[i].kind = k
    		case newline:
    			sawNewline = true
    		case blank, indent, outdent:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 07:17:27 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  7. src/os/signal/doc.go

    loses its controlling terminal. The SIGINT signal is sent when the
    user at the controlling terminal presses the interrupt character,
    which by default is ^C (Control-C). The SIGQUIT signal is sent when
    the user at the controlling terminal presses the quit character, which
    by default is ^\ (Control-Backslash). In general you can cause a
    program to simply exit by pressing ^C, and you can cause it to exit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. docs/de/docs/tutorial/response-model.md

    Diese Felder werden also in der JSON-Response enthalten sein.
    
    !!! tip "Tipp"
        Beachten Sie, dass Defaultwerte alles Mögliche sein können, nicht nur `None`.
    
        Sie können eine Liste (`[]`), ein `float` `10.5`, usw. sein.
    
    ### `response_model_include` und `response_model_exclude`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:26:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  9. pkg/scheduler/extender.go

    }
    
    // IsFilter returns whether this extender is configured for the Filter method.
    func (h *HTTPExtender) IsFilter() bool {
    	return h.filterVerb != ""
    }
    
    // Helper function to send messages to the extender
    func (h *HTTPExtender) send(action string, args interface{}, result interface{}) error {
    	out, err := json.Marshal(args)
    	if err != nil {
    		return err
    	}
    
    	url := strings.TrimRight(h.extenderURL, "/") + "/" + action
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. tests/integration/telemetry/api/dashboard_test.go

    			if err != nil {
    				t.Fatal(err)
    			}
    			t.ConfigKube().YAML("istio-system", yml.SplitYamlByKind(string(cfg))["ConfigMap"]).ApplyOrFail(t)
    
    			// We will send a bunch of requests until the test exits. This ensures we are continuously
    			// getting new metrics ingested. If we just send a bunch at once, Prometheus may scrape them
    			// all in a single scrape which can lead to `rate()` not behaving correctly.
    			go setupDashboardTest(c.Done())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top