Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for ADDS (0.06 sec)

  1. docs/en/docs/release-notes.md

    ## 0.95.0
    
    ### Highlights
    
    This release adds support for dependencies and parameters using `Annotated` and recommends its usage. ✨
    
    This has **several benefits**, one of the main ones is that now the parameters of your functions with `Annotated` would **not be affected** at all.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    type http2inflow struct {
    	avail  int32
    	unsent int32
    }
    
    // init sets the initial window.
    func (f *http2inflow) init(n int32) {
    	f.avail = n
    }
    
    // add adds n bytes to the window, with a maximum window size of max,
    // indicating that the peer can now send us more data.
    // For example, the user read from a {Request,Response} body and consumed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/core/v1/generated.proto

      // secret object contains more than one secret, all secret references are passed.
      // +optional
      optional LocalObjectReference nodePublishSecretRef = 5;
    }
    
    // Adds and removes POSIX capabilities from running containers.
    message Capabilities {
      // Added capabilities
      // +optional
      repeated string add = 1;
    
      // Removed capabilities
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    func (CSIVolumeSource) SwaggerDoc() map[string]string {
    	return map_CSIVolumeSource
    }
    
    var map_Capabilities = map[string]string{
    	"":     "Adds and removes POSIX capabilities from running containers.",
    	"add":  "Added capabilities",
    	"drop": "Removed capabilities",
    }
    
    func (Capabilities) SwaggerDoc() map[string]string {
    	return map_Capabilities
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.15.md

    * azure: Add allow unsafe read from cache ([#83685](https://github.com/kubernetes/kubernetes/pull/83685), [@aramase](https://github.com/aramase))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__rbac.authorization.k8s.io__v1_openapi.json

              }
            ]
          },
          "io.k8s.api.rbac.v1.ClusterRoleBinding": {
            "description": "ClusterRoleBinding references a ClusterRole, but not contain it.  It can reference a ClusterRole in the global namespace, and adds who information via Subject.",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 352.2K bytes
    - Viewed (0)
  7. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	// Maximum duration that a sidecar can be connected to a pilot.
    	//
    	// This setting balances out load across pilot instances, but adds some resource overhead.
    	//
    	// Examples: 300s, 30m, 1h
    	KeepaliveMaxServerConnectionAge *durationpb.Duration `protobuf:"bytes,13,opt,name=keepaliveMaxServerConnectionAge,proto3" json:"keepaliveMaxServerConnectionAge,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

      // secret object contains more than one secret, all secret references are passed.
      // +optional
      optional LocalObjectReference nodePublishSecretRef = 5;
    }
    
    // Adds and removes POSIX capabilities from running containers.
    message Capabilities {
      // Added capabilities
      // +optional
      // +listType=atomic
      repeated string add = 1;
    
      // Removed capabilities
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types.go

    	TerminationMessageFallbackToLogsOnError TerminationMessagePolicy = "FallbackToLogsOnError"
    )
    
    // Capability represent POSIX capabilities type
    type Capability string
    
    // Adds and removes POSIX capabilities from running containers.
    type Capabilities struct {
    	// Added capabilities
    	// +optional
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__batch__v1_openapi.json

              }
            },
            "required": [
              "driver"
            ],
            "type": "object"
          },
          "io.k8s.api.core.v1.Capabilities": {
            "description": "Adds and removes POSIX capabilities from running containers.",
            "properties": {
              "add": {
                "description": "Added capabilities",
                "items": {
                  "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
Back to top