Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,026 for IsSkip (0.17 sec)

  1. cmd/xl-storage-format-v1_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 BenchmarkMarshalMsgChecksumInfo(b *testing.B) {
    	v := ChecksumInfo{}
    	b.ReportAllocs()
    	b.ResetTimer()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 13.2K bytes
    - Viewed (0)
  2. src/runtime/hash_test.go

    }
    
    // Strings with up to two nonzero bytes all have distinct hashes.
    func TestSmhasherTwoNonzero(t *testing.T) {
    	if GOARCH == "wasm" {
    		t.Skip("Too slow on wasm")
    	}
    	if testing.Short() {
    		t.Skip("Skipping in short mode")
    	}
    	if race.Enabled {
    		t.Skip("Too long for race mode")
    	}
    	testenv.ParallelOn64Bit(t)
    	h := newHashSet()
    	for n := 2; n <= 16; n++ {
    		twoNonZero(h, n)
    	}
    	h.check(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 17:50:18 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. src/runtime/crash_cgo_test.go

    	case "windows", "plan9", "android", "ios", "openbsd": // no getcontext
    		t.Skipf("skipping test on %s", runtime.GOOS)
    	}
    	got := runTestProg(t, "testprogcgo", "StackSwitchCallback")
    	skip := "SKIP\n"
    	if got == skip {
    		t.Skip("skipping on musl/bionic libc")
    	}
    	want := "OK\n"
    	if got != want {
    		t.Errorf("expected %q, got %v", want, got)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 16:44:47 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/ianlancetaylor/demangle/rust.go

    func (rst *rustState) writeByte(c byte) {
    	if rst.skip {
    		return
    	}
    	if rst.max > 0 && rst.buf.Len() > rst.max {
    		rst.skip = true
    		return
    	}
    	rst.last = c
    	rst.buf.WriteByte(c)
    }
    
    // writeString writes a string to the buffer.
    func (rst *rustState) writeString(s string) {
    	if rst.skip {
    		return
    	}
    	if rst.max > 0 && rst.buf.Len() > rst.max {
    		rst.skip = true
    		return
    	}
    	if len(s) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  5. src/hash/maphash/smhasher_test.go

    	}
    	h.check(t)
    }
    
    // Strings with up to two nonzero bytes all have distinct hashes.
    func TestSmhasherTwoNonzero(t *testing.T) {
    	if runtime.GOARCH == "wasm" {
    		t.Skip("Too slow on wasm")
    	}
    	if testing.Short() {
    		t.Skip("Skipping in short mode")
    	}
    	testenv.ParallelOn64Bit(t)
    	h := newHashSet()
    	for n := 2; n <= 16; n++ {
    		twoNonZero(h, n)
    	}
    	h.check(t)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. 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)
  7. pkg/scheduler/framework/plugins/volumerestrictions/volume_restrictions_test.go

    			name:                "nothing",
    			preFilterWantStatus: framework.NewStatus(framework.Skip),
    			wantStatus:          nil,
    		},
    		{
    			pod:                 &v1.Pod{},
    			nodeInfo:            framework.NewNodeInfo(st.MakePod().Volume(volState).Obj()),
    			name:                "one state",
    			preFilterWantStatus: framework.NewStatus(framework.Skip),
    			wantStatus:          nil,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 17:40:39 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  8. src/runtime/proc_test.go

    		}
    	}
    }
    
    func TestPingPongHog(t *testing.T) {
    	if runtime.GOARCH == "wasm" {
    		t.Skip("no preemption on wasm yet")
    	}
    	if testing.Short() {
    		t.Skip("skipping in -short mode")
    	}
    	if race.Enabled {
    		// The race detector randomizes the scheduler,
    		// which causes this test to fail (#38266).
    		t.Skip("skipping in -race mode")
    	}
    
    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(1))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  9. 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)
  10. subprojects/core/src/integTest/groovy/org/gradle/initialization/CalculateTaskGraphBuildOperationIntegrationTest.groovy

    import org.gradle.internal.taskgraph.CalculateTaskGraphBuildOperationType
    import org.gradle.internal.taskgraph.CalculateTreeTaskGraphBuildOperationType
    
    import static org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache.Skip.INVESTIGATE
    
    class CalculateTaskGraphBuildOperationIntegrationTest extends AbstractIntegrationSpec {
    
        final buildOperations = new BuildOperationsFixture(executer, temporaryFolder)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top