Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for GetGroup (0.58 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

                ModuleVersionIdentifier moduleVersion = result.getModuleVersion();
                DefaultDependencyConstraint constraint = DefaultDependencyConstraint.strictly(
                    moduleVersion.getGroup(),
                    moduleVersion.getName(),
                    moduleVersion.getVersion());
                constraint.because(consistentResolutionReason);
                return constraint;
            }
            return null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

                        ctx.details.with { it ->
                            if (it.getId().getGroup().startsWith("nebula")) {
                                it.belongsTo("aligned-group:nebula:\${it.getId().getVersion()}")
                            }
                            if (it.getId().getGroup().startsWith("proto")) {
                                it.belongsTo("aligned-group:proto:\${it.getId().getVersion()}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

            return description;
        }
    
        @Override
        public void setDescription(@Nullable String description) {
            this.description = description;
        }
    
        @Override
        public Object getGroup() {
            if (group != null) {
                return group;
            } else if (this == rootProject) {
                return "";
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            if (!capabilities.isEmpty()) { // Not required, but Guava's performance bad for an empty immutable list
                for (Capability capability : capabilities) {
                    if (capability.getGroup().equals(group) && capability.getName().equals(name)) {
                        return capability;
                    }
                }
            }
            return null;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  5. cmd/admin-handlers-users.go

    		Type: madmin.SRIAMItemGroupInfo,
    		GroupInfo: &madmin.SRGroupInfo{
    			UpdateReq: updReq,
    		},
    		UpdatedAt: updatedAt,
    	}))
    }
    
    // GetGroup - /minio/admin/v3/group?group=mygroup1
    func (a adminAPIHandlers) GetGroup(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    	objectAPI, _ := validateAdminReq(ctx, w, r, policy.GetGroupAdminAction)
    	if objectAPI == nil {
    		return
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

            );
        }
    
        private static ProblemId toProblemId(InternalProblemId problemId) {
            return new DefaultProblemId(problemId.getName(), problemId.getDisplayName(), toProblemGroup(problemId.getGroup()));
        }
    
        private static ProblemId toProblemId(InternalLabel label, InternalProblemCategory category) {
            List<String> categories = new ArrayList<>();
            categories.add(category.getCategory());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            and:
            def copiedConfiguration = configuration.copy(new Spec<Dependency>() {
                boolean isSatisfiedBy(Dependency element) {
                    return !element.getGroup().equals("group3")
                }
            })
    
            then:
            checkCopiedConfiguration(configuration, copiedConfiguration, resolutionStrategyCopy)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

                class AlignGroup implements ComponentMetadataRule {
                    void execute(ComponentMetadataContext ctx) {
                        ctx.details.with { it ->
                            if (it.getId().getGroup().startsWith("org.aligned")) {
                                it.belongsTo("org.aligned:platform:\${it.getId().getVersion()}")
                            }
                        }
                    }
                }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         *
         * @return The group of this project. Never returns null.
         */
        Object getGroup();
    
        /**
         * <p>Sets the group of this project.</p>
         *
         * @param group The group of this project. Must not be null.
         */
        void setGroup(Object group);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    func (sd *SECURITY_DESCRIPTOR) Group() (group *SID, defaulted bool, err error) {
    	err = getSecurityDescriptorGroup(sd, &group, &defaulted)
    	return
    }
    
    // SetGroup sets the absolute security descriptor owner.
    func (absoluteSD *SECURITY_DESCRIPTOR) SetGroup(group *SID, defaulted bool) error {
    	return setSecurityDescriptorGroup(absoluteSD, group, defaulted)
    }
    
    // Length returns the length of the security descriptor.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
Back to top