Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for subgroup (0.29 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/InclusiveRepositoryContentDescriptor.java

         * Declares that an entire group and its subgroups should be searched for in this repository.
         *
         * <p>
         * A subgroup is a group that starts with the given prefix and has a dot immediately after the prefix.
         * For example, if the prefix is {@code org.gradle}, then {@code org.gradle} is matched as a group,
         * and {@code org.gradle.foo} and {@code org.gradle.foo.bar} are matched as subgroups. {@code org.gradlefoo}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 10 23:09:47 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/RepositoryContentDescriptor.java

         * Declares that an entire group and its subgroups shouldn't be searched for in this repository.
         *
         * <p>
         * A subgroup is a group that starts with the given prefix and has a dot immediately after the prefix.
         * For example, if the prefix is {@code org.gradle}, then {@code org.gradle} is matched as a group,
         * and {@code org.gradle.foo} and {@code org.gradle.foo.bar} are matched as subgroups. {@code org.gradlefoo}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 10 23:09:47 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. src/crypto/dsa/dsa.go

    // pair of integers. The security of the private key depends on the entropy of
    // rand.
    //
    // Note that FIPS 186-3 section 4.6 specifies that the hash should be truncated
    // to the byte-length of the subgroup. This function does not perform that
    // truncation itself.
    //
    // Be aware that calling Sign with an attacker-controlled [PrivateKey] may
    // require an arbitrary amount of CPU.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/staticpod/utils_linux_test.go

    	cfg := &kubeadm.ClusterConfiguration{}
    	pod := ComponentPod(v1.Container{Name: "kube-apiserver"}, nil, nil)
    	var runAsUser, runAsGroup, supGroup int64 = 1000, 1001, 1002
    	updatedFiles := map[string]ownerAndPermissions{}
    	if err := runKubeAPIServerAsNonRoot(&pod, &runAsUser, &runAsGroup, &supGroup, func(path string, uid, gid int64, perms uint32) error {
    		updatedFiles[path] = ownerAndPermissions{uid: uid, gid: gid, permissions: perms}
    		return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 14:41:12 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/main/java/org/gradle/language/base/plugins/LifecycleBasePlugin.java

                assembleTask.setDescription("Assembles the outputs of this project.");
                assembleTask.setGroup(BUILD_GROUP);
            });
        }
    
        private void addCheck(Project project) {
            project.getTasks().register(CHECK_TASK_NAME, checkTask -> {
                checkTask.setDescription("Runs all checks.");
                checkTask.setGroup(VERIFICATION_GROUP);
            });
        }
    
        private void addBuild(final Project project) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_missing_repo.txt

    # Regression test for golang.org/issue/34094: modules hosted within gitlab.com
    # subgroups could not be fetched because the server returned bogus go-import
    # tags for prefixes of the module path.
    
    [short] skip
    [!git] skip
    
    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    
    ! go mod download vcs-test.golang.org/go/missingrepo/missingrepo-git@latest
    stderr 'vcs-test.golang.org/go/missingrepo/missingrepo-git: git ls-remote .*: exit status .*'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 534 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/writing-tasks/task-with-arguments/common/project-info/src/main/java/com/example/ProjectInfoPlugin.java

    import org.gradle.api.Project;
    
    class ProjectInfoPlugin implements Plugin<Project> {
        public void apply(Project project) {
            project.getTasks().register("projectInfo", ProjectInfoTask.class, task -> {
                task.setGroup("help");
                task.setDescription("Displays current project info");
            });
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 383 bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/task/ShowToolchainsTaskConfigurator.java

        public void execute(ProjectInternal project) {
            project.getTasks().register("javaToolchains", ShowToolchainsTask.class, task -> {
                task.setDescription("Displays the detected java toolchains.");
                task.setGroup(HelpTasksPlugin.HELP_GROUP);
                task.setImpliesSubProjects(true);
            });
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:17:59 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top