Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for isQtext (0.1 sec)

  1. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/AbstractTestFrameworkDetector.java

            TestClass testClass = readClassFile(testClassFile, fallbackClassNameProvider);
    
            boolean isTest = testClass.isTest();
    
            if (!isTest) { // scan parent class
                String superClassName = testClass.getSuperClassName();
    
                if (isKnownTestCaseClassName(superClassName)) {
                    isTest = true;
                } else {
                    File superClassFile = getSuperTestClassFile(superClassName);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  2. src/internal/coverage/cfile/hooks.go

    // called only by the compiler (via runtime/coverage.initHook).
    //
    // If 'istest' is false, it indicates we're building a regular program
    // ("go build -cover ..."), in which case we immediately try to write
    // out the meta-data file, and register emitCounterData as an exit
    // hook.
    //
    // If 'istest' is true (indicating that the program in question is a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 02:32:19 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/ProcessOutputProviderIntegrationTest.groovy

                    environment("TEST_FOO", "fooValue")
                }
    
                execProvider.result.get().assertNormalExitValue()
                println(execProvider.standardOutput.asText.get())
    
                task empty() {}
            """
    
            when:
            run("-q", ":empty")
    
            then:
            outputContains("--some-arg")
            outputContains("TEST_FOO=fooValue")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/valueProviders/externalProcessProvider/groovy/build.gradle

    def gitVersion = providers.exec {
        commandLine("git", "--version")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 100 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_get_indirect.txt

    stdout '^golang.org/x/text [v0-9a-f\.-]+ // indirect'
    grep 'golang.org/x/text [v0-9a-f\.-]+ // indirect' go.mod
    
    # importing an empty module root as a package does not remove indirect tag.
    cp $WORK/tmp/usetext.go x.go
    go list -e
    grep 'golang.org/x/text v0.3.0 // indirect$' go.mod
    
    # indirect tag should be removed upon seeing direct import.
    cp $WORK/tmp/uselang.go x.go
    go get
    grep 'rsc.io/quote v1.5.2$' go.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  6. internal/s3select/sql/stringfuncs_test.go

    		{"abcd", "bc", true, "d", true},
    	}
    
    	for i, tc := range matcherCases {
    		res, ok := matcher(tc.iText, tc.iPat, tc.iHasLeadingPercent)
    		if res != tc.resultExpected || ok != tc.matchExpected {
    			t.Errorf("Matcher Case %d failed", i)
    		}
    	}
    
    	evalCases := []struct {
    		iText, iPat   string
    		iEsc          rune
    		matchExpected bool
    		errExpected   error
    	}{
    		{"abcd", "abc", runeZero, false, nil},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/valueProviders/externalProcessProvider/kotlin/build.gradle.kts

    val gitVersion = providers.exec {
        commandLine("git", "--version")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 100 bytes
    - Viewed (0)
  8. src/main/webapp/css/admin/respond.min.js

     *  */
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Oct 08 12:14:13 UTC 2015
    - 4.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top