Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of about 10,000 for ofObject (0.11 sec)

  1. cmd/erasure-server-pool.go

    }
    
    // GetObjectTags - get object tags from an existing object
    func (z *erasureServerPools) GetObjectTags(ctx context.Context, bucket, object string, opts ObjectOptions) (*tags.Tags, error) {
    	object = encodeDirObject(object)
    	if z.SinglePool() {
    		return z.serverPools[0].GetObjectTags(ctx, bucket, object, opts)
    	}
    
    	oi, _, err := z.getLatestObjectInfoWithIdx(ctx, bucket, object, opts)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/builder_test.go

    		},
    		{
    			name:         "with v3 nullable field",
    			schema:       `{"type":"object","properties":{"spec":{"type":"object", "nullable": true},"status":{"type":"object"}}}`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/RegularImmutableMap.java

            @J2ktIncompatible // serialization
            Object writeReplace() {
              return super.writeReplace();
            }
          };
        }
    
        @Override
        public boolean contains(@CheckForNull Object object) {
          if (object instanceof Entry) {
            Entry<?, ?> entry = (Entry<?, ?>) object;
            Object k = entry.getKey();
            Object v = entry.getValue();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 15 22:32:14 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/meta/help_test.go

    }
    
    func (l RawExtensionList) DeepCopyObject() runtime.Object { panic("unimplemented") }
    
    // NOTE: Foo struct itself is the implementer of runtime.Object.
    type Foo struct {
    	metav1.TypeMeta
    	metav1.ObjectMeta
    	Spec FooSpec
    }
    
    func (f Foo) GetObjectKind() schema.ObjectKind {
    	tm := f.TypeMeta
    	return &tm
    }
    
    func (f Foo) DeepCopyObject() runtime.Object { panic("unimplemented") }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 13:40:46 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/interfaces.go

    	// method does not mutate the in object, but the in and out object might share data structures,
    	// i.e. the out object cannot be mutated without mutating the in object as well.
    	// The context argument will be passed to all nested conversions.
    	Convert(in, out, context interface{}) error
    	// ConvertToVersion takes the provided object and converts it the provided version. This
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 28 03:26:35 UTC 2023
    - 19K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/DefaultCallSiteDecorator.java

            @Override
            public Object call(Object receiver, Object[] args) throws Throwable {
                CallInterceptor interceptor = resolveCallInterceptor(InterceptScope.methodsNamed(getName()));
                if (interceptor != null) {
                    return interceptor.intercept(new AbstractInvocation<Object>(receiver, args) {
                        @Override
                        public Object callOriginal() throws Throwable {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/runtime/embedded.go

    	return Encode(e.E, e.obj)
    }
    
    // NewEncodableList creates an object that will be encoded with the provided codec on demand.
    // Provided as a convenience for test cases dealing with internal objects.
    func NewEncodableList(e Encoder, objects []Object, versions ...schema.GroupVersion) []Object {
    	out := make([]Object, len(objects))
    	for i := range objects {
    		if _, ok := objects[i].(*Unknown); ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 02 09:39:03 UTC 2019
    - 4.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/extensibility/DefaultExtraPropertiesExtension.java

        private final Map<String, Object> storage = new HashMap<>();
    
        @Override
        public boolean has(String name) {
            return storage.containsKey(name);
        }
    
        @Override
        @Nullable
        public Object get(String name) {
            Object value = find(name);
            if (value == null && !has(name)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. manifests/charts/istiod-remote/templates/defaultrevisionvalidatingadmissionpolicy.yaml

        - expression: |
            !(
              variables.isTelemetry && (
                (has(object.spec.tracing) ? object.spec.tracing : {}).exists(t, has(t.useRequestIdForTraceSampling)) ||
                (has(object.spec.metrics) ? object.spec.metrics : {}).exists(m, has(m.reportingInterval)) ||
                (has(object.spec.accessLogging) ? object.spec.accessLogging : {}).exists(l, has(l.filter))
              )
            )
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 19:46:57 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/ReceivedProblem.groovy

            this.locations = fromList(problemDetails['locations'] as List<Object>)
            this.additionalData = new ReceivedAdditionalData(problemDetails['additionalData'] as Map<String, Object>)
            this.exception = problemDetails['exception'] == null ? null : new ReceivedException(problemDetails['exception'] as Map<String, Object>)
        }
    
        private static List<ProblemLocation> fromList(List<Object> locations) {
            List<ProblemLocation> result = []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 12:45:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top