Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 336 for setgroups1 (0.34 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleReleaseNotesPlugin.java

            TaskProvider<RenderMarkdown> releaseNotesMarkdown = tasks.register("releaseNotesMarkdown", RenderMarkdown.class, task -> {
                task.setGroup("release notes");
                task.setDescription("Generate release notes HTML page from Markdown.");
    
                task.getInputEncoding().convention(Charset.defaultCharset().name());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 10 11:32:18 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/base/login/AzureAdCredential.java

                permissions = null;
                return true;
            }
    
            public AuthenticationResult getAuthenticationResult() {
                return authResult;
            }
    
            public void setGroups(final String[] groups) {
                this.groups = groups;
            }
    
            public void setRoles(final String[] roles) {
                this.roles = roles;
            }
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/LifeCyclePluginAnalyzerStub.java

                plugins = Collections.emptySet();
            }
    
            return plugins;
        }
    
        private Plugin newPlugin(String artifactId, String... goals) {
            Plugin plugin = new Plugin();
    
            plugin.setGroupId("org.apache.maven.plugins");
            plugin.setArtifactId(artifactId);
    
            for (String goal : goals) {
                PluginExecution pluginExecution = new PluginExecution();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/graph/DefaultGraphBuilderTest.java

            Parent parent = new Parent();
            parent.setGroupId(parentProject.getGroupId());
            parent.setArtifactId(parentProject.getArtifactId());
            project.getModel().setParent(parent);
            return project;
        }
    
        private MavenProject getMavenProject(String artifactId) {
            MavenProject mavenProject = new MavenProject();
            mavenProject.setGroupId(GROUP_ID);
            mavenProject.setArtifactId(artifactId);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 09:23:26 UTC 2023
    - 27.8K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoDescriptorCreator.java

                //
                // groupId
                // artifactId
                // version
                // goal
                //
                plugin = new Plugin();
                plugin.setGroupId(tok[0]);
                plugin.setArtifactId(tok[1]);
                plugin.setVersion(tok[2]);
                goal = tok[3];
    
                // This won't be valid, but it constructs something easy to read in the error message
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/plugins/XcodePlugin.java

                    FileCollection sources = component.getCppSource();
                    xcodeProject.getGroups().getSources().from(sources);
    
                    FileCollection headers = component.getHeaderFiles();
                    xcodeProject.getGroups().getHeaders().from(headers);
    
                    // TODO - should use the _install_ task for an executable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 24.4K bytes
    - Viewed (0)
Back to top