Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for dofiles (0.23 sec)

  1. api/openapi-spec/v3/apis__internal.apiserver.k8s.io__v1alpha1_openapi.json

          "io.k8s.api.apiserverinternal.v1alpha1.StorageVersion": {
            "description": "Storage version of a specific resource.",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 133.2K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__autoscaling__v1_openapi.json

          "io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler": {
            "description": "configuration of a horizontal pod autoscaler.",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 152.9K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__policy__v1_openapi.json

            "description": "PodDisruptionBudget is an object to define the max disruption that can be caused to a collection of pods",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__events.k8s.io__v1_openapi.json

                "type": "string"
              },
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 142.7K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1alpha1_openapi.json

                  ],
                  "default": {}
                },
                "type": "array",
                "x-kubernetes-list-type": "atomic"
              },
              "matchPolicy": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        }
        ```
    
        `tfl.if` regions are always terminated with "tfl.yield". If "tfl.if"
        defines no values, the "tfl.yield" can be left out, and will be inserted
        implicitly. Otherwise, it must be explicit.
        Also, if "tfl.if" defines one or more values, the 'else' block cannot be
        omitted.
    
        Example:
    
        ```mlir
        tfl.if %b  {
          ...
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  8. src/debug/elf/elf.go

    	// executable.
    	DF_1_SYMINTPOSE DynFlag1 = 0x00800000
    	// Indicates that the executable requires global auditing.
    	DF_1_GLOBAUDIT DynFlag1 = 0x01000000
    	// Indicates that the object defines, or makes reference to singleton symbols.
    	DF_1_SINGLETON DynFlag1 = 0x02000000
    	// Indicates that the object is a stub.
    	DF_1_STUB DynFlag1 = 0x04000000
    	// Indicates that the object is a position-independent executable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  9. src/net/http/server.go

    func ServeTLS(l net.Listener, handler Handler, certFile, keyFile string) error {
    	srv := &Server{Handler: handler}
    	return srv.ServeTLS(l, certFile, keyFile)
    }
    
    // A Server defines parameters for running an HTTP server.
    // The zero value for Server is a valid configuration.
    type Server struct {
    	// Addr optionally specifies the TCP address for the server to listen on,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/generic.rules

    // (op <type> [auxint] {aux} arg0 arg1 ...)
    // the type, aux, and auxint fields are optional
    // on the matching side
    //  - the type, aux, and auxint fields must match if they are specified.
    //  - the first occurrence of a variable defines that variable.  Subsequent
    //    uses must match (be == to) the first use.
    //  - v is defined to be the value matched.
    //  - an additional conditional can be provided after the match pattern with "&&".
    // on the generated side
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
Back to top