Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 86 for subgroup (0.13 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr7_writing_plugins.adoc

        void apply(Project project) {
            project.tasks.register("license", LicenseTask) { task ->
                task.setDescription("add a license header to source code")  // Add description
                task.setGroup("from license plugin")                        // Add group
            }
        }
    }
    ----
    =====
    
    == Step 2. Add a license.txt file
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/DefaultRepositoryHandlerTest.groovy

                args[0].execute(repo3Content)
            }
            1 * repo3Content.excludeVersionByRegex("com.mycompany","core", "1.0")
            0 * _
        }
    
        def "can include module by group and subgroups exclusively"() {
            given:
            def repo1 = Mock(TestMavenArtifactRepository) { getName() >> "Maven repo 1" }
            def repo2 = Mock(TestMavenArtifactRepository) { getName() >> "Maven repo 2" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 18:02:33 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-application/src/main/java/org/gradle/api/plugins/ApplicationPlugin.java

            project.getTasks().register(TASK_RUN_NAME, JavaExec.class, run -> {
                run.setDescription("Runs this project as a JVM application");
                run.setGroup(APPLICATION_GROUP);
    
                FileCollection runtimeClasspath = project.files().from((Callable<FileCollection>) () -> {
                    if (run.getMainModule().isPresent()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/cpp/plugins/CppUnitTestPlugin.java

                // TODO: Replace with native test task
                final TaskProvider<RunTestExecutable> testTask = tasks.register(binary.getNames().getTaskName("run"), RunTestExecutable.class, task -> {
                    task.setGroup(LifecycleBasePlugin.VERIFICATION_GROUP);
                    task.setDescription("Executes C++ unit tests.");
    
                    final InstallExecutable installTask = binary.getInstallTask().get();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/main/java/org/gradle/language/base/plugins/ComponentModelBasePlugin.java

                    return;
                }
                TaskInternal binaryLifecycleTask = taskInstantiator.create(binary.getNamingScheme().getTaskName("check"), DefaultTask.class);
                binaryLifecycleTask.setGroup(LifecycleBasePlugin.VERIFICATION_GROUP);
                binaryLifecycleTask.setDescription("Check " + binary);
                binary.setCheckTask(binaryLifecycleTask);
            }
    
            @Finalize
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 14K bytes
    - Viewed (1)
  6. src/cmd/vendor/golang.org/x/text/language/match.go

    	const defaultDistance = 4
    
    	aGroup := uint(regionToGroups[a]) << 1
    	bGroup := uint(regionToGroups[b]) << 1
    	for _, ri := range matchRegion {
    		if language.Language(ri.lang) == lang && (ri.script == 0 || language.Script(ri.script) == script) {
    			group := uint(1 << (ri.group &^ 0x80))
    			if 0x80&ri.group == 0 {
    				if aGroup&bGroup&group != 0 { // Both regions are in the group.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        Arg<TF_Int32Tensor, [{An int32 tensor with shape
    [num_groups, num_replicas_per_group]. `group_assignment[i]` represents the
    replica ids in the ith subgroup.}]>:$group_assignment,
    
        I64Attr:$concat_dimension,
        I64Attr:$split_dimension,
        I64Attr:$split_count
      );
    
      let results = (outs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/ProjectDelegate.kt

        override fun relativeProjectPath(path: String): String =
            delegate.relativeProjectPath(path)
    
        override fun getPluginManager(): PluginManager =
            delegate.pluginManager
    
        override fun setGroup(group: Any) {
            delegate.group = group
        }
    
        override fun fileTree(baseDir: Any): ConfigurableFileTree =
            delegate.fileTree(baseDir)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:16:16 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  9. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/plugins/XCTestConventionPlugin.java

                // Create test suite test task
                TaskProvider<XCTest> testingTask = project.getTasks().register("xcTest", XCTest.class, task -> {
                    task.setGroup(LifecycleBasePlugin.VERIFICATION_GROUP);
                    task.setDescription("Executes XCTest suites");
                    task.getTestInstallDirectory().set(binary.getInstallDirectory());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/jvm/internal/DefaultJvmFeature.java

                return tasks.register(jarTaskName, Jar.class, jar -> {
                    jar.setDescription("Assembles a jar archive containing the classes of the '" + name + "' feature.");
                    jar.setGroup(BasePlugin.BUILD_GROUP);
                    jar.from(sourceSet.getOutput());
                    if (!capabilities.isEmpty()) {
                        jar.getArchiveClassifier().set(TextUtil.camelToKebabCase(name));
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 21K bytes
    - Viewed (0)
Back to top