Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 73 for isQtext (0.29 sec)

  1. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitTestDryRunner.java

            queue.add(runner.getDescription());
            while (!queue.isEmpty()) {
                Description description = queue.removeFirst();
                queue.addAll(description.getChildren());
                if (description.isTest()) {
                    notifier.fireTestIgnored(description);
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/GradleBuildExternalPluginsValidationSmokeTest.groovy

                        subprojects = [:]
                        for (int i = 0; i < arr.size(); i++) {
                            JsonNode node = arr.get(i)
                            subprojects.put(node.get("name").asText(), node.get("path").asText())
                        }
                    }
    
                    assert projectPath.startsWith(":")
                    projectPath = projectPath.substring(1)
                    assert !projectPath.contains(":")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/valueProviders/fileContentsDo/groovy/build.gradle

    def config = providers.fileContents(layout.projectDirectory.file('some.conf'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 91 bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/GrammarToTree.kt

                when (val tokenType = it.tokenType) {
                    OPEN_QUOTE, CLOSING_QUOTE -> {}
                    LITERAL_STRING_TEMPLATE_ENTRY -> sb.append(it.asText)
                    ERROR_ELEMENT -> tree.parsingError(node, it, "Unparsable string template: \"${node.asText}\"")
                    else -> tree.parsingError(it, "Parsing failure, unexpected tokenType in string template: $tokenType")
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/valueProviders/fileContentsDo/kotlin/build.gradle.kts

    val config = providers.fileContents(layout.projectDirectory.file("some.conf"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 91 bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/internal/cache/CacheConfigurationsContinuousIntegrationTest.groovy

                    def retentionFileProperty = settings.services.get(ObjectFactory).fileProperty().fileValue(retentionFile)
                    def retentionTimeStampProvider = settings.providers.fileContents(retentionFileProperty).asText.map { it as long }
                    settings.caches {
                        markingStrategy = MarkingStrategy.NONE
                        cleanup = Cleanup.DISABLED
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. src/runtime/coverage/coverage.go

    package coverage
    
    import (
    	"internal/coverage/cfile"
    	"io"
    )
    
    // initHook is invoked from main.init in programs built with -cover.
    // The call is emitted by the compiler.
    func initHook(istest bool) {
    	cfile.InitHook(istest)
    }
    
    // WriteMetaDir writes a coverage meta-data file for the currently
    // running program to the directory specified in 'dir'. An error will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:41:02 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/_builtin/coverage.go

    // in cmd/compile/internal/typecheck
    // to update builtin.go. This is not done automatically
    // to avoid depending on having a working compiler binary.
    
    //go:build ignore
    
    package coverage
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 16:59:48 UTC 2024
    - 437 bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassDetector.java

            }
            return null;
        }
    
        @Override
        public MethodVisitor visitMethod(int access, String name, String desc, String signature, String[] exceptions) {
            if (!isAbstract() && !isTest()) {
                return new TestNGTestMethodDetector();
            } else {
                return null;
            }
        }
    
        private class TestNGTestMethodDetector extends MethodVisitor {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-identity.gradle.kts

     * Returns the trimmed contents of the file at the given [path] after
     * marking the file as a build logic input.
     */
    fun Project.trimmedContentsOfFile(path: String): String =
        providers.fileContents(repoRoot().file(path)).asText.get().trim()
    
    // TODO Simplify the buildTimestamp() calculation if possible
    fun Project.buildTimestamp(): Provider<String> =
        providers.of(BuildTimestampValueSource::class) {
            parameters {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top