Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,696 for IsSkip (0.14 sec)

  1. pkg/test/framework/suite.go

    				// the test environment is an external control plane topology, the test can go on
    				return nil
    			}
    		}
    		// the test environment is not an external control plane topology, skip the test
    		s.Skip("Not an external control plane topology, skip this test")
    		return nil
    	}
    	s.requireFns = append(s.requireFns, fn)
    	return s
    }
    
    func (s *suiteImpl) RequireMinVersion(minorVersion uint) Suite {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/AbstractMutatingDomainObjectContainerInHookIntegrationTest.groovy

    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    
    import static org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache.Skip.INVESTIGATE
    
    abstract class AbstractMutatingDomainObjectContainerInHookIntegrationTest extends AbstractDomainObjectContainerIntegrationTest {
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "can mutate containers inside Project hooks"() {
            createDirs("nested")
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/cgo_linux_test.go

    //go:build cgo
    
    package cgotest
    
    import (
    	"runtime"
    	"testing"
    )
    
    func TestSetgid(t *testing.T) {
    	if runtime.GOOS == "android" {
    		t.Skip("unsupported on Android")
    	}
    	testSetgid(t)
    }
    
    func TestSetgidStress(t *testing.T) {
    	if runtime.GOOS == "android" {
    		t.Skip("unsupported on Android")
    	}
    	testSetgidStress(t)
    }
    
    func Test1435(t *testing.T) { test1435(t) }
    func Test6997(t *testing.T) { test6997(t) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:01 UTC 2024
    - 662 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_download_git_bareRepository.txt

    [short] skip
    [!git] skip
    
    # Redirect git to a test-specific .gitconfig.
    # GIT_CONFIG_GLOBAL suffices for git 2.32.0 and newer.
    # For older git versions we also set $HOME.
    env GIT_CONFIG_GLOBAL=$WORK${/}home${/}gopher${/}.gitconfig
    env HOME=$WORK${/}home${/}gopher
    exec git config --global --show-origin user.name
    stdout 'Go Gopher'
    
    env GOPRIVATE=vcs-test.golang.org
    
    go mod download -x
    
    -- go.mod --
    module test
    
    go 1.18
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 597 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/test_fuzz_limit_dup_entry.txt

    [!fuzz] skip
    [short] skip
    env GOCACHE=$WORK/cache
    
    # FuzzA attempts to cause the mutator to create duplicate inputs that generate
    # new coverage. Previously this would trigger a corner case when the fuzzer
    # had an execution limit, causing it to deadlock and sit in the coordinator
    # loop indefinitely, failing to exit once the limit had been exhausted.
    
    go test -fuzz=FuzzA -fuzztime=100x -parallel=1
    
    -- go.mod --
    module m
    
    go 1.16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 725 bytes
    - Viewed (0)
  6. cmd/bootstrap-peer-server_gen_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	if len(left) > 0 {
    		t.Errorf("%d bytes left over after UnmarshalMsg(): %q", len(left), left)
    	}
    
    	left, err = msgp.Skip(bts)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if len(left) > 0 {
    		t.Errorf("%d bytes left over after Skip(): %q", len(left), left)
    	}
    }
    
    func BenchmarkMarshalMsgServerSystemConfig(b *testing.B) {
    	v := ServerSystemConfig{}
    	b.ReportAllocs()
    	b.ResetTimer()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jan 24 21:36:44 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/cgo_stubs_ppc64x_internal_linking_test.go

    // will be linked in from libgcc which make several R_PPC64_TOC16_DS
    // relocations which may not be resolvable with the internal linker.
    func test8694(t *testing.T) { t.Skip("not supported on ppc64/ppc64le with internal linking") }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 15:35:35 UTC 2024
    - 631 bytes
    - Viewed (0)
  8. src/internal/testenv/testenv.go

    // threads in parallel. If not, MustHaveParallelism calls t.Skip with an explanation.
    func MustHaveParallelism(t testing.TB) {
    	if !HasParallelism() {
    		t.Skipf("skipping test: no parallelism available on %s/%s", runtime.GOOS, runtime.GOARCH)
    	}
    }
    
    // GoToolPath reports the path to the Go tool.
    // It is a convenience wrapper around GoTool.
    // If the tool is unavailable GoToolPath calls t.Skip.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. pkg/test/framework/resource/settings.go

    	OpenShift bool
    }
    
    // SkipVMs changes the skip settings at runtime
    func (s *Settings) SkipVMs() {
    	s.SkipVM = true
    	s.SkipWorkloadClasses = append(s.SkipWorkloadClasses, "vm")
    }
    
    // Skip checks whether a given class is skipped
    func (s *Settings) Skip(class string) bool {
    	if s.SkipWorkloadClassesAsSet().Contains(class) {
    		return true
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/ExtraPropertiesIntegrationTest.groovy

    import org.gradle.integtests.fixtures.build.BuildTestFile
    import spock.lang.Issue
    
    import static org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache.Skip.INVESTIGATE
    
    class ExtraPropertiesIntegrationTest extends AbstractIntegrationSpec {
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def 'extra properties are inherited to child and grandchild projects'() {
            given:
            extraPropertiesMultiBuild()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top