Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,327 for _objects (0.18 sec)

  1. maven-core/src/main/java/org/apache/maven/project/artifact/DefaultProjectArtifactsCache.java

                int hash = 17;
                hash = hash * 31 + Objects.hashCode(groupId);
                hash = hash * 31 + Objects.hashCode(artifactId);
                hash = hash * 31 + Objects.hashCode(version);
                hash = hash * 31 + Objects.hashCode(dependencyArtifacts);
                hash = hash * 31 + Objects.hashCode(workspace);
                hash = hash * 31 + Objects.hashCode(localRepo);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:49 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/collections.adoc

    These types are commonly used in Gradle plugins and build scripts to manage collections of objects, such as tasks, configurations, or custom domain objects.
    
    [[domainobjectset]]
    == 1. `DomainObjectSet`
    
    A link:{javadocPath}/org/gradle/api/DomainObjectSet.html[`DomainObjectSet`] simply holds a set of configurable objects.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/discovery/v1beta1/types_swagger_doc_generated.go

    	"":            "EndpointSlice represents a subset of the endpoints that implement a service. For a given service there may be multiple EndpointSlice objects, selected by labels, which must be joined to produce the full set of endpoints.",
    	"metadata":    "Standard object's metadata.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:26:19 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apidiscovery/v2/generated.proto

      optional string resource = 1;
    
      // responseKind describes the group, version, and kind of the serialization schema for the object type this endpoint typically returns.
      // APIs may return other objects types at their discretion, such as error conditions, requests for alternate representations, or other operation specific behavior.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/CompositeDynamicObject.java

            this.objects = objects;
            updateObjects = objects;
        }
    
        protected void setObjectsForUpdate(DynamicObject... objects) {
            this.updateObjects = objects;
        }
    
        @Override
        public boolean hasProperty(String name) {
            for (DynamicObject object : objects) {
                if (object.hasProperty(name)) {
                    return true;
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 10:01:06 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DomainObjectCollectionExtensions.kt

    
    /**
     * Returns a collection containing the objects in this collection of the given type. The
     * returned collection is live, so that when matching objects are later added to this
     * collection, they are also visible in the filtered collection.
     *
     * @param S The type of objects to find.
     * @return The matching objects. Returns an empty collection if there are no such objects
     * in this collection.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. platforms/software/resources-gcs/src/main/java/org/gradle/internal/resource/transport/gcp/gcs/GcsClient.java

            String path = cleanResourcePath(uri);
            try {
                Storage.Objects.List listRequest = storage.objects().list(uri.getHost()).setPrefix(path);
                Objects objects;
    
                // Iterate through each page of results, and add them to our results list.
                do {
                    objects = listRequest.execute();
                    // Add the items in this page of results to the list we'll return.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:20 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. subprojects/core/src/testFixtures/groovy/org/gradle/api/tasks/TasksWithInputsAndOutputs.groovy

            buildFile << """
                class FileProducer extends DefaultTask {
                    @OutputFile
                    final RegularFileProperty output = project.objects.fileProperty()
                    @Input
                    final Property<String> content = project.objects.property(String).convention("content") // set to empty string to delete file
    
                    @TaskAction
                    def go() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  9. pkg/controller/util/selectors/bimultimap.go

    			if s.selector.Matches(set) {
    				selecting.objects[s.key] = s
    			}
    		}
    		// Associate selecting with labeled.
    		m.selectingByLabeled[labelsKey] = selecting
    	}
    	selecting := m.selectingByLabeled[labelsKey]
    	selecting.refCount++
    	for _, sObject := range selecting.objects {
    		// Associate labeled with selecting.
    		labeled := m.labeledBySelecting[sObject.selectorKey]
    		labeled.objects[labeledObject.key] = labeledObject
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 21:41:32 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultDependencyManagementImporter.java

            return Objects.equals(d1.getGroupId(), d2.getGroupId())
                    && Objects.equals(d1.getArtifactId(), d2.getArtifactId())
                    && Objects.equals(d1.getVersion(), d2.getVersion())
                    && Objects.equals(d1.getType(), d2.getType())
                    && Objects.equals(d1.getClassifier(), d2.getClassifier())
                    && Objects.equals(d1.getScope(), d2.getScope())
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 06:13:27 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top