Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 5,626 for object3 (0.11 sec)

  1. platforms/documentation/docs/src/snippets/providers/collections/groovy/build.gradle

        // Define a named domain object set to hold Person objects
        NamedDomainObjectSet<Person> people = project.objects.namedDomainObjectSet(Person)
    
        // Add a person to the set
        void addPerson(String name) {
            people.create(name)
        }
    }
    // end::ndos[]
    
    // tag::ndol[]
    
    abstract class MyPluginExtensionNamedDomainObjectList {
        // Define a named domain object container to hold Person objects
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultModelCache.java

                return Objects.equals(this.source, that.source) && Objects.equals(this.tag, that.tag);
            }
    
            @Override
            public int hashCode() {
                return hash;
            }
        }
    
        static class CachingSupplier<T> implements Supplier<T> {
            final Supplier<T> supplier;
            volatile Object value;
    
            CachingSupplier(Supplier<T> supplier) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 22 17:27:48 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/api/meta/interfaces.go

    	Namespace(obj runtime.Object) (string, error)
    	SetNamespace(obj runtime.Object, namespace string) error
    
    	Name(obj runtime.Object) (string, error)
    	SetName(obj runtime.Object, name string) error
    
    	GenerateName(obj runtime.Object) (string, error)
    	SetGenerateName(obj runtime.Object, name string) error
    
    	UID(obj runtime.Object) (types.UID, error)
    	SetUID(obj runtime.Object, uid types.UID) error
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 23:44:02 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  4. docs/bucket/lifecycle/README.md

    ### 3.1 Automatic removal of non current objects versions
    
    A non-current object version is a version which is not the latest for a given object. It is possible to set up an automatic removal of non-current versions when a version becomes older than a given number of days.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Aug 26 07:33:25 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultModelCache.java

                return Objects.equals(this.source, that.source) && Objects.equals(this.tag, that.tag);
            }
    
            @Override
            public int hashCode() {
                return hash;
            }
        }
    
        static class CachingSupplier<T> implements Supplier<T> {
            final Supplier<T> supplier;
            volatile Object value;
    
            CachingSupplier(Supplier<T> supplier) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. docs/minio-limits.md

    ### List of Amazon S3 Object API's not supported on MinIO
    
    - ObjectACL (Use [bucket policies](https://min.io/docs/minio/linux/administration/identity-access-management/policy-based-access-control.html) instead)
    
    ## Object name restrictions on MinIO
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/io/DefaultModelWriter.java

     *
     */
    @Named
    @Singleton
    public class DefaultModelWriter implements ModelWriter {
    
        @Override
        public void write(File output, Map<String, Object> options, Model model) throws IOException {
            Objects.requireNonNull(output, "output cannot be null");
            Objects.requireNonNull(model, "model cannot be null");
    
            output.getParentFile().mkdirs();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. operator/pkg/helmreconciler/apply.go

    		scope.Infof("The following objects differ between generated manifest and cache: \n - %s", strings.Join(changedObjectKeys, "\n - "))
    	} else {
    		scope.Infof("Generated manifest objects are the same as cached for component %s.", cname)
    	}
    
    	// Objects are applied in groups: namespaces, CRDs, everything else, with wait for ready in between.
    	nsObjs := object.KindObjects(changedObjects, name.NamespaceStr)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/SettingsInternal.java

        List<IncludedBuildSpec> getIncludedBuilds();
    
        /**
         * The parent scope for this and all settings objects.
         *
         * Gradle runtime.
         */
        ClassLoaderScope getBaseClassLoaderScope();
    
        /**
         * The scope for this settings object.
         *
         * Gradle runtime + this object's script's additions.
         */
        ClassLoaderScope getClassLoaderScope();
    
        ServiceRegistry getServices();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/process-services/src/test/groovy/org/gradle/process/internal/health/memory/TestMBeanAttributeProvider.java

            @Override
            public boolean equals(Object o) {
                if (this == o) {
                    return true;
                }
                if (o == null || getClass() != o.getClass()) {
                    return false;
                }
                AttributeKey that = (AttributeKey) o;
                return Objects.equal(mbean, that.mbean) && Objects.equal(attribute, that.attribute) && Objects.equal(type, that.type);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 21:48:34 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top