Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 771 for SKIPPED (0.1 sec)

  1. src/cmd/go/internal/script/scripttest/scripttest.go

    //
    // This set includes all of the commands in script.DefaultCmds,
    // as well as a "skip" command that halts the script and causes the
    // testing.TB passed to Run to be skipped.
    func DefaultCmds() map[string]script.Cmd {
    	cmds := script.DefaultCmds()
    	cmds["skip"] = Skip()
    	return cmds
    }
    
    // DefaultConds returns a set of broadly useful script conditions.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 11 20:12:18 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/resources/org/gradle/testing/cucumberjvm/CucumberJVMReportIntegrationTest/testReportingSupportsCucumberStepsWithSlashes/build.gradle

    dependencies {
        testImplementation "io.cucumber:cucumber-java:6.8.1"
        testImplementation "io.cucumber:cucumber-junit:6.8.1"
    }
    
    test {
        testLogging.showStandardStreams = true
        testLogging.events 'started', 'passed', 'skipped', 'failed', 'standardOut', 'standardError'
        reports.junitXml.required = true
        reports.html.required = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopySpecEncodingIntegrationSpec.groovy

            when:
            run 'copy'
    
            then:
            file('dest/accents.c').getText('ISO-8859-1') == 'éàüî 1'
    
            when:
            run 'copy'
    
            then:
            skipped(':copy')
            file('dest/accents.c').getText('ISO-8859-1') == 'éàüî 1'
    
            when:
            file('files/accents.c').write('áëü $one', 'ISO-8859-1')
            run 'copy'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:45:30 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/MultiProjectContinuousIntegrationTest.groovy

            when:
            downstreamSource.text = "class Downstream extends Upstream { int change = 1; }"
    
            then:
            buildTriggeredAndSucceeded()
            executedAndNotSkipped ":downstream:compileJava"
            skipped ":upstream:compileJava"
    
            when:
            upstreamSource.text = "class Upstream {"
    
            then:
            buildTriggeredAndFailed()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitConsoleLoggingIntegrationTest.groovy

                    ${testFrameworkDependencies}
                }
    
                test {
                    ${configureTestFramework}
                    testLogging {
                        quiet {
                            events "skipped", "failed"
                            minGranularity 2
                            maxGranularity -1
                            displayGranularity 3
                            exceptionFormat "full"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:58:24 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenPomPackagingResolveIntegrationTest.groovy

            and:
            run 'retrieve'
    
            then:
            skipped ':retrieve'
    
            // Jar artifact presence is cached
            when:
            server.resetExpectations()
    
            and:
            run 'retrieve'
    
            then:
            skipped ':retrieve'
    
            // New artifact is detected
            when:
            server.resetExpectations()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  7. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskExecutionIntegrationTest.groovy

            expect:
            2.times {
                // project defaults
                executer.withArguments("-m").run().normalizedOutput.contains(":a SKIPPED\n:b SKIPPED")
                // named tasks
                executer.withArguments("-m").withTasks("b").run().normalizedOutput.contains(":a SKIPPED\n:b SKIPPED")
            }
        }
    
        def executesTaskActionsInCorrectEnvironment() {
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  8. src/runtime/importx_test.go

    	Fatalf(format string, args ...any)
    	Helper()
    	Log(args ...any)
    	Logf(format string, args ...any)
    	Name() string
    	Setenv(key, value string)
    	Skip(args ...any)
    	SkipNow()
    	Skipf(format string, args ...any)
    	Skipped() bool
    	TempDir() string
    }
    
    var FmtSprintf func(format string, a ...any) string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 10 17:18:27 UTC 2023
    - 763 bytes
    - Viewed (0)
  9. src/syscall/syscall_ptrace_test.go

    import (
    	"internal/testenv"
    	"os"
    	"os/exec"
    	"syscall"
    	"testing"
    )
    
    func TestExecPtrace(t *testing.T) {
    	testenv.MustHaveExec(t)
    
    	bin, err := exec.LookPath("sh")
    	if err != nil {
    		t.Skipf("skipped because sh is not available")
    	}
    
    	attr := &os.ProcAttr{
    		Sys: &syscall.SysProcAttr{
    			Ptrace: true,
    		},
    	}
    	proc, err := os.StartProcess(bin, []string{bin}, attr)
    	if err == nil {
    		proc.Kill()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 768 bytes
    - Viewed (0)
  10. pkg/scheduler/framework/cycle_state.go

    	// if recordPluginMetrics is true, metrics.PluginExecutionDuration will be recorded for this cycle.
    	recordPluginMetrics bool
    	// SkipFilterPlugins are plugins that will be skipped in the Filter extension point.
    	SkipFilterPlugins sets.Set[string]
    	// SkipScorePlugins are plugins that will be skipped in the Score extension point.
    	SkipScorePlugins sets.Set[string]
    }
    
    // NewCycleState initializes a new CycleState and returns its pointer.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 06:48:20 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top