Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 274 for setgroups1 (0.24 sec)

  1. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/plugins/IvyPublishPlugin.java

                publish.setDescription("Publishes all Ivy publications produced by this project to the " + repository.getName() + " repository.");
                publish.setGroup(PublishingPlugin.PUBLISH_TASK_GROUP);
            }));
    
            publications.all(publication -> {
                final String publicationName = publication.getName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/prefix/internal/DefaultPluginPrefixResult.java

            this.groupId = groupId;
            this.artifactId = artifactId;
            this.repository = repository;
        }
    
        public String getGroupId() {
            return groupId;
        }
    
        public void setGroupId(String groupId) {
            this.groupId = groupId;
        }
    
        public String getArtifactId() {
            return artifactId;
        }
    
        public void setArtifactId(String artifactId) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/test/groovy/org/gradle/external/javadoc/StandardJavadocDocletOptionsTest.java

            assertEquals(options, options.group(groupTwoName, groupTwoPackages));
            assertEquals(2, options.getGroups().size());
            assertArrayEquals(groupOnePackages, options.getGroups().get(groupOneName).toArray());
            assertArrayEquals(groupTwoPackages, options.getGroups().get(groupTwoName).toArray());
        }
    
        @Test
        public void testFluentNoDeprecated() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  4. platforms/ide/base-ide-plugins/src/main/java/org/gradle/plugins/ide/internal/IdePlugin.java

                @Override
                public void execute(Delete task) {
                    task.setGroup("IDE");
                }
            });
            lifecycleTask.configure(new Action<Task>() {
                @Override
                public void execute(Task task) {
                    task.setGroup("IDE");
                    task.shouldRunAfter(cleanTask);
                }
            });
            onApply(target);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  5. platforms/software/plugins-distribution/src/main/java/org/gradle/api/distribution/plugins/DistributionPlugin.java

            final TaskProvider<T> archiveTask = project.getTasks().register(taskName, type, task -> {
                task.setDescription("Bundles the project as a distribution.");
                task.setGroup(DISTRIBUTION_GROUP);
                task.getArchiveBaseName().convention(distribution.getDistributionBaseName());
                task.getArchiveClassifier().convention(distribution.getDistributionClassifier());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 20 20:49:58 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  6. src/syscall/syscall_linux_test.go

    		{call: "Setgroups([]int{0,1,2,3})", fn: func() error { return syscall.Setgroups([]int{0, 1, 2, 3}) }, filter: "Groups:", expect: "\t0 1 2 3"},
    		{call: "Setgroups(nil)", fn: func() error { return syscall.Setgroups(nil) }, filter: "Groups:", expect: ""},
    		{call: "Setgroups([]int{0})", fn: func() error { return syscall.Setgroups([]int{0}) }, filter: "Groups:", expect: "\t0"},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/tasks/GenerateXcodeProjectFileTask.java

            addToGroup(project.getMainGroup(), xcodeProject.getGroups().getSources(), "Sources");
            addToGroup(project.getMainGroup(), xcodeProject.getGroups().getHeaders(), "Headers");
            addToGroup(project.getMainGroup(), xcodeProject.getGroups().getTests(), "Tests");
            addToGroup(project.getMainGroup(), xcodeProject.getGroups().getRoot());
    
            for (XcodeTarget xcodeTarget : xcodeProject.getTargets()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/repository/MavenArtifactMetadata.java

        String version;
        String classifier;
        String type;
        String scope;
    
        transient Object datum;
    
        public String getGroupId() {
            return groupId;
        }
    
        public void setGroupId(String groupId) {
            this.groupId = groupId;
        }
    
        public String getArtifactId() {
            return artifactId;
        }
    
        public void setArtifactId(String artifactId) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/specs/GroupSetExclude.java

     * limitations under the License.
     */
    package org.gradle.api.internal.artifacts.ivyservice.resolveengine.excludes.specs;
    
    import java.util.Set;
    
    public interface GroupSetExclude extends ExcludeSpec {
        Set<String> getGroups();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 809 bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/ToolingModelBuilderSupport.java

        public static <T extends LaunchableGradleTask> T buildFromTask(T target, DefaultProjectIdentifier projectIdentifier, Task task) {
            target.setPath(task.getPath())
                    .setName(task.getName())
                    .setGroup(task.getGroup())
                    .setDisplayName(task.toString())
                    .setDescription(task.getDescription())
                    .setPublic(PublicTaskSpecification.INSTANCE.isSatisfiedBy(task))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 13 08:26:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top