Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 279 for textbit (2.59 sec)

  1. src/cmd/covdata/tool_test.go

    	dargs := []string{"-pkg=" + mainPkgPath, "-i=" + s.outdirs[0] + "," + s.outdirs[1],
    		"-o", outf}
    	lines := runToolOp(t, s, "textfmt", dargs)
    
    	// No output expected.
    	if len(lines) != 0 {
    		dumplines(lines)
    		t.Errorf("unexpected output from go tool covdata textfmt")
    	}
    
    	// Open and read the first few bits of the file.
    	payload, err := os.ReadFile(outf)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractAndroidSantaTrackerSmokeTest.groovy

    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.test.fixtures.file.TestNameTestDirectoryProvider
    import org.gradle.testkit.runner.BuildResult
    import org.gradle.testkit.runner.TaskOutcome
    import org.gradle.testkit.runner.internal.ToolingApiGradleExecutor
    import org.junit.Rule
    
    /**
     * For these tests to run you need to set ANDROID_SDK_ROOT to your Android SDK directory
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/service/internal/DefaultInjectedClasspathPluginResolver.java

            }
        }
    
        public String getDescription() {
            // It's true right now that this is always coming from the TestKit, but might not be in the future.
            return "Gradle TestKit";
        }
    
        private static class InjectedClasspathPluginResolution implements PluginResolution {
            private final PluginImplementation<?> plugin;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:19:55 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/enduser/GradleRunnerConsoleInputEndUserIntegrationTest.groovy

        }
    
        static String functionalTest(String content) {
            """
                import org.gradle.testkit.runner.GradleRunner
                import static org.gradle.testkit.runner.TaskOutcome.*
                import spock.lang.Specification
                import spock.lang.TempDir
    
                class Test extends Specification {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/testKit/testKitFunctionalTestSpockBuildCache/groovy/settings.gradle

    rootProject.name = 'testkit-spock-build-cache'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 47 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    `GradleRunner` is an API provided by TestKit, which internally uses the Tooling API to execute the build.
    
    The following example applies the plugin to the build script under test, configures the extension and executes the build with the task `verifyUrl`.
    Please see the <<test_kit.adoc#test_kit,TestKit documentation>> to get more familiar with the functionality of TestKit.
    
    .UrlVerifierPluginFunctionalTest.groovy
    [source,groovy]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/build-organization/publishing-convention-plugins/groovy/convention-plugins/src/test/groovy/com/myorg/PluginTest.groovy

    package com.myorg
    
    import org.gradle.testkit.runner.GradleRunner
    import spock.lang.Specification
    import spock.lang.TempDir
    
    abstract class PluginTest extends Specification {
        @TempDir
        File testProjectDir
        File settingsFile
        File buildFile
    
        def setup() {
            settingsFile = new File(testProjectDir, 'settings.gradle').tap { it << "rootProject.name = 'test'" }
            buildFile = new File(testProjectDir, 'build.gradle')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 947 bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/ProtobufPluginSmokeTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.smoketests
    
    import spock.lang.Issue
    
    import static org.gradle.testkit.runner.TaskOutcome.SUCCESS
    import static org.gradle.testkit.runner.TaskOutcome.UP_TO_DATE
    
    class ProtobufPluginSmokeTest extends AbstractPluginValidatingSmokeTest {
    
        @Issue("https://plugins.gradle.org/plugin/com.google.protobuf")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/GradleProvider.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.testkit.runner.internal;
    
    import org.gradle.testkit.runner.GradleRunner;
    import org.gradle.tooling.GradleConnector;
    import org.gradle.tooling.internal.consumer.DefaultGradleConnector;
    
    import java.io.File;
    import java.net.URI;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. src/cmd/covdata/dump.go

    package main
    
    // This file contains functions and apis to support the "go tool
    // covdata" sub-commands that relate to dumping text format summaries
    // and reports: "pkglist", "func",  "debugdump", "percent", and
    // "textfmt".
    
    import (
    	"flag"
    	"fmt"
    	"internal/coverage"
    	"internal/coverage/calloc"
    	"internal/coverage/cformat"
    	"internal/coverage/cmerge"
    	"internal/coverage/decodecounter"
    	"internal/coverage/decodemeta"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:57 UTC 2023
    - 11.2K bytes
    - Viewed (0)
Back to top