Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 37 for Comparer (0.4 sec)

  1. CHANGELOG/CHANGELOG-1.10.md

    * The supported etcd server version is 3.1.12, as compared to 3.1.10 in v1.9 ([#60998](https://github.com/kubernetes/kubernetes/pull/60998))
    * The validated docker versions are the same as for v1.9: 1.11.2 to 1.13.1 and 17.03.x ([ref](https://github.com/kubernetes/kubernetes/blob/release-1.10/test/e2e_node/system/docker_validator_test.go))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.11.md

    * Default etcd server version is v3.2.18 compared with v3.1.12 in v1.10 ([#61198](https://github.com/kubernetes/kubernetes/pull/61198))
    * Rescheduler is v0.4.0, compared with v0.3.1 in v1.10 ([#65454](https://github.com/kubernetes/kubernetes/pull/65454))
    * The validated docker versions are the same as for v1.10: 1.11.2 to 1.13.1 and 17.03.x (ref)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation.go

    	reflectType, reflectValue := reflect.TypeOf(value), reflect.ValueOf(value)
    	for i := 0; i < reflectType.NumField(); i++ {
    		f := reflectType.Field(i)
    		if allowedFields[f.Name] {
    			continue
    		}
    
    		// Compare the value of this field to its zero value to determine if it has been set
    		if !reflect.DeepEqual(reflectValue.Field(i).Interface(), reflect.Zero(f.Type).Interface()) {
    			r, n := utf8.DecodeRuneInString(f.Name)
    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. CHANGELOG/CHANGELOG-1.18.md

    ## Dependencies
    
    ### Added
    _Nothing has changed._
    
    ### Changed
    - github.com/gogo/protobuf: [v1.3.1 → v1.3.2](https://github.com/gogo/protobuf/compare/v1.3.1...v1.3.2)
    - github.com/kisielk/errcheck: [v1.2.0 → v1.5.0](https://github.com/kisielk/errcheck/compare/v1.2.0...v1.5.0)
    - golang.org/x/net: 13f9640 → 69a7880
    - golang.org/x/sys: fde4db3 → 5cba982
    
    ### Removed
    _Nothing has changed._
    
    
    
    # v1.18.17
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 16 17:18:28 UTC 2021
    - 373.2K bytes
    - Viewed (0)
  5. pkg/registry/core/service/storage/storage_test.go

    	t.Helper()
    
    	// For when we compare objects.
    	options := []cmp.Option{
    		// These are system-assigned values, we don't need to compare them.
    		cmpopts.IgnoreFields(api.Service{}, "UID", "ResourceVersion", "CreationTimestamp"),
    		// Treat nil slices and empty slices as the same (e.g. clusterIPs).
    		cmpopts.EquateEmpty(),
    	}
    
    	// For allocated fields, we want to be able to compare cleanly whether the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.6.md

    * Deployments that cannot make progress in rolling out the newest version will now indicate via the API they are blocked
    * Introduce apps/v1beta1.Deployments resource with modified defaults compared to extensions/v1beta1.Deployments. ([#39683](https://github.com/kubernetes/kubernetes/pull/39683), [@soltysh](https://github.com/soltysh))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  7. ChangeLog.md

    - [`KT-60251`](https://youtrack.jetbrains.com/issue/KT-60251) K2: delegated method are delegating to different methods in hierarchy compared to K1
    - [`KT-63574`](https://youtrack.jetbrains.com/issue/KT-63574) K2: "IllegalStateException: IrFieldPublicSymbolImpl for java.nio/ByteOrder.LITTLE_ENDIAN"
    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. CHANGELOG/CHANGELOG-1.12.md

    - The dashboard add-on unchanged from v1.10: v1.8.3. ([#57326](https://github.com/kubernetes/kubernetes/pull/57326))
    - Bump Heapster to v1.6.0-beta as compared to v1.5.2 in v1.11  ([#67074](https://github.com/kubernetes/kubernetes/pull/67074))
    - Cluster Autoscaler has been upgraded to v1.12.0 ([#s8739](https://github.com/kubernetes/kubernetes/pull/68739))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
  9. src/net/http/h2_bundle.go

    // name (key). See httpguts.ValidHeaderName for the base rules.
    //
    // Further, http2 says:
    //
    //	"Just as in HTTP/1.x, header field names are strings of ASCII
    //	characters that are compared in a case-insensitive
    //	fashion. However, header field names MUST be converted to
    //	lowercase prior to their encoding in HTTP/2. "
    func http2validWireHeaderFieldName(v string) bool {
    	if len(v) == 0 {
    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/CHANGELOG-1.9.md

    ## External Dependencies
    
    *   The supported etcd server version is **3.1.10**, as compared to 3.0.17 in v1.8 ([#49393](https://github.com/kubernetes/kubernetes/pull/49393),[ @hongchaodeng](https://github.com/hongchaodeng))
    *   The validated docker versions are the same as for v1.8: **1.11.2 to 1.13.1 and 17.03.x**
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
Back to top