Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 8,722 for objects (0.1 sec)

  1. 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: 2024-06-12 16:38
    - Last Modified: 2024-02-15 16:12
    - 2.9K bytes
    - Viewed (0)
  2. 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: 2024-06-12 16:38
    - Last Modified: 2024-02-15 16:12
    - 2.9K bytes
    - Viewed (0)
  3. 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: 2024-06-14 15:00
    - Last Modified: 2023-09-21 07:16
    - 15.5K bytes
    - Viewed (1)
  4. docs/iam/policies/deny-non-sse-kms-objects.json

    Shubhendu <******@****.***> 1715701387 +0530
    Registered: 2024-06-16 00:44
    - Last Modified: 2024-05-14 15:43
    - 413 bytes
    - Viewed (0)
  5. docs/iam/policies/deny-objects-with-invalid-sse-kms-key-id.json

    Shubhendu <******@****.***> 1715701387 +0530
    Registered: 2024-06-16 00:44
    - Last Modified: 2024-05-14 15:43
    - 439 bytes
    - Viewed (0)
  6. 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: 2024-06-16 00:44
    - Last Modified: 2022-12-23 15:46
    - 3.9K bytes
    - Viewed (0)
  7. 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: 2024-06-16 00:44
    - Last Modified: 2024-05-01 11:07
    - 73.1K bytes
    - Viewed (0)
  8. cmd/object-api-datatypes.go

    	Status      string
    }
    
    // DeletedObjectInfo - container for list objects versions deleted objects.
    type DeletedObjectInfo struct {
    	// Name of the bucket.
    	Bucket string
    
    	// Name of the object.
    	Name string
    
    	// Date and time when the object was last modified.
    	ModTime time.Time
    
    	// Version ID of this object.
    	VersionID string
    
    	// Indicates the deleted marker is latest
    	IsLatest bool
    Registered: 2024-06-16 00:44
    - Last Modified: 2024-06-10 15:31
    - 20.9K bytes
    - Viewed (0)
  9. 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: 2024-06-12 16:32
    - Last Modified: 2024-05-07 20:08
    - 20.1K bytes
    - Viewed (0)
  10. src/go/types/object.go

    // All objects implement the Object interface.
    type Object interface {
    	Parent() *Scope // scope in which this object is declared; nil for methods and struct fields
    	Pos() token.Pos // position of object identifier in declaration
    	Pkg() *Package  // package to which this object belongs; nil for labels and objects in the Universe scope
    	Name() string   // package local object name
    	Type() Type     // object type
    Registered: 2024-06-12 16:32
    - Last Modified: 2024-05-07 20:08
    - 20.1K bytes
    - Viewed (0)
Back to top