Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 203 for tag_name (0.29 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/operations/logging/DefaultBuildOperationLoggerFactory.java

        }
    
    
        @Override
        public BuildOperationLogger newOperationLogger(String taskName, File outputDir) {
            final File outputFile = createOutputFile(outputDir);
            final BuildOperationLogInfo configuration = createLogInfo(taskName, outputFile, MAX_FAILURES);
            return new DefaultBuildOperationLogger(configuration, logger, outputFile);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:54:01 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/tasks/addRules/kotlin/build.gradle.kts

    // tag::all[]
    // tag::task-rule[]
    tasks.addRule("Pattern: ping<ID>") {
        val taskName = this
        if (startsWith("ping")) {
            task(taskName) {
                doLast {
                    println("Pinging: " + (taskName.replace("ping", "")))
                }
            }
        }
    }
    // end::task-rule[]
    
    tasks.register("groupPing") {
        dependsOn("pingServer1", "pingServer2")
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 384 bytes
    - Viewed (0)
  3. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/FileSystemRootUpToDateIntegrationTest.groovy

                    }
                }
    
                task ${taskName}(type: InputDirectoryContentToOutputFileAction) {
                    inputDirectory = new File("${drive}\\\\")
                    output = file("${TextUtil.escapeString(outputFile.absolutePath)}")
                }
            """
            when:
            buildScript script
    
            then:
            succeeds taskName
            outputFile.text.contains inputFileName
    
            cleanup:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java

            List<Element> inSection = new ArrayList<>();
            inSection.add(heading);
    
            Element next = heading.nextElementSibling();
            while (true) {
                if (next == null || next.tagName().equals("h2")) {
                    Element section = heading.before("<section class='topic'/>").previousElementSibling();
                    Elements inSectionElements = new Elements(inSection);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/tracing.go

    	var tags []*tracing.CustomTag
    	for tagName, tagInfo := range providerTags {
    		if tagInfo == nil {
    			log.Warnf("while building custom tags from provider, encountered nil custom tag: %s, skipping", tagName)
    			continue
    		}
    		switch tag := tagInfo.Type.(type) {
    		case *telemetrypb.Tracing_CustomTag_Environment:
    			env := &tracing.CustomTag{
    				Tag: tagName,
    				Type: &tracing.CustomTag_Environment_{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. internal/s3select/csv/args.go

    		if se, ok := t.(xml.StartElement); ok {
    			tagName := se.Name.Local
    			switch tagName {
    			case "AllowQuotedRecordDelimiter":
    				var b bool
    				if err = d.DecodeElement(&b, &se); err != nil {
    					return err
    				}
    				args.AllowQuotedRecordDelimiter = b
    			default:
    				var s string
    				if err = d.DecodeElement(&s, &se); err != nil {
    					return err
    				}
    				switch tagName {
    				case "FileHeaderInfo":
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 06 16:56:10 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/cli/MaxWorkersIntegrationTest.groovy

                import java.util.concurrent.TimeUnit
    
                tasks.addRule("") { taskName ->
                    if (taskName.startsWith("verifyMaxWorkers")) {
                        task(taskName) { task ->
                            doLast {
                                def count = (taskName - "verifyMaxWorkers") as int
                                def latch = new CountDownLatch(count)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/model/CIBuildModel.kt

    import configurations.SmokeTests
    import configurations.TestPerformanceTest
    import projects.DEFAULT_FUNCTIONAL_TEST_BUCKET_SIZE
    import projects.DEFAULT_LINUX_FUNCTIONAL_TEST_BUCKET_SIZE
    
    enum class StageName(val stageName: String, val description: String, val uuid: String) {
        QUICK_FEEDBACK_LINUX_ONLY("Quick Feedback - Linux Only", "Run checks and functional tests (embedded executer, Linux)", "QuickFeedbackLinuxOnly"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityPluginConfigurationCachingIntegrationTest.groovy

        def "returned service ref refers to service for that build"() {
            given:
            def taskName = "printInvocationId"
            buildFile << taskPrintBuildInvocationId(taskName)
    
            when:
            succeeds taskName, "--configuration-cache"
            def firstInvocationId = output.find(~/(?<=extension-buildInvocationId=).+(?=\n)/)
            succeeds taskName, "--configuration-cache"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 10:49:16 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

            String taskRegistration(String taskName, String taskType);
    
            String taskConfiguration(String taskName, String taskType);
    
            String suiteRegistration(String taskName, String taskType);
    
            String suiteConfiguration(String taskName, String taskType);
    
            String referenceTask(String taskName);
    
            String referenceSuite(String taskName);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
Back to top