Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,140 for _objects (0.14 sec)

  1. android/guava/src/com/google/common/base/Objects.java

       *
       * <p><b>Java 7+ users:</b> This method should be treated as deprecated; use {@link
       * java.util.Objects#hash} instead.
       */
      public static int hashCode(@CheckForNull @Nullable Object... objects) {
        return Arrays.hashCode(objects);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. operator/pkg/object/objects.go

    		return nil, err
    	}
    	if len(objects) > 1 {
    		return nil, fmt.Errorf("expect one object, actually: %d", len(objects))
    	}
    	if len(objects) == 0 || objects[0] == nil {
    		return nil, fmt.Errorf("decoding object %v: %v", string(yaml), "no object found")
    	}
    	return objects[0], nil
    }
    
    // UnstructuredObject exposes the raw object, primarily for testing
    func (o *K8sObject) UnstructuredObject() *unstructured.Unstructured {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 07:16:46 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Objects.java

       *
       * <p><b>Java 7+ users:</b> This method should be treated as deprecated; use {@link
       * java.util.Objects#hash} instead.
       */
      public static int hashCode(@CheckForNull @Nullable Object... objects) {
        return Arrays.hashCode(objects);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. src/go/types/object.go

    func (obj *object) Pos() token.Pos { return obj.pos }
    
    // Pkg returns the package to which the object belongs.
    // The result is nil for labels and objects in the Universe scope.
    func (obj *object) Pkg() *Package { return obj.pkg }
    
    // Name returns the object's (package-local, unqualified) name.
    func (obj *object) Name() string { return obj.name }
    
    // Type returns the object's type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  5. cmd/metrics-v2.go

    			jtype := toSnake(mj.JobType)
    			var objects, objectsFailed float64
    			var bucket string
    			switch madmin.BatchJobType(mj.JobType) {
    			case madmin.BatchJobReplicate:
    				objects = float64(mj.Replicate.Objects)
    				objectsFailed = float64(mj.Replicate.ObjectsFailed)
    				bucket = mj.Replicate.Bucket
    			case madmin.BatchJobKeyRotate:
    				objects = float64(mj.KeyRotate.Objects)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/object.go

    func (obj *object) Pos() syntax.Pos { return obj.pos }
    
    // Pkg returns the package to which the object belongs.
    // The result is nil for labels and objects in the Universe scope.
    func (obj *object) Pkg() *Package { return obj.pkg }
    
    // Name returns the object's (package-local, unqualified) name.
    func (obj *object) Name() string { return obj.name }
    
    // Type returns the object's type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  7. cmd/erasure-object.go

    func (er erasureObjects) DeleteObjects(ctx context.Context, bucket string, objects []ObjectToDelete, opts ObjectOptions) ([]DeletedObject, []error) {
    	if !opts.NoAuditLog {
    		for _, obj := range objects {
    			auditObjectErasureSet(ctx, obj.ObjectV.ObjectName, &er)
    		}
    	}
    
    	errs := make([]error, len(objects))
    	dobjects := make([]DeletedObject, len(objects))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  8. tensorflow/cc/experimental/libtf/object.h

    };
    
    /// @brief The `Object` class modeled after Python "objects".
    ///
    /// An `Object` uses a TaggedValue dictionary to store its attributes. The
    /// "__parent__" attribute is reserved.
    class Object : public Handle {
     public:
      /// Constructs a handle that acts as an object.
      Object() : Handle(TaggedValue::Dict()) {}
      /// Retrieves the key of the object's parent.
      static const String& ParentKey();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  9. cmd/object-api-listobjects_test.go

    						t.Errorf("Test %d: %s: Expected number of object in the result to be '%d', but found '%d' objects instead", i+1, instanceType, len(testCase.resultL.Objects), len(resultL.Objects))
    					}
    					for j := 0; j < len(testCase.resultL.Objects); j++ {
    						if j >= len(resultL.Objects) {
    							t.Errorf("Test %d: %s: Expected object name to be \"%s\", but not nothing instead", i+1, instanceType, testCase.resultL.Objects[j].Name)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  10. cmd/object-api-deleteobject_test.go

    			[]objectUpload{{"object0", "content"}, {"dir/object1", "content"}},
    			"dir/object1",
    			[]string{"object0"},
    		},
    		// Test 3: remove an object inside a directory and checks if it is deleted
    		// but other sibling object in the same directory still exists
    		{
    			"bucket3",
    			[]objectUpload{{"dir/object1", "content"}, {"dir/object2", "content"}},
    			"dir/object1",
    			[]string{"dir/object2"},
    		},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Dec 23 15:46:00 UTC 2022
    - 3.9K bytes
    - Viewed (0)
Back to top