Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 83 for tag_name (0.3 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskCreationIntegrationTest.groovy

        def "can create task with invalid model space name"() {
            given:
            def taskName = "-"
    
            when:
            buildFile << """
                tasks.create('$taskName').doFirst {}
            """
    
            run taskName
    
            then:
            executed ":$taskName"
    
            when:
            ModelPath.validateName(taskName)
    
            then:
            thrown(ModelPath.InvalidNameException)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 18 22:50:47 UTC 2020
    - 16.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/converter_gen.cc

                "  auto {0} = Convert{1}ForOptionWriter(op.{2}(), fbb);\n",
                arg_name, mlir::tblgen::Attribute(arg_def).getAttrDefName(),
                op.getGetterName(arg_name));
            options.push_back(arg_name.str());
          }
        }
    
        // Add options due to derived attributes.
        for (const auto &val : def->getValues()) {
          if (auto *record = dyn_cast<RecordRecTy>(val.getType())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 15:05:28 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskContainer.java

            Task.TASK_ACTION, Task.TASK_DEPENDS_ON, Task.TASK_DESCRIPTION, Task.TASK_GROUP, Task.TASK_NAME, Task.TASK_OVERWRITE, Task.TASK_TYPE, Task.TASK_CONSTRUCTOR_ARGS
        );
        private static final Set<String> MANDATORY_TASK_ARGUMENTS = ImmutableSet.of(
            Task.TASK_NAME, Task.TASK_TYPE
        );
    
        private final TaskIdentityFactory taskIdentityFactory;
        private final ITaskFactory taskFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 09:54:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/VariantAwareResolutionWithConfigurationAttributesIntegrationTest.groovy

                                        def taskName = task.name
                                        task.source(p.tasks.compileJava.source)
                                        task.destinationDirectory = project.file("${p.buildDir}/classes/$taskName")
                                        task.classpath = _compileConfig
                                        task.doFirst {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  5. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/java/SamplesJavaTestingIntegrationTest.groovy

         * which can then be used to extract information from the XML.
         */
        private static getTestResultsFileAsXml(TestFile sampleDir, String testClassName, String taskName = "test") {
            return new XmlSlurper().parse(getTestResultsFile(sampleDir, testClassName, taskName))
        }
    
        /**
         * Returns the {@code TestFile} instance representing the required JUnit test
         * results file. Assumes the standard test results directory.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/NativeSpecVisualStudioTargetBinary.java

            return taskPath("clean");
        }
    
        private String taskPath(final String taskName) {
            final String projectPath = binary.getComponent().getProjectPath();
            if (":".equals(projectPath)) {
                return ":" + taskName;
            }
    
            return projectPath + ":" + taskName;
        }
    
        @Override
        public boolean isDebuggable() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  7. istioctl/pkg/tag/generate.go

    }
    
    // tagWebhookConfigFromCanonicalWebhook parses configuration needed to create tag webhook from existing revision webhook.
    func tagWebhookConfigFromCanonicalWebhook(wh admitv1.MutatingWebhookConfiguration, tagName, istioNS string) (*tagWebhookConfig, error) {
    	rev, err := GetWebhookRevision(wh)
    	if err != nil {
    		return nil, err
    	}
    	// if the revision is "default", render templates with an empty revision
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 17:43:49 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  8. api/maven-api-plugin/src/main/mdo/plugin.mdo

              <type>String</type>
              <description></description>
            </field>
            <field xml.tagName="role-hint">
              <name>roleHint</name>
              <version>1.0.0+</version>
              <type>String</type>
              <description></description>
            </field>
            <field xml.tagName="field-name">
              <name>fieldName</name>
              <required>true</required>
              <version>1.0.0+</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleKotlinDslIntegrationTest.kt

                }
                """
            )
    
            val taskName = ":writeInputToFile"
    
            build(taskName, "-PinputString=string1").assertTasksExecutedAndNotSkipped(taskName)
    
            build(taskName, "-PinputString=string1").assertTasksSkipped(taskName)
    
            build(taskName, "-PinputString=string2").assertTasksExecutedAndNotSkipped(taskName)
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/ResolvingWithPluginManagementSpec.groovy

        private publishTestPlugin(Repository repository) {
            def pluginBuilder = new PluginBuilder(testDirectory.file("plugin"))
    
            def message = "from plugin"
            def taskName = "pluginTask"
    
            pluginBuilder.addPluginWithPrintlnTask(taskName, message, "org.example.plugin")
            if (repository instanceof MavenRepository) {
                pluginBuilder.publishAs("org.example.plugin:plugin:1.0", repository, executer)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top