Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,410 for _objects (0.15 sec)

  1. src/main/java/org/codelibs/core/lang/ObjectUtil.java

         * </pre>
         *
         * @param object1
         *            オブジェクト(<code>null</code>可)
         * @param object2
         *            オブジェクト(<code>null</code>可)
         * @return 引数の2つのオブジェクトが等しい場合は<code>true</code>を返します。
         */
        public static boolean equals(final Object object1, final Object object2) {
            if (object1 == object2) {
                return true;
            }
            if (object1 == null || object2 == null) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. cmd/object-api-interface_gen.go

    Klaus Post <******@****.***> 1709924898 +0100
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 19:08:18 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. pkg/kubectl/cmd/convert/convert.go

    			}
    
    			return nil, err
    		}
    		objects = append(objects, converted)
    	}
    	return objects, nil
    }
    
    // tryConvert attempts to convert the given object to the provided versions in order. This function assumes
    // the object is in internal version.
    func tryConvert(converter runtime.ObjectConvertor, object runtime.Object, versions ...schema.GroupVersion) (runtime.Object, error) {
    	var last error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 03:21:17 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  4. docs/iam/policies/deny-non-sse-kms-objects.json

    Shubhendu <******@****.***> 1715701387 +0530
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 14 15:43:07 UTC 2024
    - 413 bytes
    - Viewed (0)
  5. cmd/object-api-getobjectinfo_test.go

    		// Test cases with valid but non-existing bucket names and invalid object name (Test number 7-8).
    		{"test-getobjectinfo", "", ObjectInfo{}, ObjectNameInvalid{Bucket: "test-getobjectinfo", Object: ""}, false},
    		{"test-getobjectinfo", "", ObjectInfo{}, ObjectNameInvalid{Bucket: "test-getobjectinfo", Object: ""}, false},
    		// Test cases with non-existing object name with existing bucket (Test number 9-11).
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Dec 23 15:46:00 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  6. docs/bucket/retention/README.md

    # Object Lock and Immutablity Guide [![Slack](https://slack.min.io/slack?type=svg)](https://slack.min.io)
    
    MinIO server allows WORM for specific objects or by configuring a bucket with default object lock configuration that applies default retention mode and retention duration to all objects. This makes objects in the bucket immutable i.e. delete of the version are not allowed until an expiry specified in the bucket's object lock configuration or object retention.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/plugins/ExtensionAware.java

     * limitations under the License.
     */
    package org.gradle.api.plugins;
    
    import org.gradle.api.tasks.Internal;
    
    /**
     * Objects that can be extended at runtime with other objects.
     *
     * <pre class='autoTested'>
     * // Extensions are just plain objects, there is no interface/type
     * class MyExtension {
     *   String foo
     *
     *   MyExtension(String foo) {
     *     this.foo = foo
     *   }
     * }
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 26 07:18:37 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/networking/v1alpha1/types_swagger_doc_generated.go

    	"name":      "Name is the name of the object being referenced.",
    }
    
    func (ParentReference) SwaggerDoc() map[string]string {
    	return map_ParentReference
    }
    
    var map_ServiceCIDR = map[string]string{
    	"":         "ServiceCIDR defines a range of IP addresses using CIDR format (e.g. 192.168.0.0/24 or 2001:db2::/64). This range is used to allocate ClusterIPs to Service objects.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:58 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  9. src/cmd/fix/jnitype.go

    var jniFix = fix{
    	name:     "jni",
    	date:     "2017-12-04",
    	f:        jnifix,
    	desc:     `Fixes initializers of JNI's jobject and subtypes`,
    	disabled: false,
    }
    
    // Old state:
    //
    //	type jobject *_jobject
    //
    // New state:
    //
    //	type jobject uintptr
    //
    // and similar for subtypes of jobject.
    // This fix finds nils initializing these types and replaces the nils with 0s.
    func jnifix(f *ast.File) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/networking/v1alpha1/generated.proto

      // +optional
      optional string namespace = 3;
    
      // Name is the name of the object being referenced.
      // +required
      optional string name = 4;
    }
    
    // ServiceCIDR defines a range of IP addresses using CIDR format (e.g. 192.168.0.0/24 or 2001:db2::/64).
    // This range is used to allocate ClusterIPs to Service objects.
    message ServiceCIDR {
      // Standard object's metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top