Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for capture2 (0.12 sec)

  1. ChangeLog.md

    - [`KT-62959`](https://youtrack.jetbrains.com/issue/KT-62959) Value of captured type is not a subtype of the same captured type
    - [`KT-64828`](https://youtrack.jetbrains.com/issue/KT-64828) Update KEEP for SubclassOptInRequired
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  2. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	// Specifies the Istio ingress ports not to capture.
    	ExcludeInboundPorts string `protobuf:"bytes,12,opt,name=excludeInboundPorts,proto3" json:"excludeInboundPorts,omitempty"`
    	// Lists the excluded IP ranges of Istio egress traffic that the sidecar captures.
    	ExcludeIPRanges string `protobuf:"bytes,13,opt,name=excludeIPRanges,proto3" json:"excludeIPRanges,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)
  3. src/cmd/compile/internal/ssagen/ssa.go

    			if n == nil {
    				break
    			}
    
    			ptr := s.newValue1I(ssa.OpOffPtr, types.NewPtr(typ), offset, clo)
    
    			// If n is a small variable captured by value, promote
    			// it to PAUTO so it can be converted to SSA.
    			//
    			// Note: While we never capture a variable by value if
    			// the user took its address, we may have generated
    			// runtime calls that did (#43701). Since we don't
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	MountOptionAnnotation = "volume.beta.kubernetes.io/mount-options"
    )
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // PersistentVolume struct captures the details of the implementation of PV storage
    type PersistentVolume struct {
    	metav1.TypeMeta
    	// +optional
    	metav1.ObjectMeta
    
    	// Spec defines a persistent volume owned by the cluster
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

              }
            },
            "required": [
              "volumePath"
            ],
            "type": "object"
          },
          "io.k8s.api.storage.v1.CSIDriver": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    	// inside a container.
    	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`
    }
    
    const (
    	// TerminationMessagePathDefault means the default path to capture the application termination message running in a container
    	TerminationMessagePathDefault string = "/dev/termination-log"
    )
    
    // A single application container that you want to run within a pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top