Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,156 for objects (0.05 sec)

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

    /**
     * Helper functions that can operate on any {@code Object}.
     *
     * <p>See the Guava User Guide on <a
     * href="https://github.com/google/guava/wiki/CommonObjectUtilitiesExplained">writing {@code Object}
     * methods with {@code Objects}</a>.
     *
     * @author Laurence Gonsalves
     * @since 2.0
     */
    @GwtCompatible
    public final class Objects extends ExtraObjectsMethodsForWeb {
      private Objects() {}
    
      /**
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-03-17 20:26
    - 2.9K bytes
    - Viewed (0)
  2. docs/iam/policies/deny-non-sse-kms-objects.json

    Shubhendu <******@****.***> 1715701387 +0530
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-05-14 15:43
    - 413 bytes
    - Viewed (0)
  3. docs/iam/policies/deny-objects-with-invalid-sse-kms-key-id.json

    Shubhendu <******@****.***> 1715701387 +0530
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-05-14 15:43
    - 439 bytes
    - Viewed (0)
  4. 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: 2025-05-25 19:28
    - Last Modified: 2024-08-29 01:40
    - 4.1K bytes
    - Viewed (0)
  5. 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: 2025-05-25 19:28
    - Last Modified: 2025-04-09 14:28
    - 73.1K bytes
    - Viewed (0)
  6. docs/batch-jobs/README.md

    	  newerThan: "7d" # match objects newer than this value (e.g. 7d10h31s)
    	  olderThan: "7d" # match objects older than this value (e.g. 7d10h31s)
    	  createdAfter: "date" # match objects created after "date"
    	  createdBefore: "date" # match objects created before "date"
    
    	  ## NOTE: tags are not supported when "source" is remote.
    	  # tags:
    	  #   - key: "name"
    	  #     value: "pick*" # match objects with tag 'name', with all values starting with 'pick'
    Registered: 2025-05-25 19:28
    - Last Modified: 2022-10-06 06:00
    - 4.8K bytes
    - Viewed (0)
  7. docs/bucket/versioning/README.md

    ```
    
    ## MinIO extension to Bucket Versioning
    
    ### Idempotent versions on directory objects
    
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-02-26 09:25
    - 11.9K bytes
    - Viewed (0)
  8. build-logic/jvm/src/main/kotlin/gradlebuild/ConfigurationExtensions.kt

        attributes {
            attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage.JAVA_RUNTIME))
            attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category.LIBRARY))
            attribute(LibraryElements.LIBRARY_ELEMENTS_ATTRIBUTE, objects.named(LibraryElements.JAR))
            attribute(Bundling.BUNDLING_ATTRIBUTE, objects.named(Bundling.EXTERNAL))
    Registered: 2025-05-28 11:36
    - Last Modified: 2025-01-14 07:52
    - 3K bytes
    - Viewed (0)
  9. 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: 2025-05-25 19:28
    - Last Modified: 2025-01-20 14:49
    - 21.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/query/StoredLtrQueryBuilder.java

            return Objects.equals(modelName, other.modelName) && Objects.equals(featureSetName, other.featureSetName)
                    && Objects.equals(storeName, other.storeName) && Objects.equals(params, other.params)
                    && Objects.equals(activeFeatures, other.activeFeatures);
        }
    
        @Override
        protected int doHashCode() {
    Registered: 2025-05-26 08:04
    - Last Modified: 2025-03-15 06:53
    - 5.8K bytes
    - Viewed (0)
Back to top