Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,065 for fieldsV1 (0.13 sec)

  1. pkg/apis/resource/validation/validation_podschedulingcontext_test.go

    					"example.com/foo",
    				}
    				return schedulingCtx
    			}(),
    		},
    		"managed-fields": {
    			schedulingCtx: func() *resource.PodSchedulingContext {
    				schedulingCtx := testPodSchedulingContexts(goodName, goodNS, goodPodSchedulingSpec)
    				schedulingCtx.ManagedFields = []metav1.ManagedFieldsEntry{
    					{
    						FieldsType: "FieldsV1",
    						Operation:  "Apply",
    						APIVersion: "apps/v1",
    						Manager:    "foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 09:18:08 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  2. pkg/apis/resource/validation/validation_resourceclaimtemplate_test.go

    					"example.com/foo",
    				}
    				return template
    			}(),
    		},
    		"managed-fields": {
    			template: func() *resource.ResourceClaimTemplate {
    				template := testClaimTemplate(goodName, goodNS, goodClaimSpec)
    				template.ManagedFields = []metav1.ManagedFieldsEntry{
    					{
    						FieldsType: "FieldsV1",
    						Operation:  "Apply",
    						APIVersion: "apps/v1",
    						Manager:    "foo",
    					},
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. pkg/apis/resource/validation/validation_resourceclass_test.go

    				class.Finalizers = []string{
    					"example.com/foo",
    				}
    				return class
    			}(),
    		},
    		"managed-fields": {
    			class: func() *resource.ResourceClass {
    				class := testClass(goodName, goodName)
    				class.ManagedFields = []metav1.ManagedFieldsEntry{
    					{
    						FieldsType: "FieldsV1",
    						Operation:  "Apply",
    						APIVersion: "apps/v1",
    						Manager:    "foo",
    					},
    				}
    				return class
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/fuzzer/fuzzer.go

    				sort.Slice(j.MatchExpressions, func(a, b int) bool { return j.MatchExpressions[a].Key < j.MatchExpressions[b].Key })
    			}
    		},
    		func(j *metav1.ManagedFieldsEntry, c fuzz.Continue) {
    			c.FuzzNoCustom(j)
    			j.FieldsV1 = nil
    		},
    	}
    }
    
    func v1beta1FuzzerFuncs(codecs runtimeserializer.CodecFactory) []interface{} {
    	return []interface{}{
    		func(r *metav1beta1.TableOptions, c fuzz.Continue) {
    			c.FuzzNoCustom(r)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 15:12:26 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/subresources_test.go

    	if err != nil {
    		t.Fatalf("Failed to Get CustomResource: %v", err)
    	}
    
    	// Managed fields should have 3 entries: one for scale, one for spec, and one for the rest of the fields
    	managedFields := obj.GetManagedFields()
    	if len(managedFields) != 3 {
    		t.Fatalf("Expected 3 managed fields, got %v: %v", len(managedFields), obj.GetManagedFields())
    	}
    	specEntry := managedFields[0]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:35:34 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  6. pkg/apis/resource/validation/validation_resourceclaim_test.go

    				claim.Finalizers = []string{
    					"example.com/foo",
    				}
    				return claim
    			}(),
    		},
    		"managed-fields": {
    			claim: func() *resource.ResourceClaim {
    				claim := testClaim(goodName, goodNS, goodClaimSpec)
    				claim.ManagedFields = []metav1.ManagedFieldsEntry{
    					{
    						FieldsType: "FieldsV1",
    						Operation:  "Apply",
    						APIVersion: "apps/v1",
    						Manager:    "foo",
    					},
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/binding/DefaultStructBindingsStoreTest.groovy

            private int age
        }
    
        def "instance scoped fields are not allowed"() {
            when:  extract WithInstanceScopedField
            then: def ex = thrown InvalidManagedTypeException
            ex.message == """Type ${fullyQualifiedNameOf(WithInstanceScopedField)} is not a valid managed type:
    - Field name is not valid: Fields must be static final.
    - Field age is not valid: Fields must be static final."""
        }
    
        @Managed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  8. src/encoding/csv/reader.go

    	// FieldsPerRecord is the number of expected fields per record.
    	// If FieldsPerRecord is positive, Read requires each record to
    	// have the given number of fields. If FieldsPerRecord is 0, Read sets it to
    	// the number of fields in the first record, so that future records must
    	// have the same field count. If FieldsPerRecord is negative, no check is
    	// made and records may have a variable number of fields.
    	FieldsPerRecord int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:32:28 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  9. src/text/template/doc.go

    	  chained:
    	    .Field1.Field2
    	  Fields can also be evaluated on variables, including chaining:
    	    $x.Field1.Field2
    	- The name of a key of the data, which must be a map, preceded
    	  by a period, such as
    		.Key
    	  The result is the map element value indexed by the key.
    	  Key invocations may be chained and combined with fields to any
    	  depth:
    	    .Field1.Key1.Field2.Key2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  10. internal/s3select/sql/value_test.go

    			fields: fields{
    				value: []byte("-0"),
    			},
    			want:   0,
    			wantOK: true,
    		},
    		{
    			name: "one",
    			fields: fields{
    				value: []byte("1"),
    			},
    			want:   1,
    			wantOK: true,
    		},
    		{
    			name: "minusone",
    			fields: fields{
    				value: []byte("-1"),
    			},
    			want:   -1,
    			wantOK: true,
    		},
    		{
    			name: "plusone",
    			fields: fields{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 06 16:56:10 UTC 2023
    - 12.5K bytes
    - Viewed (0)
Back to top