Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,410 for _objects (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/internal/model/ObjectFactoryNamedTypeIntegrationTest.groovy

                    ObjectFactory objects
    
                    @javax.inject.Inject
                    CustomPlugin(ObjectFactory objects) {
                        this.objects = objects
                    }
    
                    void apply(Project project) {
                        project.tasks.create('thing1', CustomTask) {
                            thing = objects.named(Thing, 'thing1')
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 05:39:53 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/build-logic/commons/src/main/groovy/com.example.jacoco.gradle

        canBeResolved = false
        extendsFrom(configurations.implementation)
        attributes {
            attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage, Usage.JAVA_RUNTIME))
            attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category, Category.DOCUMENTATION))
            attribute(DocsType.DOCS_TYPE_ATTRIBUTE, objects.named(DocsType, 'source-folders'))
        }
        sourceSets.main.java.srcDirs.forEach { outgoing.artifact(it) }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/AbstractExternalDependencyFactory.java

                                                    ObjectFactory objects,
                                                    ImmutableAttributesFactory attributesFactory,
                                                    CapabilityNotationParser capabilityNotationParser
        ) {
            this.config = config;
            this.providers = providers;
            this.objects = objects;
            this.attributesFactory = attributesFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apidiscovery/v2beta1/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)
Back to top