Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,807 for object3 (0.56 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/conversion/webhook_converter.go

    		// with an empty object instead of nil, to be able to add labels and annotations below.
    		converted.Object["metadata"] = map[string]interface{}{}
    	} else {
    		converted.Object["metadata"] = runtime.DeepCopyJSONValue(original.Object["metadata"])
    	}
    
    	obj = converted.Object["metadata"]
    	convertedMetaData, ok := obj.(map[string]interface{})
    	if !ok {
    		return fmt.Errorf("invalid metadata of type %T in input object", obj)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 19:37:55 UTC 2023
    - 20.6K bytes
    - Viewed (0)
  2. cmd/data-scanner.go

    	}
    	// Notify object deleted event.
    	sendEvent(eventArgs{
    		EventName:  eventName,
    		BucketName: dobj.Bucket,
    		Object:     dobj,
    		UserAgent:  "Internal: [ILM-Expiry]",
    		Host:       globalLocalNodeName,
    	})
    
    	return true
    }
    
    // Apply object, object version, restored object or restored object version action on the given object
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/resource/v1alpha2/generated.proto

      optional PodSchedulingContextStatus status = 3;
    }
    
    // PodSchedulingContextList is a collection of Pod scheduling objects.
    message PodSchedulingContextList {
      // Standard list metadata
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // Items is the list of PodSchedulingContext objects.
      repeated PodSchedulingContext items = 2;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DefaultDependencyHandler.java

        private <U extends ExternalModuleDependency> Closure<Object> closureOf(Action<? super U> configuration) {
            return new Closure<Object>(this, this) {
                @Override
                public Object call() {
                    configuration.execute(Cast.uncheckedCast(getDelegate()));
                    return null;
                }
    
                @Override
                public Object call(Object arguments) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 08:14:09 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  5. pkg/scheduler/util/assumecache/assume_cache.go

    //
    // AssumeCache stores two pointers to represent a single object:
    //   - The pointer to the informer object.
    //   - The pointer to the latest object, which could be the same as
    //     the informer object, or an in-memory object.
    //
    // An informer update always overrides the latest object pointer.
    //
    // Assume() only updates the latest object pointer.
    // Restore() sets the latest object pointer back to the informer object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/storage/v1beta1/types.go

    // creates a CSIDriver object representing the driver.
    // Kubernetes attach detach controller uses this object to determine whether attach is required.
    // Kubelet uses this object to determine whether pod information needs to be passed on mount.
    // CSIDriver objects are non-namespaced.
    type CSIDriver struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// Standard object metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 33.1K bytes
    - Viewed (0)
  7. pkg/apis/networking/types.go

    	// An IPAddress must reference a parent object.
    	// +required
    	ParentRef *ParentReference
    }
    type ParentReference struct {
    	// Group is the group of the object being referenced.
    	Group string
    	// Resource is the resource of the object being referenced.
    	Resource string
    	// Namespace is the namespace of the object being referenced.
    	Namespace string
    	// Name is the name of the object being referenced.
    	Name string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_test_context.go

    //
    // Be aware the Update will modify the ResourceVersion of the
    // provided objects.
    func (p *PolicyTestContext[P, B, E]) Update(objects ...runtime.Object) error {
    	return p.update(false, objects...)
    }
    
    // Objects the given object in the test, or creates it if it doesn't exist
    // Depending upon object type, waits afterward until the object is synced
    // by the policy source
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/conversion/webhook_converter_test.go

    		},
    		{
    			Name:          "single item, not in desired version",
    			Object:        v2Object,
    			APIVersion:    "foo/v1",
    			ExpectObjects: []runtime.RawExtension{{Object: v2Object}},
    		},
    	}
    	for _, tc := range testcases {
    		t.Run(tc.Name, func(t *testing.T) {
    			if objects := getObjectsToConvert(tc.Object, tc.APIVersion); !reflect.DeepEqual(objects, tc.ExpectObjects) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 13 15:27:39 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/validation_test.go

    				{object: map[string]interface{}{"field": 42}, expectErrs: []string{`field: Invalid value: "integer": field in body must be of type object: "integer"`}},
    				{object: map[string]interface{}{"field": true}, expectErrs: []string{`field: Invalid value: "boolean": field in body must be of type object: "boolean"`}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 04:49:59 UTC 2023
    - 24.8K bytes
    - Viewed (0)
Back to top