Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for Replacer (0.42 sec)

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

    	// Specifies pod scheduling arch(amd64, ppc64le, s390x, arm64) and weight as follows:
    	//
    	//	0 - Never scheduled
    	//	1 - Least preferred
    	//	2 - No preference
    	//	3 - Most preferred
    	//
    	// Deprecated: replaced by the affinity k8s settings which allows architecture nodeAffinity configuration of this behavior.
    	//
    	// Deprecated: Marked as deprecated in pkg/apis/istio/v1alpha1/values_types.proto.
    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. pkg/apis/core/types.go

    	// the values array must be empty. If the operator is Gt or Lt, the values
    	// array must have a single element, which will be interpreted as an integer.
    	// This array is replaced during a strategic merge patch.
    	// +optional
    	Values []string
    }
    
    // NodeSelectorOperator is the set of operators that can be used in
    // a node selector requirement.
    type NodeSelectorOperator string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    func (NodeSelectorRequirement) SwaggerDoc() map[string]string {
    	return map_NodeSelectorRequirement
    }
    
    var map_NodeSelectorTerm = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    	// +optional
    	AllocatedResources ResourceList `json:"allocatedResources,omitempty" protobuf:"bytes,5,rep,name=allocatedResources,casttype=ResourceList,castkey=ResourceName"`
    
    	// resizestatus is tombstoned since the field was replaced by allocatedResourceStatus
    	// ResizeStatus *PersistentVolumeClaimResizeStatus `json:"resizeStatus,omitempty" protobuf:"bytes,6,opt,name=resizeStatus,casttype=PersistentVolumeClaimResizeStatus"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.28.md

    - Removed `resizeStatus` enum from `pvc.Status` and replaced with `AllocatedResourceStatus`. ([#116335](https://github.com/kubernetes/kubernetes/pull/116335), [@gnufied](https://github.com/gnufied)) [SIG API Machinery, Apps, Auth, Node, 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. staging/src/k8s.io/api/core/v1/generated.proto

      // the values array must be empty. If the operator is Gt or Lt, the values
      // array must have a single element, which will be interpreted as an integer.
      // This array is replaced during a strategic merge patch.
      // +optional
      // +listType=atomic
      repeated string values = 3;
    }
    
    // A null or empty node selector term matches no objects. The requirements of
    // them are ANDed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. ChangeLog.md

    - [`KT-60264`](https://youtrack.jetbrains.com/issue/KT-60264) K2: while loop body block sometimes replaced with single expression
    - [`KT-58542`](https://youtrack.jetbrains.com/issue/KT-58542) K2: Store abbreviated types in deserialized declarations as attributes for rendering
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  8. prow/config/calico.yaml

                      is under heavy load. Decrease the value to get felix to report non-live
                      or non-ready more quickly. [Default: 90s] \n Deprecated: replaced
                      by the generic HealthTimeoutOverrides."
                    type: string
                  debugDisableLogDropping:
                    type: boolean
                  debugMemoryProfilePath:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    			t.Fatal(err)
    		}
    
    		bs, err := json.Marshal(v1beta1Schema)
    		if err != nil {
    			t.Fatal(err)
    		}
    
    		expected := strings.Contains(strings.Replace(string(bs), `"default":null`, `"deleted":null`, -1), `"default":`)
    		if got := schemaHasDefaults(schema); got != expected {
    			t.Errorf("expected %v, got %v for: %s", expected, got, string(bs))
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  10. pkg/apis/core/validation/validation.go

    	if !allowEmpty && len(*effect) == 0 {
    		return field.ErrorList{field.Required(fldPath, "")}
    	}
    
    	allErrors := field.ErrorList{}
    	switch *effect {
    	// TODO: Replace next line with subsequent commented-out line when implement TaintEffectNoScheduleNoAdmit.
    	case core.TaintEffectNoSchedule, core.TaintEffectPreferNoSchedule, core.TaintEffectNoExecute:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top