Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for respective (0.35 sec)

  1. doc/go_spec.html

    <a href="#Satisfying_a_type_constraint">satisfy</a> the constraint of its respective
    type parameter.
    </p>
    
    <p>
    Each such pair of matched types corresponds to a <i>type equation</i> containing
    one or multiple type parameters, from one or possibly multiple generic functions.
    Inferring the missing type arguments means solving the resulting set of type
    equations for the respective type parameters.
    </p>
    
    <p>
    For example, given
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  2. CHANGELOG/CHANGELOG-1.29.md

    - Forbidden sysctls for pod sharing the respective namespaces with the host are now checked when creating or updating pods without such sysctls. ([#118705](https://github.com/kubernetes/kubernetes/pull/118705), [@pacoxu](https://github.com/pacoxu))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation.go

    				allErrs = append(allErrs, err)
    			}
    		}
    		names[s.Name] = struct{}{}
    	}
    	return allErrs
    }
    
    // ValidateHostSysctl will return error if namespaced sysctls is applied to pod sharing the respective namespaces with the host.
    func ValidateHostSysctl(sysctl string, securityContext *core.PodSecurityContext, fldPath *field.Path) *field.Error {
    	ns, _, _ := utilsysctl.GetNamespace(sysctl)
    	switch {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    type MultiClusterConfig struct {
    	state         protoimpl.MessageState
    	sizeCache     protoimpl.SizeCache
    	unknownFields protoimpl.UnknownFields
    
    	// Enables the connection between two kubernetes clusters via their respective ingressgateway services.
    	// Use if the pods in each cluster cannot directly talk to one another.
    	Enabled *wrapperspb.BoolValue `protobuf:"bytes,1,opt,name=enabled,proto3" json:"enabled,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)
  5. CHANGELOG/CHANGELOG-1.28.md

      So, if you want to just keep the existing behavior, you can register `ClusterEventWithHint` with no `QueueingHintFn` in it. 
      But, registering appropriate `QueueingHintFn` is, of course, better from a scheduling performance perspective. ([#118551](https://github.com/kubernetes/kubernetes/pull/118551), [@sanposhiho](https://github.com/sanposhiho)) [SIG Node, Scheduling, Storage and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  6. prow/config/calico.yaml

                    description: 'FailsafeInboundHostPorts is a list of UDP/TCP ports
                      and CIDRs that Felix will allow incoming traffic to host endpoints
                      on irrespective of the security policy. This is useful to avoid
                      accidentally cutting off a host with incorrect configuration. For
                      back-compatibility, if the protocol is not specified, it defaults
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  7. pkg/apis/core/types.go

    	// on dual-stack configured clusters, otherwise fail). The IPFamilies and ClusterIPs assigned
    	// to this service can be controlled by service.spec.ipFamilies and service.spec.clusterIPs
    	// respectively.
    	// +optional
    	IPFamilyPolicy *IPFamilyPolicy
    
    	// ExternalName is the external reference that kubedns or equivalent will
    	// return as a CNAME record for this service. No proxying will be involved.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.8.md

    * The metrics APIs, `custom-metrics.metrics.k8s.io` and `metrics`, were moved from `v1alpha1` to `v1beta1`, and renamed to `custom.metrics.k8s.io` and `metrics.k8s.io`, respectively. If you have deployed a custom metrics adapter, ensure that it supports the new API version. If you have deployed Heapster in aggregated API server mode, upgrade Heapster to support the latest API version.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  9. src/net/http/h2_bundle.go

    // splitHeaderBlock splits headerBlock into fragments so that each fragment fits
    // in a single frame, then calls fn for each fragment. firstFrag/lastFrag are true
    // for the first/last fragment, respectively.
    func http2splitHeaderBlock(ctx http2writeContext, headerBlock []byte, fn func(ctx http2writeContext, frag []byte, firstFrag, lastFrag bool) error) error {
    	// For now we're lazy and just pick the minimum MAX_FRAME_SIZE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  10. ChangeLog.md

    - [`KT-63068`](https://youtrack.jetbrains.com/issue/KT-63068) K2 supports typeRef-name labels
    - [`KT-63642`](https://youtrack.jetbrains.com/issue/KT-63642) JVM_IR: don't generate reflective access to getter/setter without property
    - [`KT-62212`](https://youtrack.jetbrains.com/issue/KT-62212) K2: require matching of suspend status for override check
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
Back to top