Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for nameslice (0.32 sec)

  1. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	Enabled bool `protobuf:"varint,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
    	// The namespace of the CNI daemonset, incase it's not the same as istiod.
    	Namespace string `protobuf:"bytes,2,opt,name=namespace,proto3" json:"namespace,omitempty"`
    }
    
    func (x *PilotTaintControllerConfig) Reset() {
    	*x = PilotTaintControllerConfig{}
    	if protoimpl.UnsafeEnabled {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    						{
    							Rule: "self.if > 0",
    						},
    						{
    							Rule: "self.namespace > 0",
    						},
    						{
    							Rule: "self.unknownProp > 0",
    						},
    					},
    					Properties: map[string]apiextensions.JSONSchemaProps{
    						"if": {
    							Type: "integer",
    						},
    						"namespace": {
    							Type: "integer",
    						},
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.28.md

    - The deprecated flag `--lock-object-namespace` and `--lock-object-name` have been removed from kube-scheduler. Please use `--leader-elect-resource-namespace` and `--leader-elect-resource-name` or ComponentConfig instead to configure those parameters. ([#119130](https://github.com/kubernetes/kubernetes/pull/119130), [@SataQiu](https://github.com/SataQiu))...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    #include "tensorflow/core/util/padding.h"
    #include "tensorflow/core/util/tensor_format.h"
    #include "tsl/platform/bfloat16.h"
    #include "tsl/platform/status.h"
    #include "tsl/platform/tensor_float_32_utils.h"
    
    namespace mlir {
    namespace mhlo {
    namespace {
    
    constexpr char kShardingAttr[] = "mhlo.sharding";
    
    /// Returns the feature dimension for the given format and input type.
    static size_t GetFeatureDimension(tensorflow::TensorFormat format,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.25.md

    - Return a warning when applying a `pod-security.kubernetes.io` label to a PodSecurity-exempted namespace.
      Stop including the `pod-security.kubernetes.io/exempt=namespace` audit annotation on namespace requests. ([#109680](https://github.com/kubernetes/kubernetes/pull/109680), [@tallclair](https://github.com/tallclair))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.30.md

    - When using `kubectl logs <pod-name>` and the pod is not found, the error message now includes the namespace. Previously, the message would be "Error from server (NotFound): pods "my-pod-name" not found". Now, it reflects the namespace in the message as follows: "Error from server (NotFound): pods "my-pod-name" not found in namespace "default"".
       ([#120111](https://github.com/kubernetes/kubernetes/pull/120111), [@newtondev](https://github.com/newtondev))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.29.md

    - Added `UserNamespacesPodSecurityStandards` feature gate to enable user namespace support for Pod Security Standards.
      Enabling this feature will modify all Pod Security Standard rules to allow setting: `spec[.*].securityContext.[runAsNonRoot,runAsUser]`.
      This feature gate should only be enabled if all nodes in the cluster support the user namespace feature and have it enabled.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.27.md

    - Fixed an issue to not drain all the pods in a namespace when an empty-selector i.e. "{}" is specified in a Pod Disruption Budget (PDB) ([#121132](https://github.com/kubernetes/kubernetes/pull/121132), [@sairameshv](https://github.com/sairameshv)) [SIG Apps]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  9. pkg/registry/core/service/storage/storage_test.go

    // this is local because it's not fully fleshed out enough for general use.
    func makePod(name string, ips ...string) api.Pod {
    	p := api.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      name,
    			Namespace: metav1.NamespaceDefault,
    		},
    		Spec: api.PodSpec{
    			RestartPolicy: api.RestartPolicyAlways,
    			DNSPolicy:     api.DNSDefault,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/ssa.go

    	//     Note that len is unmodified by growslice.
    	// }
    	// // with write barriers, if needed:
    	// *(ptr+(len-3)) = e1
    	// *(ptr+(len-2)) = e2
    	// *(ptr+(len-1)) = e3
    	// return makeslice(ptr, len, cap)
    	//
    	//
    	// If inplace is true, process as statement "s = append(s, e1, e2, e3)":
    	//
    	// a := &s
    	// ptr, len, cap := s
    	// len += 3
    	// if uint(len) > uint(cap) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top