Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 344 for differs (0.13 sec)

  1. staging/src/k8s.io/api/admission/v1/types_swagger_doc_generated.go

    	"requestKind":        "RequestKind is the fully-qualified type of the original API request (for example, v1.Pod or autoscaling.v1.Scale). If this is specified and differs from the value in \"kind\", an equivalent match and conversion was performed.\n\nFor example, if deployments can be modified via apps/v1 and apps/v1beta1, and a webhook registered a rule of `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  2. pkg/apis/admission/types.go

    	// +optional
    	SubResource string
    
    	// RequestKind is the fully-qualified type of the original API request (for example, v1.Pod or autoscaling.v1.Scale).
    	// If this is specified and differs from the value in "kind", an equivalent match and conversion was performed.
    	//
    	// For example, if deployments can be modified via apps/v1 and apps/v1beta1, and a webhook registered a rule of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 01 16:14:06 UTC 2020
    - 7.8K bytes
    - Viewed (0)
  3. pkg/apis/core/types_test.go

    	}
    	for i := 0; i < ephemeralFields; i++ {
    		ephemeralField := ephemeralType.Field(i)
    		containerField := containerType.Field(i)
    		if !reflect.DeepEqual(ephemeralField, containerField) {
    			t.Errorf("field %v differs:\n\t%#v\n\t%#v", ephemeralField.Name, ephemeralField, containerField)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 03:01:07 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  4. src/runtime/debug/mod_test.go

    		s2 := bi.String()
    		bi2, err := debug.ParseBuildInfo(s2)
    		if err != nil {
    			t.Fatalf("%v:\n%s", err, s2)
    		}
    
    		if !reflect.DeepEqual(bi2, bi) {
    			t.Fatalf("Parsed representation differs.\ninput:\n%s\noutput:\n%s", s, s2)
    		}
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 09 19:44:03 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admission/v1/generated.proto

      // +optional
      optional string subResource = 4;
    
      // RequestKind is the fully-qualified type of the original API request (for example, v1.Pod or autoscaling.v1.Scale).
      // If this is specified and differs from the value in "kind", an equivalent match and conversion was performed.
      //
      // For example, if deployments can be modified via apps/v1 and apps/v1beta1, and a webhook registered a rule of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admission/v1beta1/generated.proto

      // +optional
      optional string subResource = 4;
    
      // RequestKind is the fully-qualified type of the original API request (for example, v1.Pod or autoscaling.v1.Scale).
      // If this is specified and differs from the value in "kind", an equivalent match and conversion was performed.
      //
      // For example, if deployments can be modified via apps/v1 and apps/v1beta1, and a webhook registered a rule of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admission/v1beta1/types_swagger_doc_generated.go

    	"requestKind":        "RequestKind is the fully-qualified type of the original API request (for example, v1.Pod or autoscaling.v1.Scale). If this is specified and differs from the value in \"kind\", an equivalent match and conversion was performed.\n\nFor example, if deployments can be modified via apps/v1 and apps/v1beta1, and a webhook registered a rule of `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  8. pkg/test/profile/fgprof.go

    func init() {
    	flag.StringVar(&fprof, "fullprofile", "", "enable full profile. Path will be relative to test directory")
    }
    
    // FullProfile runs a "Full" profile (https://github.com/felixge/fgprof). This differs from standard
    // CPU profile, as it includes both IO blocking and CPU usage in one profile, giving a full view of
    // the application.
    func FullProfile(t test.Failer) {
    	if fprof == "" {
    		return
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 21 21:50:09 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admission/v1/types.go

    	// RequestKind is the fully-qualified type of the original API request (for example, v1.Pod or autoscaling.v1.Scale).
    	// If this is specified and differs from the value in "kind", an equivalent match and conversion was performed.
    	//
    	// For example, if deployments can be modified via apps/v1 and apps/v1beta1, and a webhook registered a rule of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. src/time/tzdata_test.go

    				continue
    			}
    			found++
    			if !equal(t, v1.Field(i), v2.Field(i)) {
    				t.Errorf("zone %s: system and embedded tzdata field %s differs", zone, ft.Name)
    			}
    		}
    		if found != 2 {
    			t.Errorf("test must be updated for change to time.Location struct")
    		}
    	}
    }
    
    // equal is a small version of reflect.DeepEqual that we use to
    // compare the values of zoneinfo unexported fields.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 20:57:35 UTC 2022
    - 2.5K bytes
    - Viewed (0)
Back to top