Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 608 for seni (0.04 sec)

  1. common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto

    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/admissionregistration/v1beta1";
    
    // MatchCondition represents a condition which must be 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
    - 22.6K 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. 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)
  4. 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)
  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. docs/de/docs/tutorial/path-params-numeric-validations.md

    Hier wird es wichtig, in der Lage zu sein, <abbr title="greater than – größer als"><code>gt</code></abbr> zu deklarieren, und nicht nur <abbr title="greater than or equal – größer oder gleich"><code>ge</code></abbr>, da Sie hiermit bestimmen können, dass ein Wert, zum Beispiel, größer als `0` sein muss, obwohl er kleiner als `1` ist.
    
    `0.5` wäre also ein gültiger Wert, aber nicht `0.0` oder `0`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 17:59:29 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top